10 lines
119 B
Plaintext
10 lines
119 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (!(GetHitDice(oPC) <= 1)) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|