17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName is_male
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 11/29/2004 11:52:30 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|