- This topic has 8 replies, 3 voices, and was last updated 1 year, 10 months ago by karpana.
-
AuthorPosts
-
January 9, 2023 at 2:54 pm #165367
My membership is active, Add on active, but when I selection any guide it isn’t showing in the game. Reload or restart isn’t helping. Something wrong somewhere? On 9.0177
January 9, 2023 at 3:53 pm #169655Can you please try with just dugi enabled?
January 9, 2023 at 3:59 pm #170249It is enabled. When I select any guide I’ll get the framing where the guide would normally be, but it will be empty then it will disappear. I’ve logged out and have restarted the game.
January 9, 2023 at 4:17 pm #170250Got it. Went through all of them, on and off. Ends up being that World Quests List add on that was causing the issue. Thanks, the guide is back up.
January 9, 2023 at 4:21 pm #169656Oh cool, that’s good, however, there can be a small fix for that.
Just replace your WorldQuestsList.lua with this one, however, be warned, it’s not a total fix, some wowhead /way scripts may cause lua errors.January 9, 2023 at 4:26 pm #170251Thanks
January 9, 2023 at 8:22 pm #170252Do you know what aspects of WorldQuestsList.lua file were changed from 105 to get the file you provided?
I’m running 106, and not sure what edits to make…
January 10, 2023 at 7:33 am #169653Okay no problems
In file WorldQuestsList.lua
Line: 8734
Find:local function IsQuestValidForEye(questID)
return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
endReplace with:
local function IsQuestValidForEye(questID)
if not tonumber(questID) then return false end
return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
endYou could easily make a script “PY” or “PS1″ to insert ” if not tonumber(questID then return false end ” in that file on line 8735 whenever the developer of WorldQuestsList does an update. Though Dugi has messaged the developer, two updates later this implementation of this edit was not added.
An example of this is using PowerShell:
(Get-Content "G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsListWorldQuestsList.lua").replace('local function IsQuestValidForEye(questID)', 'local function IsQuestValidForEye(questID)
if not tonumber(questID) then return false end') | Set-Content "G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsListWorldQuestsList.lua"
- Simply change the paths to reflect your own path, mine is “G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsList”.
- Save the above script as WQL_Fix.ps1
- Within PowerShell (as Administrator) and browse to the WQL_Fix.ps1 location and then type .WQL_Fix.ps1 and hit enter.
@karpana Just be very careful with this, and don’t run the script more than once.
Also, find attached a .zip containing the above script.January 14, 2023 at 7:02 pm #169634I found an issue even with this edit, where the objective frames borders are not showing, disable WorldQuestsList and it’s fine. I’ll play around with this and report back if I find a fix for this.
-
AuthorPosts
- You must be logged in to reply to this topic.