Files
HeroesStone_PRC8/_module/nss/nw_d2_flfemale.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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;
}