14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
|
#include "prc_inc_spells"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetRacialType(oPC) != RACIAL_TYPE_DROW_FEMALE &&
|
||
|
GetRacialType(oPC) != RACIAL_TYPE_DROW_MALE)
|
||
|
/* string Subrace = GetStringLowerCase(GetSubRace(GetPCSpeaker()));
|
||
|
if(Subrace != "drow") */
|
||
|
{ return FALSE; }
|
||
|
return TRUE;
|
||
|
}
|