1. #1
    Field Marshal Finalflo's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Somewhere in Cataclysm
    Posts
    57

    Maccro Haunt Warlock

    Hy,

    I'm a noob in Maccro and I would like some advice.

    Lets guess that in a battle I have 2 target, the boss and an add like for putricide.

    I would like a maccro that switch from the add to the boss, cast haunt and then switch back to the add.

    I tried a /tar focus /cast /targetlastarget but it's not working.

    Thx


  2. #2

    Re: Maccro Haunt Warlock

    set putricide as your focus (target him and type /focus) and use this macro:

    /cast [@focus] Haunt

  3. #3
    Field Marshal Finalflo's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Somewhere in Cataclysm
    Posts
    57

    Re: Maccro Haunt Warlock

    Thx for the answer but I would like to know if there is an other possibility ?

    First I have to put the boss in focus so that's a frame more on my screen

    Then it's not working on trash. I have to put trash in focus. A little bit annoying.

    And last I may forget to put the boss in focus before the fight so I loose time during the fight.

    Thx


  4. #4

    Re: Maccro Haunt Warlock

    There are few options,
    mouseover macro:
    Code:
    /cast [@mouseover,harm,nodead][] Haunt
    In this scenario you keep add targeted, hover your mouse over boss and hit the button.

    focus macro (probably the the best):
    Code:
    /cast [@focus,harm,nodead][] Haunt
    just /focus the boss and there you are (you can use HideBlizzard addon to get rid of focus frame if you don't need it)

    targetlasttarget (most non deterministic, can cause trouble)
    Code:
    /target <boss_name>
    /cast Haunt
    /targetlasttarget


    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."

  5. #5
    Field Marshal Finalflo's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Somewhere in Cataclysm
    Posts
    57

    Re: Maccro Haunt Warlock

    Quote Originally Posted by Mordret
    focus macro (probably the the best):
    Code:
    /cast [@focus,harm,nodead]&#91;] Haunt
    just /focus the boss and there you are (you can use HideBlizzard addon to get rid of focus frame if you don't need it)
    I just have a question:

    Will this solution cast haunt on my target if I don't have the /focus set up ? For trash for exemple.


  6. #6
    Field Marshal Finalflo's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Somewhere in Cataclysm
    Posts
    57

    Re: Maccro Haunt Warlock

    just try and it's working great.

    Thx


  7. #7

    Re: Maccro Haunt Warlock

    Quote Originally Posted by Finalflo
    I just have a question:

    Will this solution cast haunt on my target if I don't have the /focus set up ? For trash for exemple.
    Yes it will, you can always try
    Macro Explain
    it will go with something like this:
    If the unit saved as your focus target is an enemy and is not dead then:
    Cast Haunt on the unit saved as your focus target

    Otherwise:
    Cast Haunt on the currently targeted unit
    It's very good to understand the idea of some macros, and it also spots typos


    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."

  8. #8

    Re: Maccro Haunt Warlock

    Quote Originally Posted by Mordret
    Yes it will, you can always try
    Macro Explain
    it will go with something like this:It's very good to understand the idea of some macros, and it also spots typos
    Doesn't like my mount macro much.

    Code:
    #show Dreadsteed
    /run if IsMounted() then Dismount() return end local m if not IsFlyableArea() or (GetWintergraspWaitTime()==nil and GetZoneText()=="Wintergrasp") then m=(70) else m=(111) end if IsSwimming() then m=(71) end CallCompanion("MOUNT",m)
    Summons Rivendare's Charger if not in a flyable zone or is in wintergrasp during a battle or bulk of dalaran.
    Summons Violet Proto-Drake if flyable, and Sea Turtle if swimming.

    Then again I suppose that is a bit much to expect from it.
    Quote Originally Posted by DeadmanWalking View Post
    Your forgot to include the part where we blame casuals for everything because blizzard is catering to casuals when casuals got jack squat for new content the entire expansion, like new dungeons and scenarios.
    Quote Originally Posted by Reinaerd View Post
    T'is good to see there are still people valiantly putting the "Ass" in assumption.

  9. #9

    Re: Maccro Haunt Warlock

    Quote Originally Posted by ComputerNerd
    Doesn't like my mount macro much.

    Code:
    #show Dreadsteed
    /run if IsMounted() then Dismount() return end local m if not IsFlyableArea() or (GetWintergraspWaitTime()==nil and GetZoneText()=="Wintergrasp") then m=(70) else m=(111) end if IsSwimming() then m=(71) end CallCompanion("MOUNT",m)
    Summons Rivendare's Charger if not in a flyable zone or is in wintergrasp during a battle or bulk of dalaran.
    Summons Violet Proto-Drake if flyable, and Sea Turtle if swimming.

    Then again I suppose that is a bit much to expect from it.
    Of course, it doesn't like scripts very much :P


    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
  •