18 lines
283 B
Plaintext
18 lines
283 B
Plaintext
|
#include "prc_class_const"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetHitDice(oPC) < 30) return FALSE;
|
||
|
|
||
|
if ((GetLevelByClass(CLASS_TYPE_RANGER, oPC)==0))
|
||
|
return FALSE;
|
||
|
|
||
|
if ((GetLevelByClass(CLASS_TYPE_TOTEMIST, oPC)==0))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|