LoT_PRC8/_module/nss/chk_gender_male.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

17 lines
443 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName chk_gender_male
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2002-10-23 20:00:05
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}