//checks to see if hench has prerequisites for pale master prestige class //written by kookoo 8-13-8 int StartingConditional() { object oHench = OBJECT_SELF; //must not be good if (GetAlignmentGoodEvil(oHench) != ALIGNMENT_GOOD) { //must have arcane casting level 3 or higher int nClass; nClass = GetLevelByClass(CLASS_TYPE_BARD, oHench); nClass += GetLevelByClass(CLASS_TYPE_WIZARD, oHench); nClass += GetLevelByClass(CLASS_TYPE_SORCERER, oHench); if (nClass>2) { return TRUE; } } return FALSE; }