gotmilk0112 10 Report post Posted November 29, 2016 Since /startattack doesn't seem to exist in vanilla, I did a bit of googling and found a macro equivalent of it. /run if not AtkSpell then for AtkSlot = 12,72 do if IsAttackAction(AtkSlot) then AtkSpell = AtkSlot;end;end;end; if not IsCurrentAction(AtkSpell) then UseAction(AtkSpell);end; Only thing to note is that you NEED to have your Attack button somewhere on your bars, in order for this macro to work. Normally, if you mash your attack button, it will just switch autoattack on and off. This macro will keep your autoattack going even if you press it multiple times. 0 Share this post Link to post Share on other sites
Nirraven 0 Report post Posted November 30, 2016 Great! I am new to vanilla, so this is very helpfull thanks. 0 Share this post Link to post Share on other sites
gotmilk0112 10 Report post Posted November 30, 2016 Also, you can add an ability to the end of the macro, like so: /run if not AtkSpell then for AtkSlot = 12,72 do if IsAttackAction(AtkSlot) then AtkSpell = AtkSlot;end;end;end; if not IsCurrentAction(AtkSpell) then UseAction(AtkSpell);end; /cast Mortal Strike 0 Share this post Link to post Share on other sites
soulzek 3 Report post Posted December 3, 2016 (edited) This is also what I use. Here is a slightly more efficient version that uses up less macro characters and allows for maximum bar space possible (as I use bongos) /run for z=1,172 do if IsAttackAction(z)then if not IsCurrentAction(z)then UseAction(z);end;end;end; /cast Sinister Strike Edited December 3, 2016 by soulzek 0 Share this post Link to post Share on other sites
ansk 0 Report post Posted December 12, 2016 (edited) The most consolidated macro you can come across is if you install the addon https://github.com/DennisWG/CastModifier and your macro becomes... /cast !Attack Although i kinda feel that the above addon is exclusive to supermacro. Edit: There is also a new addon from Aviana called classic macros that actually has a /startattack https://github.com/Aviana/ClassicMacros Edited December 12, 2016 by ansk 0 Share this post Link to post Share on other sites
Ike 20 Report post Posted December 13, 2016 The most consolidated macro you can come across is if you install the addon https://github.com/DennisWG/CastModifier and your macro becomes... /cast !Attack Although i kinda feel that the above addon is exclusive to supermacro. You can use CastModifier entirely without SuperMacro! 0 Share this post Link to post Share on other sites