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

17 lines
433 B
Plaintext

#include "mn_checkinv"
void main()
{
int amount = 50000; // Amount to withdraw
object bankToken = findItem( GetPCSpeaker(), "MN_MISC_BANKTOK" );
int balance = GetLocalInt( bankToken, "BALANCE" );
if (balance >= amount)
{
balance = balance - amount;
GiveGoldToCreature( GetPCSpeaker(), amount );
SetLocalInt( bankToken, "BALANCE", balance );
SetCustomToken(100, IntToString(balance) );
}
}