2024-06-20 15:47:42 -04:00

17 lines
442 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName getisfemale
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 4/17/2003 9:28:50 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
return FALSE;
return TRUE;
}