Close
Showing results 1 to 2 of 2
  1. #1

    Default Auto hotkey script help

    I am new to this website, fairly new to multi boxing. right now i am us cing a good ahk script, no complaints except for the movement. I am using an auto follow situation but when my target moves around obvioulsy the alt wont be able to target it since he doesnt automatically turn. I was on youtube a little bit ago and i saw a guy using a normal script that allowed him to move both characters differently. By using the WASD keys he could move his main character and just his main character, by using the arrow keys he was able to move his alt but not his main at the same time. It is easy to see how useful this can be. I am new to code, hell i havent written a piece of code my whole life, i am looking for a script like the one i just mentioned. please help

  2. #2
    Member luxlunae's Avatar
    Join Date
    Aug 2008
    Location
    Bay Area, CA
    Posts
    1431
    Blog Entries
    37

    Default

    My old script had this section in it, you are probably using the same clonespush basis so this should work for you. Copy paste it into the file you are using.

    I no longer use AHK, but happen to still have the file:

    Code:
    ; *** Move clones ***
    Up::ClonesPush("{Up down}")
    Up Up::ClonesPush("{Up up}")
    Down::ClonesPush("{Down down}")
    Down Up::ClonesPush("{Down up}")
    Left::ClonesPush("{Left down}")
    Left Up::ClonesPush("{Left up}")
    Right::ClonesPush("{Right down}")
    Right Up::ClonesPush("{Right up}")
    If your slave (any character that you aren't driving from is generally called the slave) is a melee capable class (such as a paladin or shaman), you can also turn on click to move, and then keybind "interact with target" in game as a good way to turn them to face things.

Posting Rules

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