//:: Lycanthropes #include "prc_inc_racial" int StartingConditional() { if(GetIsDM(GetPCSpeaker())) { return TRUE; } object oPC = GetPCSpeaker(); int iLycan = GetLevelByClass(CLASS_TYPE_WEREWOLF, oPC); if(iLycan > 0) { return TRUE; } else { return FALSE; } }