13 lines
155 B
Plaintext
13 lines
155 B
Plaintext
|
/*
|
||
|
Make sure PC has 10000 to give!
|
||
|
*/
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetGold(oPC) < 10000) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|