Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KaizerFox committed Sep 16, 2021
1 parent 7299eb9 commit a7dde30
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions crosslink.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

messages =
(
:16_unknown
:16_poor
:16_unsatisfactory
)

StringSplit, messlist, messages, `n,`r

while (true)
{
sleep 1500
Random, Pickthis, 1, %messlist0%
sleep 100
thismess := messlist%PickThis%
sleep 50
SendInput {Raw}+
sleep 50
SendInput %thismess%
sleep 50
SendInput {Enter}
sleep 500
}

Pause::Pause

0 comments on commit a7dde30

Please sign in to comment.