RATDOG/_module/nss/cv_is_female.nss

20 lines
420 B
Plaintext
Raw Normal View History

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