#Weak aura creation - The Burning Crusades Anniversary

3 messages · Page 1 of 1 (latest)

ashen bramble
#

Good afternoon weak aura community, I appreciate the time you spend reading this post to even begin with anything more is exceptional to me.

I'm trying to create - well get help from someone to create a "One stop shop" weak areas for arcane mages

I want the weak aura to do multiple things:

Display only when I'm instances (raids and dungeons)

tell me when icy veins, arcane power, troll racial (berserking), presence of mind and icon of the silver crescent (trinket) are off cooldown at the same time and tell me its "Burst phase"

track when each one of them spells are off cooldown to re-use again to keep them used to increase dps

tell me to use either my mana emerald, my bottled nethergon energy, my super mana potion, my cenarion mana salve or my mana potion injector when im sitting at 60% mana or below and they're available to use

evocation ready alert under 20 % mana if off cooldown

if mana potions, mana gem and evocation is on cooldown tell me to use frost bolts until 25% mana and/or these become available to use again

The weakaura addon im using is weakauras 2 .

I hope i explained this the best i can,

Thankyou

prisma junco
#

it's recommended to make 1 aura per thing you want to display, so make multiple auras and put them into a group. some examples:

tell me when icy veins, arcane power, troll racial (berserking), presence of mind and icon of the silver crescent (trinket) are off cooldown at the same time and tell me its "Burst phase"
new aura -> text
display tab: put "BURST PHASE" into text and customize anything else to your liking (size/color/font/etc)
trigger tab: create 4x triggers of spell - cooldown/charges/count - show: not on cooldown and 5th trigger of item - cooldown progress (item) - show: not on cooldown with the spells/items listed
load tab: class: mage / double click Instance Size Type and select all the places you want aura loaded in, do same load option for all other auras

evocation ready alert under 20 % mana if off cooldown
new aura
trigger tab:
trigger 1 - spell - cooldown/charges/count - Evocation - show: not on cooldown
trigger 2 - player/unit info - power - power (%) <= 20

tell me to use either my mana emerald, my bottled nethergon energy, my super mana potion, my cenarion mana salve or my mana potion injector when im sitting at 60% mana or below and they're available to use
new aura
trigger tab:
trigger 1: player/unit info - power - power (%) <= 60
trigger 2: item - cooldown progress (item) - mana emerald - show: not on cooldown
trigger 3: item - cooldown progress (item) - super mana potion - show: not on cooldown
required for activation at top - custom:

function(t)
    return t[1] and (t[2] or t[3])
end

which means aura activates on trigger 1 + trigger 2/3. iirc the other potions all share cd with super mana potion so it's enough to just track that one potion, but if i'm wrong on that add extra triggers and edit custom activation accordingly.

#

try to make the rest of the auras yourself, they should all be doable through default triggers with custom trigger activation maybe needed at times. to group them up create new aura -> group or dynamic group and drag the other auras into it. a dynamic group will automatically move your auras next to each other based on settings in group tab while a normal group will do no movement and you'll need to manually adjust their positions in display tab - position & size settings.
note that if you have a group selected and try to make changes to display/trigger tab it will make those changes to all auras in the group, so make sure you expand the group and select individual auras to edit. if you see the options covered in blue text it means you're editing the whole group.