WoR_PRC8/_module/nss/werecat_check.nss

33 lines
471 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//:: 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;
}
} */
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetStringLowerCase(GetSubRace(oPC)) != "werecat") return FALSE;
return TRUE;
}