generated from Jaysyn/ModuleTemplate
17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName wsm_sc_male
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/16/2004 4:10:13 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|