17 lines
446 B
Plaintext
17 lines
446 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName text_female_yes
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 2/7/2004 11:53:28 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|