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