Skip to content

Instantly share code, notes, and snippets.

@kitchain
Created January 10, 2016 11:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kitchain/8518ae0166369df67fcd to your computer and use it in GitHub Desktop.
Save kitchain/8518ae0166369df67fcd to your computer and use it in GitHub Desktop.
Invoker
#NoEnv
#UseHook
#InstallKeybdHook
#InstallMouseHook
#SingleInstance, force
#Persistent
Gui, +LastFound +AlwaysOnTop +E0x08000000 +ToolWindow +Caption
Gui, Add, Button, x2 y-1 w150 h20 +Left g1, [1] QQQ 20 100 Cold Snap
Gui, Add, Button, x2 y19 w150 h20 +Left g2, [2] QQW 35 200 Ghost Walk
Gui, Add, Button, x2 y39 w150 h20 +Left g3, [3] QQE 25 175 Ice Wall
Gui, Add, Button, x2 y59 w150 h20 +Left g4, [4] WWW 30 125 EMP
Gui, Add, Button, x2 y79 w150 h20 +Left g5, [5] WWQ 30 150 Tornado
Gui, Add, Button, x152 y-1 w170 h20 +Left g6, [6] WWE 15 45 Alacrity
Gui, Add, Button, x152 y19 w170 h20 +Left g7, [7] EEE 25 175 Sun Strike
Gui, Add, Button, x152 y39 w170 h20 +Left g8, [8] EEQ 30 75 Forge Spirit
Gui, Add, Button, x152 y59 w170 h20 +Left g9, [9] EEW 55 200 Chaos Meteor
Gui, Add, Button, x152 y79 w170 h20 +Left g0, [0] QWE 40 200 Deafening Blast
Gui, Show, x320 y905 h104 w329, Invoker
Return
GuiClose:
ExitApp
;==================
;==================
~1::
SendInput, qqq
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
~2::
SendInput, qqw
Sleep, 250
SendInput, r
Sleep, 250
SendInput, dd
return
~3::
SendInput, qqe
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
return
~4::
SendInput, www
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
~5::
SendInput, wwq
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
~6::
SendInput, wwe
Sleep, 250
SendInput, r
Sleep, 250
SendInput, dd
return
~7::
SendInput, eee
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
~8::
SendInput, eeq
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
return
~9::
SendInput, eew
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
~0::
SendInput, qwe
Sleep, 250
SendInput, r
Sleep, 250
SendInput, d
Sleep, 250
MouseClick
return
;==================
;==================
1:
SendInput, qqq
SendInput, r
return
2:
SendInput, qqw
SendInput, r
return
3:
SendInput, qqe
SendInput, r
return
4:
SendInput, www
SendInput, r
return
5:
SendInput, wwq
SendInput, r
return
6:
SendInput, wwe
SendInput, r
return
7:
SendInput, eee
SendInput, r
return
8:
SendInput, eeq
SendInput, r
return
9:
SendInput, eew
SendInput, r
return
0:
SendInput, qwe
SendInput, r
return
~d::
SendInput, d
MouseClick
return
~f::
SendInput, f
MouseClick
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment