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

18 lines
273 B
Plaintext

/*
Take 1 gold from the account!
*/
void main()
{
int nInt;
string sName;
sName =GetTag(OBJECT_SELF);
nInt = GetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName);
nInt -=1;
SetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName,nInt);
GiveGoldToCreature(GetPCSpeaker(),1);
}