1. #4901
    Deleted
    It requires an exists (or harm, which implies exists), or it'll try to use the ability on your focus target even if you don't have one. Fixed and shortened:

    Code:
    #showtooltip
    /use [@focus,nodead,exists,nomod:shift][]Hammer of Justice
    Last edited by mmocf531e475c8; 2014-01-04 at 11:07 PM.

  2. #4902
    Awesome, thank you so much! That works perfectly.

    [Banhammer, Kungen's Bane]

    1.60 sp mace
    150 str
    268 sta
    77 defense
    80 dodge
    93 parry
    "As you look upon the mace, you hear the whining of a thousand fanboys. Something deep with in your soul makes it impossible to think anything but 'lol.'"

  3. #4903
    Hello
    Is it possible to change this following things:

    Party, target of targert and focus target name text to class colors

    Change the font and size of the players/npc text names
    -Enemy only size and font
    -Friendly size font and class colors
    -Npc only size and font

    Adding a levels near the players name in chat
    Thanks

  4. #4904
    While it's perhaps possible to do some (or all) of those things in a macro, you would be far better off just getting an addon to do that sort of stuff.


    Druid / Demon Hunter SimulationCraft Maintainer

  5. #4905
    Thanks for the answer, i thought this section counts as scripts to.

  6. #4906
    Hello everyone,
    I've been working on a couple of macros for my disc priest and I was hoping you guys could give me a hand.

    The first one is supposed to act as follows:
    If target is friendly, cast spell as normal on said target.
    If target is unfriendly, cast spell on target's target.
    The overall purpose of the macro is to be able to cast Cascade or similar on Tank while still targeting boss.

    #showtooltip cascade
    /stopcasting
    /cast [noharm][@target] cascade
    /cast [harm][@targettarget] cascade
    The second one should act the same way based on target, thus:
    If target is friendly, cast spell as normal on said target.
    If target is unfriendly, cast spell on target's target.
    The overall purpose for this is to be able to cast healing spells, bubbles or similar on Tank while still targeting boss.

    #showtooltip <spell name>
    /stopcasting
    /cast [help][@targettarget] <spell name>
    Do you guys reckon this would work?

    EDIT:
    Just in case someone uses the search function, thanks to Treeston I've found out that the correct macro to use (for both cascade and other healing spells) is this one:

    #showtooltip
    /stopcasting
    /cast [help][@targettarget] <spell name>
    Last edited by Tractor; 2014-01-09 at 11:46 AM.

  7. #4907
    Deleted
    You describe both macros as being the same - the first one won't work as you want it to, but the second one will.

    PS: I wouldn't specify the spell name in the #showtooltip, as doing so stops range display etc from updating as the macro changes its intended target.

  8. #4908
    Hi Treeston, thanks for the reply.
    Well technically they are the same, with one key difference, cascade deals damage if cast on an unfriendly.
    Perhaps this doesn't matter?

    Would the [help][@targettarget] work all the same for cascade as well?

  9. #4909
    Deleted
    Pretty much, yes. [help][@targettarget] means:
    Code:
    [help] - If current target is friendly, cast on current target.
    [@targettarget] - Otherwise, cast on target's target.

    (For reference, your first macro would've done this:)
    Code:
    [noharm] - If current target is friendly, cast on current target.
    [@target] - Otherwise, cast on current target.
    
    [harm] - If current target is unfriendly, cast on current target.
    [@targettarget] - Otherwise, cast on target's target.

  10. #4910
    Awesome, thanks so much for getting back to me on such short notice!

  11. #4911
    Deleted
    Hey all, I'm looking for a macro for my worgen druid that would activate darkflight if I'm not pushing any modifiers, but if I'm holding down alt it would put me in cat form, activate dash, and then return me to caster form on the next press. Can such a thing been done? I've been messing around myself but to no avail.

  12. #4912
    Quote Originally Posted by Haystone View Post
    Hey all, I'm looking for a macro for my worgen druid that would activate darkflight if I'm not pushing any modifiers, but if I'm holding down alt it would put me in cat form, activate dash, and then return me to caster form on the next press. Can such a thing been done? I've been messing around myself but to no avail.
    #showtooltip
    /cast Darkflight
    /cast [mod:alt] Dash

    Don't know how to add /cancelform as you want it. I'm guessing if you want caster form then you are a healer, which means you can just heal to cancel form automatically.

    Dash will put you on cat form in one global.


  13. #4913
    The Lightbringer Keosen's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    Sin City
    Posts
    3,709
    I'm using this macro to hide/show the minimap
    Code:
    /run MinimapCluster[MinimapCluster:IsShown() and "Hide" or "Show"](MinimapCluster)
    IS there a way to make it work when using and addon like basicMinimap?

  14. #4914
    Quote Originally Posted by Keosen View Post
    I'm using this macro to hide/show the minimap
    Code:
    /run MinimapCluster[MinimapCluster:IsShown() and "Hide" or "Show"](MinimapCluster)
    IS there a way to make it work when using and addon like basicMinimap?
    For any minimap addon you'll have to manually find the name of the "parent" frame. For that addon it's just Minimap.

    Also, that macro is more work than you need to do.

    /run ToggleFrame(MinimapCluster)

    or (for basicMinimap)

    /run ToggleFrame(Minimap)

  15. #4915
    The Lightbringer Keosen's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    Sin City
    Posts
    3,709
    Thank you very much sir

  16. #4916
    I'm looking for a macro to do the following:

    When I have Elemental Blast talented, the macro would use Elemental Blast.
    When I have Unleashed Fury talented, the macro would use Unleash Elements.

    Preferably with the tool-tips updating dynamically.

    NB: When I have Elemental Blast talented, I can still use Unleash Elements (though I don't want to).

    I thought about something simple, but if I had two lines with Elemental Blast and Unleash Elements, the macro would most likely just cast Unleash Elements if Elemental Blast is on CD.
    Last edited by Anzen; 2014-01-13 at 10:10 AM.

  17. #4917
    Not possible, I think. The only way to do a talent macro is if all of the abilities in question are only available when spec'd into that talent. It is possible in theory to write an addon that would modify a macro when you change your talents, though.


    Druid / Demon Hunter SimulationCraft Maintainer

  18. #4918
    Quote Originally Posted by aggixx View Post
    Not possible, I think. The only way to do a talent macro is if all of the abilities in question are only available when spec'd into that talent. It is possible in theory to write an addon that would modify a macro when you change your talents, though.
    Pahh I guessed as much, but thought I'd try my luck. Thanks for the fast reply though!

  19. #4919
    Quote Originally Posted by Anzen View Post
    I'm looking for a macro to do the following:

    When I have Elemental Blast talented, the macro would use Elemental Blast.
    When I have Unleashed Fury talented, the macro would use Unleash Elements.

    Preferably with the tool-tips updating dynamically.

    NB: When I have Elemental Blast talented, I can still use Unleash Elements (though I don't want to).

    I thought about something simple, but if I had two lines with Elemental Blast and Unleash Elements, the macro would most likely just cast Unleash Elements if Elemental Blast is on CD.
    Create general macros named t1-t6 and they will auto-update to that talent tier's selected talent.


  20. #4920
    Hey everyone!
    I have a little question: is it possible to make such a thing as conditional emotes? As example, what I'm trying to do is a "Grimoire of Sacrifice"-macro. What I have so far is:

    #showtooltip
    /target pet
    /laugh
    /cast Grimoire of Sacrifice

    I now want to expand this simple macro, to performe different emotes depending on which pet is sacrified, e.g. /spit the imp, /laugh cpt. Blueberry, /pet the felpuppy and /kiss the sukkubus.

Posting Permissions

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