17 lines
449 B
Plaintext
17 lines
449 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_022
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 24.10.2010 15:13:44
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_BOTH)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|