Reckless force spell id?

I am trying to create an weakaura but considering the main buff that counts stacks and the active 6 second buff are different but have the same name, I am not sure which is the exact spell ID for each.

I managed to make an icon that shows the stacks when its above 16, but I am looking to create a bar that is depleted based on how many seconds remain on the buff, but it keeps showing it permanently because it takes the stacks buff as the actual buff.

If its a buff on you that you can trigger when you feel like, run this script from the chat window and it will spit out the auras and their ID’s.

/run for i=1,100 do local n,_,_,_,_,_,_,_,_,id=UnitAura("player",i) if n ~= nil and id ~=nil then print(n..": "..id) end end print("done")

Even if the buff shows up twice, you’ll get the exact ID for it and then can use the “Exact Spell ID” feature in WA to test just that ID #.

Also sometimes changing WA from showing “least amount of time” to “most amount of time” gets it to report the correct time.

R3 is 302932

1 Like