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