generated from Jaysyn/ModuleTemplate
21 lines
542 B
Plaintext
21 lines
542 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName requintalk1fem
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 23/03/2005 20:48:44
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
|
return FALSE;
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "quintalk") == 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|