RATDOG/_module/nss/cv_is_sexless.nss

21 lines
447 B
Plaintext
Raw Permalink Normal View History

//:://////////////////////////////////////////////
//:: FileName cv_is_sexless
//:://////////////////////////////////////////////
//::
//:: Returns if speaker is "other" in regards to
//:: gender.
//::
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_OTHER)
return FALSE;
return TRUE;
}