Originally Posted by
gomash
1. Was wondering if you have any nice auras set up for Ragnaros heroic. things like Sulfuras Smash , time until next wrath or hand (whichever comes first) to know when best to detonate traps, World in Flames / Engulfing Flame , Blazing Heat , Combustible on meteors, Combustion stacks on players, being chased by meteor, meteor landing on or near you...
2. Also was wondering if Kulldam can post his aura set, just the whole thing, with the custom sounds and all. Sort of an "as is" collection, that can learn from / adopt some nice things.
p,s very nice work here, keep it up
Afraid we don't have any setups for Heroic Rag as we're still working on a few other heroic fights, but we'll certainly post any we come up with when the time comes.
As for a "dump" of my settings, since there would just be a huge number of export strings to import each display individually, I'll just have to give you my WeakAuras.lua saved var file: http://www.voximmortalis.com/files/WeakAuras.lua
DO NOT overwrite your own WeakAuras.lua -- in fact I'd create a backup of your own WeakAuras.lua before messing around just to be safe (WoWFolder\WTF\Account\ACCOUNTNAME\SavedVariables\ WeakAuras.lua). If you want to "import" my settings, copy everything within the ["displays"] = {} brackets in that file and paste it after your own ["displays"] data. The basic structure of lua tables as seen in the WeakAuras.lua is key = value, which in the case of "Displays" show as something like this simplified example:
Code:
["displays"] = {
["Display 1"] = {
["setting1"] = true,
["setting2"] = true,
["setting3"] = false,
},
["Display 2"] = {
["setting1"] = true,
["setting2"] = true,
["setting3"] = false,
},
["Display 3"] = {
["setting1"] = true,
["setting2"] = true,
["setting3"] = false,
},
},
So copying that entire Display from the ["key"] = { to the final }, closing bracket and comma will add that display to your own setup -- just be sure to paste it within the opening and closing brackets of your ["displays"] table, and after the rest of your display data. Again, you can easily dump everything into your own settings with this method, but note that these tables do not have "children" relationships, therefore any WeakAura display that has children (is a group) will not function properly unless you also import the separate children. Anyway, hope that's enough to get you going.
Originally Posted by
risu
I set up some Baleroc bars to show who has tormented and duration remaining. I was curious if there's any way (with LUA maybe) to class color the bars instead of have them all the same color, so it's easier to recognize. Some of the import strings from this thread have been super helpful thanks
Unfortunately there is no current method to customize many display settings in WeakAuras, such as font color, font size, background color, alpha channels, etc. That said, such features would prove pretty useful and if you like the idea enough, I suggest creating a ticket over on the WeakAuras dev site as a possible "Enhancement" and maybe they'll add it in a future build.