RATDOG/_module/nss/cv_is_male.nss

20 lines
414 B
Plaintext
Raw Normal View History

//:://////////////////////////////////////////////
//:: FileName cv_is_male
//:://////////////////////////////////////////////
//::
//:: Returns if speaker is male.
//::
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}