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

16 lines
443 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// Check if the player has been given the quest to look for the half-demon in
// jester's Green.
/////////////////////////////////////
int StartingConditional()
{
int iResult;
int nSuzailQuest = GetLocalInt(GetModule(), "nSuzailQuest");
iResult = ((nSuzailQuest == 12) || (nSuzailQuest == 13));
return iResult;
}