Restores access to hidden interface options and provides a way to browse every CVar setting in the game!
General
Player Titles
Guild Names
Guild Titles
Stop Auto Attack
Attack on Assist
Cast action keybinds on key down
Fade Map when Moving
Secure Ability Toggle
Display Lua Errors
No Debuff Filter on Target
Reverse Cleanup Bags
Quest sorting mode (top vs proximity)
Select Action Cam mode
Chat
Remove Chat Hover Delay
Enable Mouse Wheel Scrolling
Floating Combat Text
Float mode (up/down/arc)
Energy Gains
Auras
Honor Gains
Reputation
Combo Points
Combat State (Entering/Leaving Combat)
Spell Mechanics
Healing
Absorb (Self and Target)
Directional Scale (brings back the classic, only upwards moving text)
Low HP/Mana
Plus many other options available through the built-in CVar browser, including some that have never been exposed by Blizzard, such as "violence level" and "nameplate distance"!
Type /aio for the main menu or /cvar to open the CVar browser directly
If you're running ElvUI, their addon myopically attempts to override any cvar changes you make outside of their own control panel.
The original post claims they aren't running any other addons, but this isn't something I can replicate with AIO itself.
If you type "floatingCombatTextCombatDamage" into the CVar Browser filter and hover over it, the tooltip should display the last thing that modified the variable at the bottom in red. You can try checking that after it resets itself.
i did a fresh install but i did have elvui previously. maybe something got left behind, i dunno but i did a fresh install again and now it seems to be working. thx
as soon as i installed elvui, it mucked it up again tho. so whatever elvui is doing it's screwing up the blizzard floating combat text. i even skipped the cvars install and it still bugged it out. i don't like a bunch of addons but i guess i can't use elvui with the floating combat text no matter what. lame.
Can you try disabling all of your other addons and seeing if you still can't set this cvar?
Another option you can try:
Open up basicOptions.lua; at the top of the file is a function that looks like this:
local SetCVar = function(...) -- Suppress errors trying to set read-only cvars
-- Not ideal, but the api doesn't give us this information
local status, err = pcall(function(...) return _SetCVar(...) end, ...)
return status
end
replace all of that with this:
local SetCVar = function(...) -- Suppress errors trying to set read-only cvars
-- Not ideal, but the api doesn't give us this information
local status, err = pcall(function(...) return _SetCVar(...) end, ...)
if err then print(err) end
return status
end
save the file, /reload your ui and see if something gets printed to the chat when you try to change that cvar.
I should have tried it on its own before reporting, seems to be a conflict with another addon as on its own I was able to modify "alwaysCompareItems" and it saved.
Now starts the fun part of finding out which one, I have a few installed :)
When / if I do find the conflicting one I will report back here.
It should be telling you what addon last modified the cvar in the tooltip when you hover over it in the cvar browser, but it doesn't always catch it, particularly if the addon loaded before AIO does.
I made the change you indicated to the basicOptions.lua while out of the game, logged in and tried using your mod to make the change, this is with all my usual addons installed.
There was unfortunately no error message and the value would not change.
I'll go through at some point and try and see which one is causing the conflict.
Check if you can use /run SetCVar("alwaysCompareItems", 1) instead of the console command; if you can't, an addon probably hooked this function and there may be a simple way to find out which one it was by making a small addon that hooks it even earlier in the loading process and catching it.
When I do that there is no indication of anything happen, no confirmation, response, error, nothing, checking with /dump GetCVar('alwaysCompareItems') results in 0 so it wasn't changed.
*Update: The addon blocking the changes was ElvUI, if I turn that off and leave everything else on your addon can make changed to the value in the cVar browser.
I guess you have/had the same problem as i did, but i got no response :P (comment #515)
I did find out that there is a native feature that fixes this inside Shadow & light plugin for Elvui. It is located in Shadow & Light > Modules > Tooltip > checkmark on top "Always Compare Items".
Thanks, I did find that option in the S&L config panel yesteray, lots of stuff in there, everywhere, and not always where you'd expect it, its kind of an adventure, finding new things all the time, lol.
Cheers for posting, will help somebody else out, have a good one!
Thats exactly the reason it took me so long to find it, cause i knew it had to be in there somewhere.... everything is so well hidden in the settings :P
For future reference, when you hover over the cvar in the cvar browser, it tells you what Last Modified the cvar in the tooltip next to the text "Last Modified By".
I just installed elvui to check why it wasn't displaying this (I mentioned it in one of my previous messages) and it would appear to be functioning correctly.
Addons that do nonsense like repeatedly forcing a variable to be set to something even when the user manually changes it somewhere else are exactly why I added this feature.
If it is NOT displaying this text for you, I need to know so I can figure out why.
-
View User Profile
-
Send Message
Posted Jun 24, 2018In reply to StMrAuditor:
-
View User Profile
-
Send Message
Posted Jun 27, 2018In reply to Semlar:
-
View User Profile
-
Send Message
Posted Jun 14, 2018☠️
-
View User Profile
-
Send Message
Posted May 19, 2018can u add
This changes the floating text size over your character. thanks in advance :)
-
View User Profile
-
Send Message
Posted May 14, 2018Error message upon trying to clear and set focus on a target.
Message: Error: AddOn AdvancedInterfaceOptions attempted to call a forbidden function (ClearFocus()) from a tainted execution path.
Debug:
[C]: ClearFocus()
..\FrameXML\UnitPopup.lua:1691: func()
..\FrameXML\UIDropDownMenu.lua:791: UIDropDownMenuButton_OnClick()
[string "*:OnClick"]:1:
[string "*:OnClick"]:1
-
View User Profile
-
Send Message
Posted Apr 30, 2018loot to leftmost bag keeps resetting when i relog
-
View User Profile
-
Send Message
Posted Apr 11, 2018Am using this addon to try and set some cvar values but while some will change others won't.
One that doesn't work is "alwaysCompareItems".
I can set it with the /console command but your addon cvar browser won't make the change.
I am verifying using the /dump command, changing via chat command works, changing via your cvar browser does not.
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to zasy999:
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to Semlar:
[03:05] Dump: value=GetAddOnMetadata("advancedinterfaceoptions", "version")
[03:05] [1]="1.2.2"
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to zasy999:
replace all of that with this:
save the file, /reload your ui and see if something gets printed to the chat when you try to change that cvar.
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to Semlar:
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to zasy999:
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to Semlar:
-
View User Profile
-
Send Message
Posted Apr 12, 2018In reply to zasy999:
-
View User Profile
-
Send Message
Posted Apr 13, 2018In reply to Semlar:
-
View User Profile
-
Send Message
Posted Apr 21, 2018In reply to zasy999:
I did find out that there is a native feature that fixes this inside Shadow & light plugin for Elvui. It is located in Shadow & Light > Modules > Tooltip > checkmark on top "Always Compare Items".
-
View User Profile
-
Send Message
Posted Apr 22, 2018In reply to Forge_User_02435634:
-
View User Profile
-
Send Message
Posted Apr 22, 2018In reply to zasy999:
-
View User Profile
-
Send Message
Posted Apr 23, 2018In reply to Forge_User_02435634:
-
View User Profile
-
Send Message
Posted Apr 24, 2018In reply to Semlar: