11 lines
149 B
Plaintext
11 lines
149 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nGold = GetHitDice(oPC) * 500;
|
|
|
|
if (GetGold(oPC) >nGold) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|