17 lines
444 B
Plaintext
17 lines
444 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName convo_male_only
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 2/24/2004 9:41:23 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|