1. #6281
    I'm just looking for a simple Druid Cat Form macro which allows me to spam the button without kicking me out of form again.

    I thought this one should work, but it doesn't:

    #showtooltip cat form
    /cast !cat form
    /cast !prowl

    Spamming it gets me out of cat form again.

  2. #6282
    Quote Originally Posted by IllidankaTrump View Post
    I'm just looking for a simple Druid Cat Form macro which allows me to spam the button without kicking me out of form again.

    I thought this one should work, but it doesn't:

    #showtooltip cat form
    /cast !cat form
    /cast !prowl

    Spamming it gets me out of cat form again.
    /cast [nostance] cat form
    /cast [nostealth] prowl
    Last edited by kheath812; 2019-03-19 at 07:19 PM.

  3. #6283
    Thank you, but that won't let me go into cat form when I'm in travel form or bear form, because those are not "[nostance]"...

  4. #6284
    Quote Originally Posted by IllidankaTrump View Post
    Thank you, but that won't let me go into cat form when I'm in travel form or bear form, because those are not "[nostance]"...
    Code:
    #showtooltip
    /cast [noform:2] Cat Form
    /cast [nostealth] Prowl
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  5. #6285
    Hey guys, looking some macro help.

    This is a macro i found that is helpful for BoD aswell as Mercenary mode. It basically lets me keep that button on my bar and means i don't have to drag my racials out of my spellbook every couple of days, which is annoying. You can adapt it to your own racials by just changing Shadowmeld / Regeneratin' to your own. Really useful:

    Code:
    #showtooltip
    /cast Regeneratin'
    /cast Shadowmeld
    /run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Regeneratin'" or G"Shadowmeld")
    So with this macro in mind, i also want one that does the same but for my on-use trinkets. Whichever one i equip, i want it to swap the tooltip , icon and of course on use button to that trinket on my bar.

    These are the two trinkets i have:

    - Razdunk's Big Red Button
    - Merektha's Fang

    I tried inserting them into the macro above, no luck. Also tried using 'GetItemInfo' instead of GetSpellInfo but that didn't seem to work either. What am i doing wrong?

    Here is the macro i ended up making which doesn't work:

    Code:
    #showtooltip
    /cast Merektha's Fang
    /cast Razdunk's Big Red Button
    /run local G=GetItemInfo SetMacroItem(GetRunningMacro(), G"Merektha's Fang'" or G"Razdunk's Big Red Button")

  6. #6286
    Quote Originally Posted by Sliske View Post
    So with this macro in mind, i also want one that does the same but for my on-use trinkets. Whichever one i equip, i want it to swap the tooltip , icon and of course on use button to that trinket on my bar.
    Top trinket:

    Code:
    #showtooltip
    /use 13

    Bottom trinket:

    Code:
    #showtooltip
    /use 14

    All the numbers for equipped gear:

    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  7. #6287
    Quote Originally Posted by Kanegasi View Post
    Code:
    #showtooltip
    /cast [noform:2] Cat Form
    /cast [nostealth] Prowl
    Thanks, this one works.

    What are the form codes?

    humanoid form = 0
    bear form = 1
    cat form = 2
    travel form = 3
    moonkin form = ?
    tree form = ?
    Last edited by IllidankaTrump; 2019-03-23 at 09:57 AM.

  8. #6288
    Quote Originally Posted by IllidankaTrump View Post
    Thanks, this one works.

    What are the form codes?

    humanoid form = 0
    bear form = 1
    cat form = 2
    travel form = 3
    moonkin form = ?
    tree form = ?
    https://wow.gamepedia.com/Form
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  9. #6289

  10. #6290
    I made a macro to use on my druid so that stellar flare and fury of elune can share the same keybind:

    #showtooltip
    /cast [talent:5/3] Stellar Flare
    /cast [talent:6/2] Fury of Elune

    it works just fine, except that when stellar flare is untalented and Fury of Elune is talented, the button doesn't show the fury of elune icon (just a blank '?') Is there a way to get it to show the correct icon all the time?

  11. #6291
    Quote Originally Posted by Cheze View Post
    I made a macro to use on my druid so that stellar flare and fury of elune can share the same keybind:

    #showtooltip
    /cast [talent:5/3] Stellar Flare
    /cast [talent:6/2] Fury of Elune

    it works just fine, except that when stellar flare is untalented and Fury of Elune is talented, the button doesn't show the fury of elune icon (just a blank '?') Is there a way to get it to show the correct icon all the time?
    #show and #showtooltip will only show what the macro will do. If both are untalented, then the macro does nothing, hence the ? icon. If you want to force an icon, put the name of the spell or item you want in the first line.

    Code:
    #showtooltip Fury of Elune
    /cast [talent:5/3] Stellar Flare
    /cast [talent:6/2] Fury of Elune

    This should only work with spells you know and items you have, so it's possible you'll still have a ? icon with both untalented. If that is the case, you will have to put up with the ? icon.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  12. #6292
    right, but with stellar flare untalented and fury of elune talented, the macro still shows a ?

    it casts fury correctly, it just doesn't show the icon

  13. #6293
    Quote Originally Posted by Cheze View Post
    right, but with stellar flare untalented and fury of elune talented, the macro still shows a ?

    it casts fury correctly, it just doesn't show the icon
    I completely misread your post. I read both as untalented, my bad. Looking into Balance talents, your row numbers are wrong. Stellar Flare is on the 6th row and Fury of Elune is on the 7th. You were still able to cast Fury of Elune because you were using Twin Moons (6/2). I'm assuming something weird was going on with the Incarnation talent (5/3) which caused the ? icon.

    Also, while Fury of Elune is instant, it is on the GCD, so you can't cast both on the same keypress if both are talented. Whichever is listed first will be the one on the icon.

    Code:
    #showtooltip
    /cast [talent:6/3] Stellar Flare
    /cast [talent:7/2] Fury of Elune
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  14. #6294
    oh haha, I'm dumb

    I wonder why it cast fury at all then, but I spose it should work now

  15. #6295
    Hello I play BFA of course I'm with 2 gathering professions: Herbalism and Mining. I want a macro that switches between tracking herbs and minerals every 4 seconds.

    PLEASE! x)

  16. #6296
    hello i dont know if it is a macro or a weakaura but here goes i play a priest and whenever i am channeling mind control i want it to say in the chat that im currently mind controlling in /say

  17. #6297
    Hiya, I need a macro that will spell lock (warlock) my current target unless I hold down my focus modifier (shift) or it will do it to my mouseover target.

    Thanks!

  18. #6298
    High Overlord redwolfrain's Avatar
    10+ Year Old Account
    Join Date
    Jun 2013
    Location
    Dallas Oregon
    Posts
    122
    Quote Originally Posted by Farfa View Post
    Hiya, I need a macro that will spell lock (warlock) my current target unless I hold down my focus modifier (shift) or it will do it to my mouseover target.

    Thanks!
    @showtooltip Spell Lock
    /cast [target=mouseover,mod:shift] Spell Lock; Spell Lock

  19. #6299
    Quote Originally Posted by Farfa View Post
    Hiya, I need a macro that will spell lock (warlock) my current target unless I hold down my focus modifier (shift) or it will do it to my mouseover target.

    Thanks!
    Quote Originally Posted by redwolfrain View Post
    @showtooltip Spell Lock
    /cast [target=mouseover,mod:shift] Spell Lock; Spell Lock
    Code:
    #showtooltip
    /cast [mod:shift,@mouseover][] Spell Lock
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  20. #6300
    Hello there.

    I'm trying to create a macro that does the following:
    - With mod alt, use the nitro boost belt for engineers
    - If I have a certain talent, then use that talent.
    - Else, just use the nitro boost.

    Code:
    #showtooltip
    /use [mod:alt] 6
    /cast [talent:3/2] Burning Rush
    /use [notalent:3/2] 6
    But it looks like the command "/use" doesn't allow conditionals... is it possible to do this?

    thanks.

Posting Permissions

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