Steam

Steam

評價次數不足
Auto-Walk in Any Game
由 Jack Schitt 發表
This is an AutoHotKey script that causes W to be held down constantly which in turn causes us to move forward without having to hold the W key down in most games. It should work for any game.
   
獎勵
加入最愛
已加入最愛
移除最愛
Step 1: Download & Install AutoHotKey
Click on the link below. Click the "Download" button and install AutoHotKey:
https://www.autohotkey.com/
Step 2: Install the Script
1. Click on AutoHotKey's Icon to launch the AHK Dashboard and click on "New Script":



2. Name it whatever you want and click the "Edit" button:



3. Copy/Paste this code and save the file:
Del::Pause W_WheelDown: { SetKeyDelay, -1 if( scrolledWheelDown ) Send, {Blind}{w DownTemp} else { SetTimer, W_WheelDown, OFF Send, {Blind}{w UP} } return } f2:: { scrolledWheelDown := ( scrolledWheelDown ? 0 : 1 ) SetTimer, W_WheelDown, 40 return }
Step 3: Run the Script
To run the script Right-Click on AutoHotKey's Icon and select it, it will be named whatever you named it in step 2 above. This is all you need to do to run the script. Play your game and enjoy not having to hold the W key to move forward all the time!

Controls:
F2: AutoWalk / Run / Fly Forward (the script constantly sends the W key as if it was pressed)
Delete: Pauses the script.

You can of course edit the script to be whatever key you want it to be. If you cause an error you can always CTRL+Z to undo or come back here and copy the code again.