18 lines
485 B
Plaintext
18 lines
485 B
Plaintext
#include "mn_checkinv"
|
|
|
|
void main()
|
|
{
|
|
int amount = 500000; // 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 ) );
|
|
}
|
|
}
|