Lankhmar_PRC8/_module/nss/hch_if_pre_shift.nss
Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

23 lines
511 B
Plaintext

//checks to see if hench has prerequisites for shifter prestige class
//written by kookoo 8-13-8
int StartingConditional()
{
object oHench = OBJECT_SELF;
//must be druid of level 3 or higher.
int nClass;
nClass = GetLevelByClass(CLASS_TYPE_DRUID, oHench);
if (nClass>2)
{
//must have alertness feat
if (GetHasFeat(FEAT_ALERTNESS, oHench))
{
//must have wild shape feat
if (GetHasFeat(FEAT_WILD_SHAPE, oHench))
{
return TRUE;
}
}
}
return FALSE;
}