Alangara_PRC8/_module/nss/mn_bank_045.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

18 lines
482 B
Plaintext

#include "mn_checkinv"
void main()
{
int amount = 500; // Amount to deposit
object bankToken = findItem( GetPCSpeaker(), "MN_MISC_BANKTOK" );
int balance = GetLocalInt( bankToken, "BALANCE" );
int gold = GetGold( GetPCSpeaker() );
if (gold >= amount)
{
balance = balance + amount;
TakeGoldFromCreature( amount, GetPCSpeaker(), TRUE );
SetLocalInt( bankToken, "BALANCE", balance );
SetCustomToken(100, IntToString( gold-amount ) );
}
}