Ancordia_PRC8/_module/nss/is_halfling.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

15 lines
420 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName is_halfling
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2013-09-01 22:24:02
//:://////////////////////////////////////////////
int StartingConditional()
{
if(!GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFLING)
return FALSE;
return TRUE;
}