As the title says, is there an addon out there that puts an icon on your minimap that when clicked becomes a drop down bar where i could put macros / spells ? and then click again to hide it
let me know and thank you!
As the title says, is there an addon out there that puts an icon on your minimap that when clicked becomes a drop down bar where i could put macros / spells ? and then click again to hide it
let me know and thank you!
one bump for help
It’s an oldie but should still work. Has a minimap style button you can place anywhere on screen.
https://www.wowinterface.com/downloads/info11358-DagAssist.html
Thank you so much! you are the MVP <333
Hey Fizzle are you around? I was wondering if you could help me with another addon. Are you familiar with gearmenu? If you are I was wondering, when I hover over a slot on the gear bar a selection of items for that slot will pop up. I was wondering where In it’s Lua would I go to change the size of the pop to make it bigger? If it’s easier to communicate do you have disc?
Once again any help is appreciated please and thank you!
Never used it but had a quick look. You could play with adjusting the size while in-game:
/run _G[RGGM_CONSTANTS.ELEMENT_GEAR_BAR_CHANGE_FRAME]:SetScale(1.5)
Change the 1.5 until you have the size you want then if you want to make it a permanent change (until you install a new version etc.) you could add a line into GM_ChangeMenu.lua
after line 56 "changeMenuFrame:SetPoint(...)"
and add:
changeMenuFrame:SetScale(1.8)
Where 1.8 is whatever scale you settled on.
It shouldn’t effect anything but as noted, I don’t use the addon.
Hmm while I run the command in game it works fine, but adding the line in the lua for some reason turns the bar into a row of greenboxes heh tried multiple times.
My fingers got in the way and I added one to mans Sets. Changed the code to add in the last post. Lines 56, 57, 58 should read
changeMenuFrame:SetPoint("BOTTOMLEFT", gearBarFrame, "TOPLEFT", 5, 0)
changeMenuFrame:SetScale(1.8)
local row
Once again thank you very much, I really appreciate you. That worked perfectly. I’d like to get into Lua I know there’s guides out there but what would you recommend?