You perform a normal walljump (Forward+Jump) with F1.
You perform a special walljump (Jump+Forward) with F2.
You can turn the script on and off by pressing Pause.
To use it, you must save the code and compile it with AutoIt.
Edit: Remember, name the compiled .exe something that isn't obvious wplayer2.exe is a good choice, for example.
You perform a special walljump (Jump+Forward) with F2.
You can turn the script on and off by pressing Pause.
Code:
;--Title: Walljump Time
;--Author: Flaska
; Description:
; Performs perfect walljumps.
HotKeySet("{F1}", "wjump")
HotKeySet("{F2}", "swjump")
HotKeySet("{PAUSE}", "unbind")
func wjump()
HotKeySet("{F1}")
Send("{UP DOWN}")
Send("{SPACE}")
Send("{UP UP}")
Sleep(300)
HotKeySet("{F1}", "wjump")
idle()
EndFunc;:: wjump()
func swjump()
HotKeySet("{F2}")
Send("{SPACE}")
Sleep(250)
Send("{UP}")
Sleep(600)
HotKeySet("{F2}", "swjump")
idle()
EndFunc;:: swjump()
Func idle()
while 1
Sleep(1000)
WEnd
EndFunc;:: idle()
Func unbind()
HotKeySet("{F1}")
HotKeySet("{F2}")
HotKeySet("{PAUSE}", "rebind")
idle()
EndFunc;:: unbind
Func rebind()
HotKeySet("{F1}", "wjump")
HotKeySet("{F2}", "swjump")
HotKeySet("{PAUSE}", "unbind")
idle()
EndFunc;:: rebind
idle()
Edit: Remember, name the compiled .exe something that isn't obvious wplayer2.exe is a good choice, for example.