17 lines
443 B
Plaintext
17 lines
443 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: 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;
|
||
|
}
|