NWNDS/nwn_dark_sun/sc_chkfemale.nss

17 lines
444 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_chkfemale
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/18/2002 2:12:45 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
return FALSE;
return TRUE;
}