WoR_PRC8/_module/nss/check_subrace_we.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

26 lines
324 B
Plaintext

//:: 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;
}
}