Rune_PRC8/_module/nss/vtw_isdrow.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

17 lines
313 B
Plaintext

#include "prc_inc_racial"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (MyPRCGetRacialType(oPC) == RACIAL_TYPE_DROW_MALE || MyPRCGetRacialType(oPC) == RACIAL_TYPE_DROW_FEMALE)
{
return TRUE;
}
/* if(GetSubRace(GetPCSpeaker()) == "Drow")
return TRUE; */
return FALSE;
}