Alangara_PRC8/_module/nss/jh_bnk_x_34.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

15 lines
242 B
Plaintext

/*
Make sure there is 1000 gold in the account!
*/
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sName = GetTag(OBJECT_SELF);
if ( GetCampaignInt("bnkblnc"+sName,"bnkblnc_"+sName) <= 1000) return FALSE;
return TRUE;
}