1. #1
    High Overlord
    10+ Year Old Account
    Join Date
    May 2009
    Location
    Portugal
    Posts
    106

    Living Bomb macro

    I've been trying to make a macro but I it isnt working. Maybe it isn't even possible to do what im looking for but maybe some of you know.

    I am looking for a macro that is (for example) in a bar with the keybing "R" and what i want is that when I press "R" it casts living bomb on my target, but if I press (for example) CTRL and R it casts the living bomb on my focus target. Dunno if this is even possible so some answers would be very nice.
    Thanks.
    Originally Posted by Zarhym (Blue Tracker)

    Q: Will WoW ever get a new weapon type?
    A. Doubtful.
    A #2. Tauren will be able to dual-wield gnomes on a stick.

  2. #2

    Re: Living Bomb macro

    try this. it'll work with shift, but you can do ctrl or alt if you prefer.

    #showtooltip Living Bomb
    /stopcasting
    /cast [modifier:shift, target=focus] Living Bomb
    /cast [nomodifier:shift] Living Bomb

  3. #3

    Re: Living Bomb macro

    Quote Originally Posted by mmoelf
    try this. it'll work with shift, but you can do ctrl or alt if you prefer.

    #showtooltip Living Bomb
    /stopcasting
    /cast [modifier:shift, target=focus] Living Bomb
    /cast [nomodifier:shift] Living Bomb
    And you can combine the last two lines into one:

    /cast [mod:ctrl, target=focus] Living Bomb; Living Bomb

  4. #4
    High Overlord
    10+ Year Old Account
    Join Date
    May 2009
    Location
    Portugal
    Posts
    106

    Re: Living Bomb macro

    Quote Originally Posted by mmoelf
    try this. it'll work with shift, but you can do ctrl or alt if you prefer.

    #showtooltip Living Bomb
    /stopcasting
    /cast [modifier:shift, target=focus] Living Bomb
    /cast [nomodifier:shift] Living Bomb
    ye it works, thanks a lot =D I forgot to put the [nomodifier] part in my macro =(
    Originally Posted by Zarhym (Blue Tracker)

    Q: Will WoW ever get a new weapon type?
    A. Doubtful.
    A #2. Tauren will be able to dual-wield gnomes on a stick.

  5. #5

    Re: Living Bomb macro

    Bind R to a macro with the following content:

    /cast [@target,nomod,harm,nodead] Living Bomb
    /cast [@focus,mod:ctrl,harm,nodead] Living Bomb

    that should do

  6. #6
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040

    Re: Living Bomb macro

    Simpler macro. Will cast on your Focus if any of the 3 modifier keys are pressed (alt, shift, ctrl). Otherwise, casts on your Target.
    Code:
    #showtooltip
    /use [mod, @focus, harm] Living Bomb; [@target, harm] Living Bomb

  7. #7

    Re: Living Bomb macro

    Actually those macros are pretty nice but I'm using other macro for living bomb, maybe someone will find it useful
    Code:
    #showtooltip Living Bomb
    /cast [@mouseover,harm,nodead]Living Bomb; [nodead,harm]Living Bomb
    It works great for trashes where you simply mouseover, spam, and watch the blow


    Quote Originally Posted by Lich King
    "You speak of justice? Of cowardice? I will show you the justice of the grave... and the true meaning of fear."

Posting Permissions

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