1. #1

    Protection Warrior Guide: UI Layouts, Macros, Addons, & Guides

    Hello to all of the Warriors out there! Today, I am bringing you part 4 of my Protection Warrior video series. This guide discusses UI Layouts, some helpful macros you can use, some addons that will benefit you, and advise about guides that can help you learn pretty much any class and/or specialization. If you have any comments, questions, ideas, insights, or (constructive) criticisms, then please leave them in the comment section of the video as I will see them much sooner there and be able to provide a quicker, better response there than anywhere else. I truly hope that this guide helps somebody out there!



    If you enjoy the video, then remember to leave a like!

  2. #2
    You can make your Vigilance macro more useful by adding more conditions to it. If you change it to...

    Code:
     /cast [@targettarget,exists][help] Vigilance
    ...then it will try to Vigilance your ToT, and if one doesn't exist because you are targeting a friendly target, it will Vigilance the friendly target instead.

    You can make it even more useful by adding a mouseover modifier to get...

    Code:
     /cast [@mouseover,help][@targettarget,exists][help] Vigilance
    ...it will try to Vigilance your mouseover (if help), then try ToT, then try targetted (if help). This makes it very easy to moveover someone in a raidframe that just so happens to be outside your field of view, but needs the Vigilance the most.

    One step further and you get...

    Code:
    /cast [mod:shift,@ focus,exists] Vigilance;
    /cast [@mouseover,help][@targettarget,exists][help] Vigilance
    Take the extra space out between "@" and "Focus ". Not sure why but it reformats it if I put them together.

    Which will Shift-cast Vigilance on your focus target (Offtank), otherwise your mouseover (if friendly), otherwise your ToT (friendly that aggro'd), otherwise your target (if friendly).

    This style of conditioned macros can also REALLY help with movement in PvP and PvE, like in my Charge/Intervene(Safeguard) macro:

    Code:
    #showtooltip
    /cast [mod:shift][@mouseover,help][help] Intervene; /cast [@mouseover,harm][harm] Charge
    This lets you mouseover Intercept (if help) (this includes Mocking Banner), Intervene target (if help), mouseover Charge (if harm), Charge target (if harm), or hold shift to force the Intercept (mouseover then target). The last portion is especially useful if you are targeting a harmful mob, but want to make sure you Intercept the friendly target you are mousing over (it will NOT cast charge as long as you hold Shift).
    Last edited by Greedybeaver; 2016-07-12 at 03:24 AM.

  3. #3
    Deleted
    Quote Originally Posted by Greedybeaver View Post
    Code:
    #showtooltip
    /cast [mod:shift][@mouseover,help][help] Intervene; /cast [@mouseover,harm][harm] Charge
    This lets you mouseover Intercept (if help) (this includes Mocking Banner), Intervene target (if help), mouseover Charge (if harm), Charge target (if harm), or hold shift to force the Intercept (mouseover then target). The last portion is especially useful if you are targeting a harmful mob, but want to make sure you Intercept the friendly target you are mousing over (it will NOT cast charge as long as you hold Shift).
    That macro looks pretty usefull. Just want to add that you can ommit the second /cast since /cast takes arguments along the lines of OPTIONLIST SPELLNAME; OPTIONLIST SPELLNAME ...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •