Close
Showing results 1 to 10 of 12

Threaded View

  1. #4

    Default

    Quote Originally Posted by Khatovar View Post
    Do you have Click-to-Move enabled on the slave? Interact with Target requires 3 things to work - 1. Slave needs to assist to aquire a target 2. Interact with Target Keybind 3. Click to Move in order to move to the target for interaction. CtM is located under the Mouse settings in the game menu.
    1.
    /click JambaFTLAssist

    Code:
    // simple macro that is bound via AHK
    ~LButton::
    ControlSend,, {NumPadAdd}, ahk_id %idClone%
    Sleep, 1100
    ControlSend,, {NumPadAdd}, ahk_id %idClone%
    Return
    
    &
    
    ~NumPadAdd::
    KeyWait, NumPadAdd, D
    ControlSend,, {NumPadAdd}, ahk_id %idClone%
    Return
    Which allows me to either select a target (keypad +) or select Master target (left click on target)

    2. keybind is set to keypad / for both Master & Slave for interaction. When I press / in Master it will interact. When I press / in Slave it will interact. Though the press of / in Master does not fire anything for Slave's use of /.

    Code:
    ~NumPadDiv::
    KeyWait, NumPadDiv, D
    ControlSend,, {NumPadDiv}, ahk_id %idClone%
    Return
    Checked both Master & Slave and both do have their interact on the correct bind and option.

    3. Click to move is enabled for both Master and Slave. I have been playing with movements using Keypad+mouse for Master then just Keypad for Slave.

    One thing I am trying to figure as I feel it should still be within Blizzard (WoW) rules. Is finding some way to interact via W A S D.

    So far only have a broken function for now with:

    Code:
    ~a::
    While GetKeyState("a","P") = 1
       {
          If GetKeyState("a","P") = 1 ;
          {
             ControlSend,, {a}, ahk_id %idClone%
             Sleep, 50
          }
       }
    return
    The key will only fire if being interacted upon as in being pressed. The other If was added for a combined conditional. That I am still debating on. Which is to look at a few things like if key and numlock is pressed. I just used If GetKeyState("a","P") as a placeholder to a later numlock check.

    Only just started boxing a few days ago. Its fun but a challenge. And would rather my Slave follow a directive of 2 types of movement. W A S D and at times /follow.

    Supplied my AHK just for the sake if someone saw an error in my work. Though keybinds are mapped correctly within WoW. And mouse is indeed enabled for the Slave. so I am a little puzzled.
    Last edited by Khatovar : 09-14-2012 at 12:27 AM

Posting Rules

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