generated from Jaysyn/ModuleTemplate
24 lines
607 B
Plaintext
24 lines
607 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_008
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 4/3/2005 4:03:20 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's class
|
|
int iPassed = 0;
|
|
if(GetLevelByClass(CLASS_TYPE_FIGHTER, GetPCSpeaker()) >= 1)
|
|
iPassed = 1;
|
|
if(iPassed == 0)
|
|
return FALSE;
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|