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