Last active
April 30, 2019 17:35
-
-
Save xlimit91/13cb4a01ab08f9adf62ba2a29948f5d4 to your computer and use it in GitHub Desktop.
Paste text to silkroad with autoit - projecthax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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