• Dear Guest,

    You're browsing our forum as a Guest meaning you can only see a portion of the forum in read-only mode.
    To view all forum nodes and be able to create threads/posts please register or log-in with your existing account.

    TwinStar team

Paladin Macro: Divine shield hearthstone.

brandir

New Member
Joined
May 8, 2016
Hi all :wink:

I´m having problems doing a macro that is more a joke that something usefull, but is a macro i think all pallys should have :tongue:.

The macro is:

divine shield + hearthstone + /yell text.

I tried

/cast divine shield
/use hearthstone

also

/cast divine shield
/cast hearthstone

And also castsequence macro, but i knew that didnt exist until TBC.

All of them of course didnt work.

About the text i think is just place /yell xxxxxxxxxxx under all but im not sure.

Can someone help me please?.

Thanks a lot. :biggrin:
 
What do you mean "doesn't work" ? What's going wrong?

Also, for Hearthstone, you use

/use Hearthstone

Because it's an item, not a spell.
 
Last edited:
The first one works properly. You can't make a macro that you would press only once and do a bubblehearth, so your issue boils down to having to press the macro at least twice for it to work properly, which produces two yells.

You can write a script to check if your Divine Shield buff is active and only if it's not active, it does the yell and pops Divine Shield. That way it would yell only once, but your macro will still spam the yell if your Divine Shield is on cooldown and you try to press it. Adding another check for an active cooldown might require more than 255 letters tho.
 
Doesnt work on me, i know i have to press twice, did u try /use hearthstone ???

In vanilla using item was :

/scipt UseContainerItem(0, 1);

Please try them, on vanilla they dont work that way. Unless on my character.


Thanks anyway.
 
Last edited:
Yeah /use comes from an addon.

So you place your hearthstone in your main bag, top left slot and macro it:
Code:
/setspelltooltip Divine Shield
/cast Divine Shield
/run UseContainerItem(0,1);
 
Ty very much ;). This works perfect without any addon.

I will place the yell into another button :D i have 10 secs to say anything.

Bye and ty again.
 
Nope, /cast works in default wow as long as you use correct spell names. Difference is that /cast is a simple command while castspellbyname must be used with a /script.
 
Top Bottom