Skip to content

Instantly share code, notes, and snippets.

@JarvisPrestidge
Last active August 29, 2015 14:20
Show Gist options
  • Save JarvisPrestidge/5bbcb021166c1eb7e552 to your computer and use it in GitHub Desktop.
Save JarvisPrestidge/5bbcb021166c1eb7e552 to your computer and use it in GitHub Desktop.
AutoHotKey script for League of Legends to help me play with a broken wrist ^^
; Recreating the league of legends script I made a couple of years back
; Jarvis Prestidge: Simple script to help turn space into a modifier and send
; "ss" to chat & missing ping when <`> is pressed, while in League of Legends.
#IfWinActive ahk_class RiotWindowClass
; Turns space into the left ctrl modifier
~Space::Ctrl
; Sending "ss care" to chat
`::
send, {Enter}
sleep, 15
send, ss
sleep, 15
send, {Enter}
sleep, 15
send, n
Return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment