17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_testmale
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 8/15/2002 3:33:34 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|