Page 1 of 1

Start Attack + Cast Heroic Strike

PostPosted: Mon Sep 28, 2015 8:33 pm
by Zacharybinx34
#showtooltip Heroic Strike
/cast Heroic Strike
/startattack


Doesn't work, any ideas?

Re: Start Attack + Cast Heroic Strike

PostPosted: Mon Sep 28, 2015 9:08 pm
by Zacharybinx34
anrey wrote:
where 1 is your autoattack slot


Not sure what you mean by this?

Re: Start Attack + Cast Heroic Strike

PostPosted: Mon Sep 28, 2015 10:48 pm
by Coreborn
Zacharybinx34 wrote:
anrey wrote:
where 1 is your autoattack slot


Not sure what you mean by this?


It means you have to have the autoattack on your actionbar, and the actionbar slot you have it on
has to be the number you put into the macro. if its the first slot than its number 1 etc.

The first actionbar is number 1-12 and so on up to 6 bars with 12 slots on each,
than there is also 4 hidden bars. So if you want it on a hidden (extra) bar you can use
an addon called Actionbar organiser. The hidden bar slots starts at slot 73.

http://wow.curseforge.com/addons/project-3294/

If you want #showtooltip functionality, you might want the addon called supermacro,
since #showtooltip dosnt really exist in vanilla.

http://addons.us.to/addon/supermacro

Re: Start Attack + Cast Heroic Strike

PostPosted: Tue Sep 29, 2015 7:12 pm
by Drunkwizzard
Attack in Vanilla is considered a spell/abilitiy.

Your macro can go like:

/cast Attack
/cast Heroic Strike

#showtooltip does not exist in 1.12.1 as mentioned.

You can get a similar function by using addons such as SuperMacro or MacroToolTip, if you are not interested in advance macroing i recommend to use MacroToolTip, just use /setspelltooltip SPELLNAME in any macro to have the same effect as #showtooltip would.

Re: Start Attack + Cast Heroic Strike

PostPosted: Tue Sep 29, 2015 8:31 pm
by Zacharybinx34
Thanks!

Re: Start Attack + Cast Heroic Strike

PostPosted: Tue Sep 29, 2015 8:38 pm
by Zacharybinx34
/setspelltooltip Heroic Strike
/cast Attack
/cast Heroic Strike


Doesn't work even with the supermacro addon. It starts and stops autoattack everytime you press it.

Re: Start Attack + Cast Heroic Strike

PostPosted: Wed Sep 30, 2015 6:44 am
by LYQ
/setspelltooltip

is a command made by an Addon, and I'm pretty sure that was made by Anaron(ehaugw @ feenix). But I don't know what the name of this small addon was.

another correction to Drunkwizard

/cast Attack

would toggle Autohit on every macro hit, which is not what OP wants.
anrey already posted the correct way how to avoid this unwanted toggle.

Re: Start Attack + Cast Heroic Strike

PostPosted: Wed Sep 30, 2015 7:44 am
by Overtime
/run --CastSpellByName("Heroic Strike");

Re: Start Attack + Cast Heroic Strike

PostPosted: Wed Sep 30, 2015 8:55 am
by Cruzix
Zacharybinx34 wrote:/setspelltooltip Heroic Strike
/cast Attack
/cast Heroic Strike


Doesn't work even with the supermacro addon. It starts and stops autoattack everytime you press it.


/setspelltooltip works with the MacroToolTip addon from Anaron

Drunkwizzard wrote:if you are not interested in advance macroing i recommend to use MacroToolTip, just use /setspelltooltip SPELLNAME in any macro to have the same effect as #showtooltip would.