33 lines
471 B
Plaintext
33 lines
471 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;
|
||
|
}
|
||
|
} */
|
||
|
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetStringLowerCase(GetSubRace(oPC)) != "werecat") return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|