generated from Jaysyn/ModuleTemplate
17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName slv_male
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 5/15/2004 11:10:17 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|