1. #5661
    Quote Originally Posted by shanthi View Post
    This should work:

    Code:
    #showtooltip
    /focus [@mouseover,mod:shift]
    /stopmacro [mod:shift]
    /cast Flare
    Sexy. Thank you so much

  2. #5662
    Deleted
    So, a question ... Now I have macros like:

    Code:
    #showtooltip Refreshing Mist
    /cast [mouseover, exists] Refreshing Mist
    /cast Refreshing Mist
    and

    Code:
    #showtooltip Wallender Nebel
    /target [mouseover]
    /castsequence reset = target Beruhigender Nebel, null
    /cast [channeling] Wallender Nebel; Beruhigender Nebel
    e.g. created.

    For example, I move my mouse in the party frame over the MT and press the hotkey for my Soothing Mist [SM]. Now, the tank ISNT targeted - nothing happens.

    I have to select the tank with the left mouse button and then I can cast SM or I move my mouse in the screen (where he is jumping around with character] over him - it works. But the disadvantage is that players move just back and forth across the screen and everytime my mouse "touches" a player the target changes.

    I realize that I should leave my mouse pointer in the Party Frame / RAIDframe.
    However, it does not work with healing in frames via mouseover in frames.

    Does anyone know why? It is an Macro-Issue. I deactivated all and tried it without... doesnt work

  3. #5663
    The mouseover-part is wrong.

    There are two ways to correct it:

    1. /cast [target=mouseover, exists] SPELL

    or

    2- /cast [@mouseover, exists, help, nodead] [@focus, exists, nodead, help] [] SPELL

    This will cast the spell on your mouseover target if there is one, it's friendly and not dead. If there's no mouseover target, the spell will cast on your focus target (same premises as above). No focus, casts on your target. None of the above and it casts on yourself. Slightly more complicated but I find this very useful in certain situations (for instance during movement, where I physically can't mouseover due to using the mouse for movement)

    So your first macro should work with:

    Code:
    #showtooltip Refreshing Mist
    /cast [target=mouseover,exists] Refreshing Mist
    /cast Refreshing Mist


    For the second macro try

    Code:
    #showtooltip Wallender Nebel
    /target [@mouseover]
    /castsequence reset=target Beruhigender Nebel, null
    /cast [channeling] Wallender Nebel; Beruhigender Nebel
    Somehow you got spaces inbetween the code, they dont belong there.

    If it doesnt work properly, try this below:

    Code:
    #showtooltip Wallender Nebel
    /castsequence [@mouseover, harm, nodead][]reset=target Beruhigender Nebel, null
    /cast [channeling] Wallender Nebel; Beruhigender Nebel

  4. #5664
    Deleted
    Thanks a lot. The macros work.
    I figuered out the problem.
    WoW doesnt recognize the clicking of my mouse if it is on a raid-frame-target. does anyone know why?

  5. #5665
    Need help with a macro.

    If im specced into ravager i want the macro to caster ravager, if im specced into something else on that tier line i want it to cast Intervene, i got it somewhat to work but the icon didnt change, just became a questionmark.
    Quote Originally Posted by Ulfric Trumpcloak View Post
    People on this site hate everything. Keep that in mind.

  6. #5666
    Pandaren Monk shanthi's Avatar
    10+ Year Old Account
    Join Date
    Oct 2011
    Location
    California
    Posts
    1,775
    Quote Originally Posted by Sunnydee View Post
    Need help with a macro.

    If im specced into ravager i want the macro to caster ravager, if im specced into something else on that tier line i want it to cast Intervene, i got it somewhat to work but the icon didnt change, just became a questionmark.
    You can use the same conditional syntax in the #showtooltip line as elsewhere in the macro. So:

    Code:
    #showtooltip [talent:7/2] Ravager;Intervene
    /cast [talent:7/2] Ravager;Intervene
    That is not dead which can eternal lie.
    And with strange aeons even death may die.

  7. #5667
    Thank you!
    Quote Originally Posted by Ulfric Trumpcloak View Post
    People on this site hate everything. Keep that in mind.

  8. #5668
    Another thing to in the persude of perfection:

    http://imgur.com/3bxZGtA

    I use blizzards standard minimap. Any way to re-size all the different ADDON icons? Cross-assist and so on really usefull to be able to open fast so like to keep them there.
    Last edited by Djuntas; 2015-11-24 at 06:27 PM.
    Youtube channel: https://www.youtube.com/c/djuntas ARPG - RTS - MMO

  9. #5669
    Aaargh my eyes xS please download 'MinimapButtonBag'

  10. #5670
    Quote Originally Posted by Platinengel View Post
    Aaargh my eyes xS please download 'MinimapButtonBag'
    <3 ! Perfect, oh these addons lovely.

    Now to consider bag addon, minimap addon and I think Im just about had enough
    Youtube channel: https://www.youtube.com/c/djuntas ARPG - RTS - MMO

  11. #5671

  12. #5672
    Deleted
    I thought it would be easy enough without but now with doing groups runs with different people having already done different Mythic Dungeons a Chat announce would be nice to see which Ids are free.

    Ive seen that there were Macros for Lockouts for world Bosses but I dont know how they could be reworked for this. Anyone who can do it?

  13. #5673

    Lightbulb

    Can't try it right now but I will tomorrow.

    This Macro should shoutout the latest Instance Lockout you got.
    With a little tweaking it should be fairly possible to add all lockouts to it, since the (1) referes to the first Instance in your ID-List. Should be possible to add i.e. (1-7) someway.

    /run SendChatMessage(Instance Lockout for "..GetSavedInstanceChatLink(1).." pst","CHANNEL",nil,2)
    Alternatively there is an addon which let you check your current lockouts from all of your characters easier.

    http://www.curse.com/addons/wow/saved_instances
    Last edited by Platinengel; 2015-11-26 at 02:41 AM.

  14. #5674
    Searching this thread is a fricken nightmare. Why would this not work?

    #showtooltip
    /cast [@boss2 exists] Reckoning
    /tm [@boss2 exists] 8

  15. #5675
    Deleted
    Thx Platin, I fear the entire thing might get to long for one normal macro. Since it shouldn't just announce any latest lockout but all the mythic dungeon ones. Meaning id probably have to use an addon anyway.

    Quote Originally Posted by Bobblefet View Post
    Searching this thread is a fricken nightmare. Why would this not work?
    Missing a comma in each line:

    #showtooltip
    /cast [@boss2,exists]Reckoning
    /tm [@boss2,exists]8

  16. #5676
    Quote Originally Posted by MelkorX View Post
    Thx Platin, I fear the entire thing might get to long for one normal macro. Since it shouldn't just announce any latest lockout but all the mythic dungeon ones. Meaning id probably have to use an addon anyway.
    Thats possible. Depends on what you do with your char every week. If you JUST run Mythics it could be possible. But if you do raids, heroics and old farmraids it gets difficult.



    Missing a comma in each line:

    #showtooltip
    /cast [@boss2,exists]Reckoning
    /tm [@boss2,exists]8
    ^this.

  17. #5677
    Quote Originally Posted by MelkorX View Post
    Thx Platin, I fear the entire thing might get to long for one normal macro. Since it shouldn't just announce any latest lockout but all the mythic dungeon ones. Meaning id probably have to use an addon anyway.


    Missing a comma in each line:

    #showtooltip
    /cast [@boss2,exists]Reckoning
    /tm [@boss2,exists]8
    Oooh. THanks. I thought a space was needed after the ] as well :P

  18. #5678
    Deleted
    Quote Originally Posted by Bobblefet View Post
    Oooh. THanks. I thought a space was needed after the ] as well :P
    As long as you have one before the opening bracket, you're good to go.

  19. #5679
    What I'm curious about at the momen is.. are there chat commands for switching profiles on DBM and Quartz3 ?
    I use ElvUi as a base and love the DualSpec Profile feature. The Interface looks quiet differently for my dps and heal setup. So I had to switch around dbm and quartz as well. So Can I somehow fiddle them into a macro so I dont only switch specs but also switch profiles on those addons ?

    on the side. What channel are addons writing to? ie DBM warnings or pre-Pot / Pull information from details! so that I could make an exclusive TAB for it. Does anyone know?
    Thanks for the Help

  20. #5680
    Deleted
    Wanted to make macro for two professions to create each daily mats with 1button, but this creates only 1st one.
    Unless i open 2nd profession window, and then close, macro creates 2nd item, but it ruins whole idea.
    Tried some variations, thoughts?

    /click TradeSkillCreateButton
    /use war paints
    /click StaticPopup1Button1
    /use gearspring parts
    /click StaticPopup1Button1

    tried this too

    /click TradeSkillCreateButton
    /use war paints
    /click StaticPopup1Button1
    /click TradeSkillCreateButton
    /use gearspring parts
    /click StaticPopup1Button1

Posting Permissions

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