Close
Showing results 1 to 4 of 4

Hybrid View

  1. #1

    Default

    1. I'm gonna take look at the clonepush once I get home. A sample script I found for clonepush did not work.
    2. Good thinking with the ~Lbutton. I'm definitely going to use that.
    3. Is there a reason why you use KeyWait 5 instead of KeyWait, 5, D?
    Last edited by aasi888 : 09-15-2012 at 10:02 AM

  2. #2

    Default

    Quote Originally Posted by aasi888 View Post
    1. I'm gonna take look at the clonepush once I get home. A sample script I found for clonepush did not work.
    2. Good thinking with the ~Lbutton. I'm definitely going to use that.
    3. Is there a reason why you use KeyWait 5 instead of KeyWait, 5, D?
    Noticed that myself. Most of this code was from previous files I found online. I only edited and added some things in. Fixing the mentioned code and codes to be reflective of the others.

    Here are the WoW movement keys I made:
    Code:
    ; -------------------------------
    ; Movement Keys
    ; -------------------------------
    ~w::
    While GetKeyState("w","P") = 1
       {
          ControlSend,, {w down}, ahk_id %idClone%
       }
    If GetKeyState("w","P") = 0
       {
          ControlSend,, {w up}, ahk_id %idClone%
       }
    return
    
    ~a::
    While GetKeyState("a","P") = 1
       {
          ControlSend,, {a down}, ahk_id %idClone%
       }
    If GetKeyState("a","P") = 0
       {
          ControlSend,, {a up}, ahk_id %idClone%
       }
    return
    
    ~s::
    While GetKeyState("s","P") = 1
       {
          ControlSend,, {s down}, ahk_id %idClone%
       }
    If GetKeyState("s","P") = 0
       {
          ControlSend,, {s up}, ahk_id %idClone%
       }
    return
    
    ~d::
    While GetKeyState("d","P") = 1
       {
          ControlSend,, {d down}, ahk_id %idClone%
       }
    If GetKeyState("d","P") = 0
       {
          ControlSend,, {d up}, ahk_id %idClone%
       }
    return
    
    ~q::
    While GetKeyState("q","P") = 1
       {
          ControlSend,, {q down}, ahk_id %idClone%
       }
    If GetKeyState("q","P") = 0
       {
          ControlSend,, {q up}, ahk_id %idClone%
       }
    return
    
    ~e::
    While GetKeyState("e","P") = 1
       {
          ControlSend,, {e down}, ahk_id %idClone%
       }
    If GetKeyState("e","P") = 0
       {
          ControlSend,, {e up}, ahk_id %idClone%
       }
    return
    Last edited by Darkreign11 : 09-20-2012 at 11:57 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
  •