2024-06-14 10:48:20 -04:00
|
|
|
int StartingConditional()
|
|
|
|
{
|
2024-09-14 13:52:39 -04:00
|
|
|
object oPC = GetPCSpeaker();
|
2024-06-14 10:48:20 -04:00
|
|
|
|
2024-09-14 13:52:39 -04:00
|
|
|
if (!((GetRacialType(oPC)==RACIAL_TYPE_ELF)&& ((GetSubRace(oPC)=="Drow")||(GetSubRace(oPC)=="drow")))) return FALSE;
|
2024-06-14 10:48:20 -04:00
|
|
|
|
|
|
|
return TRUE;
|
2024-09-14 13:52:39 -04:00
|
|
|
}
|