generated from Jaysyn/ModuleTemplate
34 lines
907 B
Plaintext
34 lines
907 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Flirt
|
|
//:: NW_D2_FLFEMALE
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Does a check to see if character is female
|
|
and with at least a normal CHR, and the PC
|
|
is male with a high charisma
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: David Gaider
|
|
//:: Created On: November 8, 2001
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "NW_I0_PLOT"
|
|
|
|
int StartingConditional()
|
|
{
|
|
if (GetAbilityScore(OBJECT_SELF,ABILITY_CHARISMA) > 8)
|
|
{
|
|
if (GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) > 16)
|
|
{
|
|
if ((GetGender(OBJECT_SELF)==GENDER_FEMALE) && (GetGender(GetPCSpeaker())==GENDER_MALE))
|
|
{
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|