Just log in with your secure internet shell to change this file!

me: yea.. added a few words already..
me update: actually..its quite a lot now..do you like it?

You may want to read: How to ~tilde: Getting Started for help.

me: ok..sure

Check out your new blog!

me: nice.. thank you..

04:57:54 up 303 days, 9:51, 457 users, load average: 4.82, 3.86, 3.09

Name:

Message:

Do you want to delete this note?



Date: August 21, 2024 - 04:28 PM - 155.94.250.103
xev wrote:

sleep 5000
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

; Define the coordinates
CoordList = 770,380,810,380,840,380,880,380,910,380,940,380,770,420,810,420,840,420,880,420,910,420,940,420,770,450,810,450,840,450,880,450,910,450,940,450,770,490,810,490,840,490,880,490,910,490,940,490,770,530,810,530,840,530,880,530,910,530,940,530,770,560,810,560,840,560,880,560,910,560,940,560

isRunning := 1

; Auto-start the clicking process after 5 seconds
ToolTip, Clicking will start in 5 seconds...
SetTimer, RemoveToolTip, -5000
SetTimer, StartClicking, -5000

StartClicking:
SetTimer, ClickLoop, 10
ToolTip, Clicking started
SetTimer, RemoveToolTip, -1000
return

Numpad0::
isRunning := 0
SetTimer, ClickLoop, Off
ToolTip, Clicking stopped
SetTimer, RemoveToolTip, -1000
return

ClickLoop:
Loop, Parse, CoordList, `,
{
if (!isRunning) {
return
}
if (A_Index & 1) {
x := A_LoopField
} else {
y := A_LoopField
Loop, 2000 {
if (!isRunning) {
return
}
sleep 10
Click, right, %x%, %y%
}
}
}
return

RemoveToolTip:
ToolTip
return

^!r::Reload ; Ctrl+Alt+R to reload the script
^!q::ExitApp ; Ctrl+Alt+Q to exit the script




Password: