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