Ancordia_PRC8/_module/nss/adv_isgoodvig.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

15 lines
757 B
Plaintext

#include "quest_inc"
int StartingConditional()
{
string sName = GetLocalString(OBJECT_SELF, "sName");
string sLastName = GetLocalString(OBJECT_SELF, "sLastName");
SetCustomToken(11001, sName);
SetCustomToken(11002, sLastName);
if (GetLocalInt(OBJECT_SELF, "Potions") == TRUE) return FALSE;
if (GetLocalInt(OBJECT_SELF, "Adventurer") == TRUE && GetAlignmentGoodEvil(OBJECT_SELF) == ALIGNMENT_GOOD && GetLocalInt(OBJECT_SELF, "nPersonality") == 0) return TRUE;
if (GetAlignmentGoodEvil(OBJECT_SELF) == ALIGNMENT_EVIL || GetLocalInt(OBJECT_SELF, "nPersonality") != 0) return FALSE;
int nDC = GetAdjustedSkillDC(GetPCSpeaker());
if (GetIsSkillSuccessful(GetPCSpeaker(), SKILL_PERSUADE, nDC)) return TRUE;
return FALSE;
}