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