Amon_PRC8/_module/nss/is_male.nss

17 lines
438 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: FileName is_male
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 11/29/2004 11:52:30 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}