12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!(GetHitDice(oPC) >= 3)) return FALSE;
|
|
|
|
if (!(GetHitDice(oPC) <= 3)) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|