19 lines
589 B
Plaintext
19 lines
589 B
Plaintext
// updated to include the werewolf, hill giant, gnoll, ogre, ogre-mage subrace
|
|
|
|
int StartingConditional()
|
|
{
|
|
if(GetIsDM(GetPCSpeaker()))
|
|
{ return TRUE; }
|
|
object oPC = GetPCSpeaker();
|
|
string Subrace = GetStringLowerCase(GetSubRace(oPC));
|
|
if(Subrace == "" || (Subrace != "drow" && Subrace != "vampire" && Subrace != "lich" && Subrace != "werecat" && Subrace != "dark-elf" && Subrace != "werewolf" && Subrace != "giant-hill" && Subrace != "gnoll" && Subrace != "ogre" && Subrace != "ogre-mage"))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|