Make a G15 Macro or whatever you like. It should just press the foward and Space Key at the same time. Here 2 Examples Included.
G15 Macro:
v W
v Space
^ W
^ Space
You can also use this code in Auto-It to do the same thing:
HotKeySet(”{PGDN}”, “Jump”)
HotKeySet(”{PGUP}”, “Terminate”)while 1
sleep(100)
WEndFunc Jump()
send(”{w down}”)
send(”{SPACE}”)
send(”{w up}”)
EndFuncFunc Terminate()
EndFunc











{ 1 comment… read it below or add one }
Well written article.