Ketchupbadger 0 Report post Posted February 9, 2017 Hey fine folks! So, there are these easy, one button macro's to cast/apply multiple spells after every button touch. Now, with the use of the AddOn SuperMacro is used one for leveling my warlock for a while, binding it to mouse scroll down button. All I had to do was scroll down and the macro would check if a spell/dot/effect was applied and then apply/cast the next spell in the sequence after every scroll down. The macro looked liked this: 1. Macro for affliction warlocks with Siphon Life: /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 2. Macro for demo warlocks without: /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("Immolate", 'target') then cast("Immolate") else if not buffed("Drain Life", 'target') then cast("Drain Life") end end end end end All credits go to DieselPower on the Nost forums for this macro. Now the question is, are there any smart people out there that could help me make a similar macro for hunters (something like 1. Send Pet 2.(optional) Hunters Mark 3. Serpent Sting 4. Arcane shot spam. Now what the macro does is: you scroll down (if you bind it to scroll) 3 times to send pet, mark and sting the target and then the 4th,5th,6th and so on scroll will be arcane shot, untill the macro reads, for example, Serpent Sting has run out and will be recasted before continuing with arcane shot. On a additional note: I am pretty sure autoshot needs to be scripted in here aswell as a automatical "filler". Now, my skillset in this is absolute garbage, and I was hoping if anyone would help me out making this macro and making leveling/playing for lazy folks like me a hell lot easier! Thanks and a thousand cheers, Ketchup 0 Share this post Link to post Share on other sites
Patrykiel 0 Report post Posted April 8, 2017 These macros are crap, how are you supposed to function with them when you are in a grp with another warlock? Corruption and Curse of Agony is Corruption and Curse of Agony, if it detects that one effect has been applied by a another warlock it won't care that you too wanna apply the same effect. 0 Share this post Link to post Share on other sites