20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
//:: FileName cv_is_female
|
||
|
//:://////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: Returns if speaker is female.
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|