Discover endless fun with our collection of thrilling online games! Play, compete, and immerse yourself in the world of online gaming today.

Questie 4.3.4 May 2026

-- Add missing Cata quests (example for Hyjal) local cataQuests = { [27728] = { zone = "Mount Hyjal", level = 80, type = "normal" }, -- Aessina's Miracle [27729] = { zone = "Mount Hyjal", level = 80, type = "normal" }, [28233] = { zone = "Vashj'ir", level = 80, type = "normal" }, -- Call of the Sea [28234] = { zone = "Vashj'ir", level = 80, type = "normal" }, }

-- Safety check for map frame local orig_QuestieMap_OnShow if QuestieMap and QuestieMap.OnShow then orig_QuestieMap_OnShow = QuestieMap.OnShow QuestieMap.OnShow = function(self, ...) if not Questie or not Questie.db then return end return orig_QuestieMap_OnShow(self, ...) end end questie 4.3.4

for id, data in pairs(cataQuests) do if not Questie.quests[id] then Questie.quests[id] = data end end -- Add missing Cata quests (example for Hyjal)