8 lines
166 B
Plaintext
8 lines
166 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nPrice = GetHitDice(oPC) * 2000;
|
|
if (GetGold(oPC) < nPrice) return TRUE;
|
|
return FALSE;
|
|
}
|