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