Cant open keybind menui[BUG]
s1228 opened this issue ยท 6 comments
๐ต Describe the bug:
After opening /GSE -> clicking on "Keybinds" throws a lua error
๐ต To reproduce: (Steps to reproduce the behavior)
- Go to '/GSE'
- Click on 'Keybinds'
- See error
๐ต The error:
Paste the error message in this blockquote.
14x GSE_GUI/KeyBinding.lua:454: Usage: GetSpecializationInfo(specIndex[, isInspect[, isPet[, inspectTarget[, sex]]]])
[string "=[C]"]: in function `GetSpecializationInfo'
[string "@GSE_GUI/KeyBinding.lua"]:454: in function <GSE_GUI/KeyBinding.lua:438>
[string "@GSE_GUI/KeyBinding.lua"]:529: in function `ShowKeyBindings'
[string "@GSE_GUI/Menu.lua"]:130: in function <GSE_GUI/Menu.lua:129>
[string "=[C]"]: ?
[string "@DynamicCam/Libs/AceGUI-3.0-41/AceGUI-3.0.lua"]:66: in function <...aceDynamicCam/Libs/AceGUI-3.0/AceGUI-3.0.lua:64>
[string "@DynamicCam/Libs/AceGUI-3.0-41/AceGUI-3.0.lua"]:300: in function `Fire'
[string "@DynamicCam/Libs/AceGUI-3.0-41/widgets/AceGUIWidget-InteractiveLabel.lua"]:23: in function <...AceGUI-3.0/widgets/AceGUIWidget-InteractiveLabel.lua:22>
Locals:
(*temporary) = nil
๐ต Screenshots:
If applicable, add screenshots to help explain your problem.
๐ต Expected behavior:
Key Binding Menu opens
๐ต GSE.lua file:
Please provide your GSE.lua
file or the export string for the specific macro that is causing an issue.
- To find the GSE.lua file:
- First, make sure you have enabled the "File Name Extensions" checkbox in Explorer (View tab)
- Browse to
C:\path\to\wow\_retail_\WTF\Account\YourAccountName\SavedVariables\
or/path/to/WoW/_retail_/WTF/Account/YourAccountName/SavedVariables
- Copy the
GSE.lua
file to your Desktop - Rename this copy to
GSA.lua.txt
- Then just drag it here in your message
- Note: If you do not include your GSE.lua file you are wasting your time and mine. 90% of the time, the first thing I will ask for is "Can you please upload your GSE.lua file?". This file is needed with the error to work out Why that error occured for you.
LUA.zip
๐ต Desktop (please complete the following information):
- OS: [Win 11 x64]
- Game Version [e.g. classic/bcc/retail (9.1.0)] - Retail 11.0.0.55939
๐ต GSE Version:
- Version: [e.g. 3.x.y] : 3.2.03
- Downloaded From: [https://www.curseforge.com]
๐ต Additional context:
Happend on multiple characters, restart / reinstall of the addon / wow client didnt help.
Hey Mate,
I need some more information,
What level is your character and can I please have a different GSE.lua file from C:\path\to\wow_retail_\WTF\Account\YourAccountName\YourServer\YourCharacter\SavedVariables\
Please
Sure thing.
I am lvl 70, its a Dracthyr Evoker (error comes on all 3 specs)
Edit: Also, if relevevant - This is the only thing I imported before hand: https://wowlazymacros.com/t/devastation-evoker-war-within-11-0/41384
Ok looks like you missed a previous update - can you please do a
/run GSE_C = {}
and log out and back in please.
in deed that fixed my issue - can now open the panel.
for the future: what did i do wrong / should have done differently? (or was it just "bad luck"?)
Just bad luck - there was a glitch about a week ago where it put your char name in the keybinding instead of the specialisation. I asked about level as chars below 10 are the only ones i can think of that dont have a specialisation
GSE_C = {
["KeyBindings"] = {
["1"] = {
},
["Melisania-Silvermoon"] = {
["3"] = {
},
},
},
["Updates"] = {
["3202"] = true,
["3201"] = true,
},
["Update3117"] = true,
}
SHould have looked like
GSE_C = {
["KeyBindings"] = {
["1"] = {
},
["3"] = {
},
},
["Updates"] = {
["3202"] = true,
["3201"] = true,
},
["Update3117"] = true,
}