15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
|
/*
|
||
|
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;
|
||
|
}
|
||
|
|