Untagged Release [AHK]Sprint Macro

shendlaw

Active member
Joined
Feb 20, 2013
Messages
53
Reaction score
0
Name: AutoHotKey Sprint
Script by: shendlaw
Tutorial:
1. Open sprintahk.exe
2. Open your game where you press space for run.
3. Press F2 for activate first time.
4. Press in middle of mouse(SCROLL) for stop the ahk or start it again.
5. Enjoy

VIDEO: http://youtu.be/agqOfqrvhIY

Press thank button please
 

Attachments

  • sprintahk.rar
    470.9 KB · Views: 1,255
Joined
Feb 8, 2014
Messages
12
Reaction score
0
Pretty simple to just make your own.

Fast Sprint:
Code:
~w & ~3::
	SetKeyDelay, 60
	While (GetKeyState("w","p"))
	{
		Send {SHIFT down}{SHIFT up}
	}
	SetKeyDelay, -1
Return

Bunny hop + sprint
Code:
~w & ~4::
	SetKeyDelay, 60
	Send {SHIFT down}
	While (GetKeyState("w","p"))
	{
		Send {Space down}{Space up}
	}
	SetKeyDelay, -1
	Send {SHIFT up}
Return
 

BePro_

Active member
Joined
Feb 27, 2014
Messages
26
Reaction score
0
can you make it for windows 7 cuz it say to me you need an x86[32-bit] or x64 [64-bit] version of the program so how I get it ?
 

z4z4

Active member
Joined
Jan 20, 2014
Messages
44
Reaction score
0
Please , guys can u give me a real link of this macro i heard about it its fastrun Please someone help me? :(
 
Top