17 lines
442 B
Plaintext
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;
|
|
}
|