1. #1
    Herald of the Titans Hinalover's Avatar
    15+ Year Old Account
    Join Date
    Sep 2008
    Location
    Virginia
    Posts
    2,765

    Living Bomb macro

    Up until I want to say patch 3.2 or so I was able to use this macro for my Living Bombs:

    #showtooltip Living Bomb
    /cast [@mouseover] Living Bomb; Living Bomb
    What it is supposed to do is if I hover over a mob or their nameplate I am able to cast living bomb. But if I don't hover over the mob it casts living bomb on the mob I am targeting. Now I HAVE to hover over the mob or nameplate to work. I've even tried this variation with no success:

    #showtooltip Living Bomb
    /cast [@mouseover] Living Bomb
    /cast Living Bomb
    This is giving me a no Target error message:

    #showtooltip Living Bomb
    /cast [@mouseover] Living Bomb;
    /cast [@target] Living Bomb
    Is there any suggestions on this?
    Last edited by Hinalover; 2011-03-29 at 11:41 PM.

  2. #2
    Brewmaster dawawe's Avatar
    10+ Year Old Account
    Join Date
    Jul 2009
    Location
    Atl, Ga
    Posts
    1,265
    /cast [@mouseover, harm, exists] Living bomb; Living bomb


    works for my fears

    Quote Originally Posted by Migari View Post
    Try (I´m not great with macro's but it might work, I hope it does!)

    Code:
    #showtooltip
    /cast [@mouseover, exists] Living Bomb; Living Bomb
    I´m not great with macro's but it might work, I hope it does!

    this will work but if you mouseover a friendly target it will give the "You cant attack that target" error.

    mine will cast it on your current target if youre mouseovered (? what?) a friend
    Last edited by dawawe; 2011-03-29 at 11:46 PM.

  3. #3
    Herald of the Titans Hinalover's Avatar
    15+ Year Old Account
    Join Date
    Sep 2008
    Location
    Virginia
    Posts
    2,765
    nope doesn't appear to work

    Edit: nevermind, had a syntax error that last time. I got it now
    Last edited by Hinalover; 2011-03-29 at 11:48 PM.

  4. #4
    Brewmaster dawawe's Avatar
    10+ Year Old Account
    Join Date
    Jul 2009
    Location
    Atl, Ga
    Posts
    1,265
    Quote Originally Posted by Hinalover View Post
    nope doesn't appear to work

    Edit: nevermind, had a syntax error that last time. I got it now
    Hrm........ let me hop on my mage and get back to u in a minute

    Edit: didnt catch your edit in time

  5. #5
    I use this one for all my mouseover abilities, it has always done what you described up top:

    Code:
    #showtooltip Living Bomb
    /cast [target=mouseover,exists][] Living Bomb
    Just logged and tested this with LB on my mage, it definately still works for me!
    Last edited by Lilariel; 2011-03-29 at 11:55 PM.

  6. #6
    Herald of the Titans Hinalover's Avatar
    15+ Year Old Account
    Join Date
    Sep 2008
    Location
    Virginia
    Posts
    2,765
    it works if you hover over. What I was running into wass that I want to cast Living Bomb on the selected target when I'm not hovering over. By adding in the exist part, and adding in the "; Living Bomb" at the end I'm able to do that.

  7. #7
    Deleted
    When making macros like that you need some syntax to make it know if the target exists or not (exists, harm, help, etc.)
    Ex:
    Code:
    #showtooltip
    /cast [target=mouseover, harm] Living Bomb; Living Bomb
    Same with other "target"-commands such as "focus" or "targettarget". With all of theese you need a line to verify the existance of that target (in the example it's 'harm').

    I use this on mainly all my spells as an elem shaman.
    Code:
    #showtooltip
    /cast [harm] Lightning Bolt; Healing Wave
    Or as resto shaman
    Code:
    #showtooltip
    /cast [target=focus, help] Earth Shield;

Posting Permissions

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