Annyone have a macro to walljump for use with innerspace, or can make one?
+Rep if u do ^^
Annyone have a macro to walljump for use with innerspace, or can make one?
+Rep if u do ^^
Here's a walljumping script for Autoit
; Title: All-Jumps
; Author: iHack
; Description: Performs different jumps.
#include <GUIConstants.au3>
HotKeySet("{F1}", "jump")
HotKeySet("{PAUSE}", "unbind")
GUICreate("Jumper", 200, 220)
$checkCN = guictrlcreatelabel("Press Pause to bind keys.", 40, 50)
$checkCN = guictrlcreatelabel("Press F1 to jump.", 60, 70)
guictrlsetbkcolor(0xff0000, 0x9966CC)
guictrlcreatelabel("To close go down to the", 40, 120)
guictrlcreatelabel("right on your system tray", 40, 140)
guictrlcreatelabel("and right click the icon", 45, 160)
guictrlcreatelabel("that you saw at first when", 40, 180)
guictrlcreatelabel("opened the jumper.", 55, 200)
GUISetState ()
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
Select
Case $Msg = $GUI_EVENT_CLOSE
MsgBox(0, "Exit", "Good Bye!")
Exit
endselect
func jump() ; normal jump
HotKeySet("{F1}")
Send("{W DOWN}")
Send("{SPACE}")
Send("{W UP}")
Sleep(300)
HotKeySet("{F1}", "jump")
idle()
EndFunc
Func idle() ; idle, do nothing
while 1
Sleep(1000)
WEnd
EndFunc
Func unbind() ; unbind keys
HotKeySet("{F1}")
HotKeySet("{PAUSE}", "rebind")
idle()
EndFunc
Func rebind() ; rebind the keys
HotKeySet("{F1}", "jump")
HotKeySet("{PAUSE}", "unbind")
idle()
EndFunc
idle()
Last edited by Phygar; 12-05-2007 at 06:12 AM.