Alangara_PRC8/_module/nss/jh_bnk_x_30.nss

15 lines
236 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
/*
Make sure there is 5 gold in the account!
*/
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sName = GetTag(OBJECT_SELF);
if ( GetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName) <= 5) return FALSE;
return TRUE;
}