Battledale_PRC8/_module/nss/jw_chck_isfem.nss

17 lines
443 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: FileName jw_chck_isfem
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 16/08/2002 13:33:32
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
return FALSE;
return TRUE;
}