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