Thread Tools Display Modes
12-19-11, 11:22 AM   #1
Nallepuh
A Deviate Faerie Dragon
Join Date: Oct 2010
Posts: 19
Prot pala macro!

Hi, I wonder if anyone can help me with making a macro for my crusader strike/hammer of the righteous! I am not good at making macros on my own so please post the full macro here so i can just post it in wow, please!

I want that you can bind one key to switch between crusader strike and Hotr. Like shift+tab you switch between crusader strike & Hotr! I hope i have explained it good and please post and help me!:P
  Reply With Quote
12-19-11, 12:07 PM   #2
Ither
A Firelord
 
Ither's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 497
Eh.

The only thing I can think of is using a modifier in a macro, shift tab won't exactly "switch" the spell.

What I mean is say you put the macro on button that is binded to key 1 on your computer. If you hit 1, it fires crusader strike. In the macro you can add a modifier so if you hit shift + 1 it fires off Hammer instead.
__________________
  Reply With Quote
12-19-11, 12:49 PM   #3
Nallepuh
A Deviate Faerie Dragon
Join Date: Oct 2010
Posts: 19
Originally Posted by TheGeek View Post
Eh.

The only thing I can think of is using a modifier in a macro, shift tab won't exactly "switch" the spell.

What I mean is say you put the macro on button that is binded to key 1 on your computer. If you hit 1, it fires crusader strike. In the macro you can add a modifier so if you hit shift + 1 it fires off Hammer instead.
Ye, i meant that, how you do that?!:P
  Reply With Quote
12-19-11, 01:42 PM   #4
Taryble
A Molten Giant
 
Taryble's Avatar
Join Date: Jan 2009
Posts: 811
Code:
#showtooltip
/cast [mod:shift] Spell 1; [mod:ctrl] Spell 2; [mod:alt] Spell 3; Spell 4
If SHIFT is pressed, cast Spell 1.
If CTRL is pressed, cast Spell 2.
If ALT is pressed, cast Spell 3.
If no modifier key is pressed, cast Spell 4.

You can remove ones you don't use, and if you want something to work on ANY modifier, you can do this:
Code:
#showtooltip
/cast [mod] Spell 1; Spell 2
If ALT, SHIFT, or CTRL is pressed, cast Spell 1.
If no modifier key is pressed, cast Spell 2.
__________________
-- Taryble
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Macro Help » Prot pala macro!

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off