14 lines
184 B
Plaintext
14 lines
184 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!(GetHitDice(oPC) >= 20)) return FALSE;
|
|
|
|
if ((GetLevelByClass(CLASS_TYPE_MONK, oPC)==0))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|