Skip to content

Instantly share code, notes, and snippets.

@xlimit91
Last active April 30, 2019 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xlimit91/13cb4a01ab08f9adf62ba2a29948f5d4 to your computer and use it in GitHub Desktop.
Save xlimit91/13cb4a01ab08f9adf62ba2a29948f5d4 to your computer and use it in GitHub Desktop.
Paste text to silkroad with autoit - projecthax
#RequireAdmin
; www.projecthax.com
;
; Copy text press strg+c
; Paste text press "Pause" Button to silkroad
;
Dim $sKeyToPress = "{PAUSE}" ; you can change this for paste button
HotKeySet($sKeyToPress, "copy_paste")
While 1
Sleep(6)
WEnd
Func copy_paste()
$sClip = ClipGet()
Send($sClip)
EndFunc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment