CovenantMissionHelper

CovenantMissionHelper

2M Downloads

Completely broken in 10.0 retail. Update please!

Voxxel opened this issue · 22 comments

commented

The addon is completely broken in 10.0 retail pre-patch. Would love an update.

1x CreateFrame(): Couldn't find inherited node "OribosScrollBarTemplate"
[string "=[C]"]: ?
[string "=[C]"]: in function `CreateFrame'
[string "@Interface/AddOns/CovenantMissionHelper/UI.lua"]:139: in function <Interface/AddOns/CovenantMissionHelper/UI.lua:137>
[string "@Interface/AddOns/CovenantMissionHelper/UI.lua"]:166: in function <Interface/AddOns/CovenantMissionHelper/UI.lua:156>
[string "@Interface/AddOns/CovenantMissionHelper/UI.lua"]:317: in function `createMissionHelperFrame'
[string "@Interface/AddOns/CovenantMissionHelper/CovenantMissionHelper.lua"]:31: in function <...dOns/CovenantMissionHelper/CovenantMissionHelper.lua:26>
[string "=[C]"]: in function `LoadAddOn'
[string "@Interface/FrameXML/UIParent.lua"]:530: in function `UIParentLoadAddOn'
[string "@Interface/FrameXML/UIParent.lua"]:727: in function `Garrison_LoadUI'
[string "@Interface/FrameXML/UIParent.lua"]:2058: in function <Interface/FrameXML/UIParent.lua:1350>

Locals:
7x .../AddOns/CovenantMissionHelper/MissionHelperFrame.lua:24: attempt to index field 'ScrollBar' (a nil value)
[string "@Interface/AddOns/CovenantMissionHelper/MissionHelperFrame.lua"]:24: in function `clearFrames'
[string "@Interface/AddOns/CovenantMissionHelper/CovenantMissionHelper.lua"]:39: in function <...dOns/CovenantMissionHelper/CovenantMissionHelper.lua:36>
[string "=[C]"]: ?
[string "=[C]"]: in function `UpdateAllyPower'
[string "@Interface/AddOns/Blizzard_GarrisonUI/Blizzard_CovenantMissionUI.lua"]:347: in function <...s/Blizzard_GarrisonUI/Blizzard_CovenantMissionUI.lua:298>
[string "=[C]"]: in function `ShowMission'
[string "@Interface/AddOns/Blizzard_GarrisonUI/Blizzard_GarrisonMissionUI.lua"]:210: in function `OnClickMission'
[string "@Interface/AddOns/Blizzard_GarrisonTemplates/Blizzard_CovenantMissionTemplates.lua"]:375: in function <...risonTemplates/Blizzard_CovenantMissionTemplates.lua:370>

Locals:
commented

+1 I would appreciate this as well. Thank you for your time.

commented

+1 I really miss this.

commented

+1 saves a heap of time and a lot of headaches

commented

+1 saves a heap of time and a lot of headaches

For time-saving purposes, "TLDR missions" addon cant be beaten as it fully automates the mission table minigame.
CovenantMissionHelper however is for speeding up only the slow and boring parts of the minigame while you can still play and enjoy it if you wish.

commented

Here's what I see: https://imgur.com/a/3zSWYJP

commented
commented

Please fix ASAP !

commented

at UI.lua change 140 line to
local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "ScrollBarBaseTemplate")

its not the solution, just workaround

commented

Doesn’t quite work for me. Half the screen is still hidden. It’s useable… but barely since I can’t get at all the buttons.

On Nov 5, 2022, at 8:37 AM, inot @.> wrote: local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "ScrollBarBaseTemplate")
-- Saul Jaffe @.
“Together, we must remove the physical barriers we have created and the social barriers that we have accepted. For ours will never be a truly prosperous nation until all within it prosper.” President George Bush upon signing the Americans with Disabilities Act July 26, 1990

Did you /reload or full game restart. Coz this is work for me only after full restart.

commented
commented
commented

I just get a big empty black screen since the new pre-patch in Nov.

commented

For me everything ok with mine workaround.

commented
commented

Project death? Last update on Jul 27, 2021 ?

commented

Yes is death

commented

We will see i write on project Discord there is still 12 ppl maybe someone know anything....

commented

Noone answer on Discord i saw few times Kreolix online but he do not answer about the future this Addon.

commented

Someone put this information you can test it:

Fix for LUA-Errors
UI.xml, replace Line 146:

PanelTemplates_TabResize(self, 0, nil, 50, 100)
with
PanelTemplates_TabResize(self, 0, 125)

and Line 159:

with

Ui.lua, replace Line 139:
local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBarTemplate")
with
local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBar")

Source: https://www.curseforge.com/wow/addons/covenantmissionhelper

commented

Someone put this information you can test it:

Fix for LUA-Errors UI.xml, replace Line 146:

PanelTemplates_TabResize(self, 0, nil, 50, 100) with PanelTemplates_TabResize(self, 0, 125)

and Line 159: with

Ui.lua, replace Line 139: local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBarTemplate") with local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBar")

Source: https://www.curseforge.com/wow/addons/covenantmissionhelper

This works still. Only your copy/paste didn't copy this part:

and Line 159:

<ButtonText name="$parentText">

 with

<ButtonText name="$parentText" parentKey="Text">
commented
commented

The solution of changing lines worked for me. 28/5/2023 at Dragonflight

Just open the two files, "ui.xlm" and "ui.lua" with notepad and replace the lines with provided text:

in "UI.xml":

replace Line 146:

PanelTemplates_TabResize(self, 0, nil, 50, 100) 
with 
PanelTemplates_TabResize(self, 0, 125)

and Line 159:

<ButtonText name="$parentText">
 with
<ButtonText name="$parentText" parentKey="Text">

in "UI.lua" replace Line 139:

local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBarTemplate") 
with 
local scrollBar = CreateFrame("Slider", nil, combatLogFrame, "OribosScrollBar")