Jump to content
Sign in to follow this  
Ironmouse

Cor, CoA, SL macro

Recommended Posts

So im trying to find or make a macro that casts Corruption, Siphon Life and Curse of Agony using one button and isn’t affected by other lock dots. I’ve searched and only found one macro that works, but only if I’m the only lock in the group. So clearly that’s not gonna work for end game.

Does anyone know a place I can find macros for this or know how to write one? Much appreciated.

Share this post


Link to post
Share on other sites

I made a very small addon that does all this.

Install and make a macro with /autodot

You can always add shadowbolt in the macro so it will cast shadow bolt when all dots are up.

/autodot

/cast Shadow Bolt

https://github.com/Atreyyo/AutoDot

 

Disclaimer - I did not add resist/immune check, so if you dot gets resisted or target is immune it wont be cast again until the full duration is over, or you switch target.

Edited by Atreyyo

Share this post


Link to post
Share on other sites

/script if (UnitName('target') == nil) then TargetNearestEnemy() PetAttack(target) else if not buffed("Curse of Agony", 'target') then PetAttack(target) cast("Curse of Agony") else if not buffed("Corruption", 'target') then cast("Corruption") else if not buffed("Siphon Life", 'target') then cast("Siphon Life") else if not buffed("Drain Life", 'target') then cast("Drain Life") end end end end end

Share this post


Link to post
Share on other sites
В 11.11.2017 в 05:01, Ironmouse сказал:

but only if I'm the only lock in the group.

if not buffed("Curse of Agony", 'target') then cast("Curse of Agony")

most likely the whole thing in this

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×