View Single Post
02-05-11, 09:02 AM   #8
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by 19logan91 View Post
i tried it but it wasn't quite working right. but what seems to be working ok is
Code:
/cast [help]Power Word: Shield
/stopmacro [help]
/cast [@player] Power Word: Shield
it just casts at my target but it auto casts on me otherwise. no Spell on the Cursor but its better than it was
Which is the same as
Code:
/cast [help][@player]Power Word: Shield
You can even add a mouseover target and more if you want to:
Code:
/cast [@mouseover,help][@mouseovertarget,help][help][@targettarget,help][@player,mod][]Power World: Shield
  1. Cast on friendly unit under your mouse, or
  2. Cast on the target of your mouseover unit if mouseovertarget is friendly, or
  3. Cast on the target if the target is friendly
  4. Cast on the target of your target if it is friendly (when you are targetting a boss for example and you want to shield the tank)
  5. Cast on yourself if you are holding a modifier key, such as ctrl, alt or shift
  6. If all else fails, just cast Power Word: Shield in the normal behavior. This also makes sure the actionbar shows the correct spell icon when none of the conditions match, as [] will always match.
This type of macro can be used for all your healing/buff spells

Last edited by ravagernl : 02-05-11 at 09:08 AM.
  Reply With Quote