Alangara_PRC8/_module/nss/jh_bnk_x_20.nss

20 lines
266 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
/*
Take 100 gold.
*/
void main()
{
string sName = GetTag(OBJECT_SELF);
int nInt;
nInt = GetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName);
nInt += 100;
SetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName,nInt);
TakeGoldFromCreature(100,GetPCSpeaker(),TRUE);
}