17 lines
281 B
Plaintext
17 lines
281 B
Plaintext
/*
|
|
Take All gold from account!
|
|
*/
|
|
void main()
|
|
{
|
|
int nInt,iInt;
|
|
string sName;
|
|
sName =GetTag(OBJECT_SELF);
|
|
nInt = GetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName);
|
|
iInt = nInt-1;
|
|
GiveGoldToCreature(GetPCSpeaker(),iInt);
|
|
|
|
SetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName,1);
|
|
|
|
|
|
}
|