Ironmouse 0 Report post Posted November 10, 2017 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. 0 Share this post Link to post Share on other sites
Atreyyo 0 Report post Posted November 15, 2017 (edited) 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 November 15, 2017 by Atreyyo 0 Share this post Link to post Share on other sites
Atreyyo 0 Report post Posted November 21, 2017 (edited) Apparantly spamming /autodot made it skip casting dots, so I fixed that. Get the new version and spam away! https://github.com/Atreyyo/AutoDot Edited November 21, 2017 by Atreyyo 0 Share this post Link to post Share on other sites
monteo 0 Report post Posted November 29, 2017 /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 0 Share this post Link to post Share on other sites
monteo 0 Report post Posted November 29, 2017 В 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 0 Share this post Link to post Share on other sites