17 lines
440 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_testmale
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/15/2002 3:33:34 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}