13 lines
150 B
Plaintext
13 lines
150 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
int iTax = GetHitDice(oPC);
|
|
|
|
if (!GetGold(oPC)>=(iTax*100)) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|