I'm looking for a script where when space is pressed, it can press space faster than it does in something like this:
Code:
*~$Space::
Sleep 200
Loop
{
GetKeyState, SpaceState, Space, P
If SpaceState = U
break
Sleep 1
Send, {Blind}{Space}
}
Return
The purpose of this is a "bunny hop" script for Counter-Strike: Source. It jumps rapidly, and when combined with strafing that I can easily do, it allows the player to move faster than he would if he simply walked. This works decently, but many times I'm finding it not efficient enough. If anyone could make one that would do so faster, or point me in the right direction to make my own, I'd appreciate it.
If it's not possible to do a loop faster than what I already have, just delete the thread. I don't know much about programming, so bear with me.[/code]