Close
Showing results 1 to 5 of 5

Thread: Macro help ;-)

  1. #1

    Default Macro help ;-)

    Last time I tried to explain what I need, but meaby I do it wrong. So here what I need:

    /follow Test
    /assist Test
    ----------------------- - in this line I need to active any key, for example down arrow, to stop following my character
    /cast Wrath

    how to do that?

  2. #2

    Default

    don'T know if I understood your problem correct...

    ..but if you want an option to stop-following with a macro (like moving left) their isn't one.
    The only thing I could imagine is to use an action which breaks follow (like a channeld spell), but even if doing so, you have the problem, that you can't use two gcd-casts in one macro.

    What you theorticaly could do, is whenever you change a target, use the item which breaks follow, like in this macro:

    Code:
    /follow Test
    /assist Test
    /castsequence reset=target Mind Flay,N
    /cast Smite
    ..but first, I think this isn't realy usefull and another Problem would be to find a spell you could use...
    Last edited by olipcs : 08-25-2009 at 08:46 AM
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  3. #3

    Default

    ..on another thought, if you use Hotkeynet (or IS) as your broadcasting system an you could live with a seperate follow key, you could also do this like the following:

    I assume the following scenario:

    1. you have '/follow Test' bound to 'f', which you broadcast to your Toons
    2. you have your attack
    Code:
    /assist Test
    /cast Wrath
    bound to '2'

    know, your Hotkey for 'F' would look like this:
    Code:
    <Hotkey f>
        <SetVar following true>
        <Sendlabel w1,w2,w3,w4,w5>
              <Key f>
    this simply would broadcast 'f' to the labels defined by w1,... and in addition set the variable 'following' to true.

    In the HKN-definition of '2' you know simply check, if the variable 'following' is true, if so you broadcast a 'step back'(down) which will lead to your toons not following. If 'following' isn't true, than '2' was pressed before, and should be broadcasted.

    This could be done by the follwoing HKN-Code:
    Code:
    <Hotkey 2>
       <If following is true>
           <SetVar following false>
           <Sendlabel w1,w2,w3,w4,w5>
               <Key down>
       <Else>
           <Sendlabel w1,w2,w3,w4,w5>
               <Key 2>
    With this setup, yout toons would, if they are following (and you used 'f' to make them follow) step a step back with the first press of '2' and cast Wrath with the next presses of '2' until you order your toons to follow again with 'f'.
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  4. #4

    Default

    similar to my solution but I am searching easier way to do that, but if this is only possible...

    Thank for help

  5. #5

    Default

    I just have F bound as a formation key so when I am ready to throw down I just hit F and all of my slaves move, thus breaking follow.
    "My dogs could roll heroics with how a lot of you play."
    - Fursphere 2010




Posting Rules

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