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