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

25 lines
545 B
Plaintext

//:://////////////////////////////////////////////////
//:: X0_D2_ISGOOD
/*
TRUE if the speaker is good.
*/
//:://////////////////////////////////////////////////
//:: Copyright (c) 2002 Floodgate Entertainment
//:: Created By: Naomi Novik
//:: Created On: 10/16/2002
//:://////////////////////////////////////////////////
int StartingConditional()
{
return (GetAlignmentGoodEvil(GetPCSpeaker()) == ALIGNMENT_GOOD);
object oPC = GetPCSpeaker();
if(GetLocalInt(oPC,"alaintalked") == 2)
return FALSE;
return TRUE;
}