LoT_PRC8/_module/nss/chk_male.nss

17 lines
436 B
Plaintext
Raw Normal View History

2023-09-25 21:32:17 -04:00
//::///////////////////////////////////////////////
//:: FileName chk_male
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2003-02-21 10:05:54
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}