Files
HeroesStone_PRC8/_module/nss/sc_008.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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;
}