Like my rather long title says here; How do I get the “Ace Up Your Sleeve” proc to show on screen by using Weak Auras?
I’ve been trying for days but nothing works. I’ve looks all over Wowhead ans every single link on google I could find.
The best thing would be for it to show as a bar, running from 100% to 0% (indicating how long I have left of the effect), and have that show up below my character. But a normal icon with a countdown works too.
Frankly, I have no clue what you are talking about. Ace Up Your Sleeve has no trackable buff as the proc only gives you 4 combo points and everything is handled server side. You possibly could make PPM estimations by tracking the combat log, but that’s too much effort for most people to bother, especially because it would be relatively inaccurate.
If you’re talking about Deadshot the buff you need to track is also called “Deadshot” and it lasts until you use Pistol Shot (it has no duration).
Edit: the proc of Ace Up Your Sleeve itself can be tracked by looking for a combat log event where Between the Eyes generates combo points, but I’m not sure why one would bother as it’s quite obvious even without a WeakAura.
And no worries man… I was just curious to how one would go about having the proc flash on screen like “cooldown pulse” did back in the day. I sometimes forget about things like that, so a good reminder to when a effect like that takes place is always welcome.
But it is like you said, it’s fairly obvious and the game does “flash” the letters “Ace up Your Sleeve” on the screen when it procs.
So there’s no issue. Was just wondering if anyone had gotten it to work with WeakAuras, since it’s a fairly easy addon.
WeakAuras has Discord where authors help with problems like yours. There is also link to Wago: http:// wago. io . Wago has plenty of already made auras for WA.
My first thought would be to track a buff. If it had duration, WA would get dynamic info for you. You would just need to decide on which aura to use: icon or progress bar, etc. If you can’t track it, then you could make a timer, which can be triggered by an event of your choice and then a spell anything else. Gamepedia is full wow API. And finally, if you know duration of the thing you want to track time for, such as is 15 secs, you just set timer and WA will track it for you and make the icon or bar disappear, unless you want to control it as well.
Alright, this is about two weeks old now but I’m going to put in my part. I made a weakaura today for this trait with my keystone healer. It is a tough one because it doesn’t show up in the log or as a buff/debuff.
So, it doesn’t matter what sort it is; I used a progress texture to track the cooldown of BtE.
In Trigger, the type should be Status, and that status should be Cooldown Progress (Spell)
Under Spell, put in the ID for Between the Eyes. Then at the bottom, where it says Show, the drop down should be on “On Cooldown”
Now the important part. Under Conditions, add a trigger.
First dropdown should be Trigger 1 - Active, the second dropdown should be True, and the third should be Run Custom Code
The Custom Code is, for me:
local Unit_Power = UnitPower(“player”,4)
if Unit_Power > 3 then
PlaySound(5274, “Master”)end
You can replace the sound ID with anything you’d prefer, or change it to sending a chat message or whatever instead, it’s the rest of the stuff that matters. I’m not sure if you can use Custom Code to make a texture or icon show up.