Alangara_PRC8/_module/nss/jh_bnk_x_19.nss

20 lines
263 B
Plaintext
Raw Permalink Normal View History

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