ToggleBars

ToggleBars

230 Downloads

Firstly, this addon is very user unfriendly,

and I am not going to change that.

What it does is; it allows you to keybind the action of hiding / showing your action bars by 'disabling' or 'enabling' them. It also toggles your quest tracker... The keybind can be found under in the In-Game keybindings menu under the 'other' category.

To change what bars you want toggled or if you want the quest tracker to be toggled as well, you want to change them in the code -- as there is no settings menu. The is a theme throughout the whole addon

Toggle quest Tracker:

If you don't want to toggle the quest tracker, go to dostuff.lua and change the following

local HIDE_QUEST_TRACKER = true

You want to set that to: false, to disable quest tracker toggling

When toggling the quest tracker, the addon simply yeets the quest tracker to Narnia when you show your bars, and yanks it back when on your screen when you hide the bars again.

to decide where the quest tracker should go when it comes back; in doStuff.lua, change the following:

local QUEST_TRACKER_POS = {35, -4}

Change the two values to whatever you want.

Sorry if I messed you your quest tracker position. Addons like MoveAnything can help you get it back to the default placement.

ElvUI:

in doStuff.lua:

Firstly, set local BARS_ADDON = 1

To change what bars to toggle:

local BARS_TO_HIDE = {1,3,4,5,6}

this will hide bars 1 to 5 -- you can change this to whatever you want, as long as the numbers are comma separated.

Bartender4:

in doStuff.lua:

Firstly, set local BARS_ADDON = 2

and change these:

BT4Bar1:Hide()

BT4Bar1:Show()

Here, you want to change the numbers in for example BT4Bar1:Hide(). 

This will make bar 1 hide.

Remember to also change the number in BT4Bar1:Show() as well.

you can have as many or as few of these as you want.

Just remember to have one for both hide and show.