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:58:24 up 303 days, 9:52, 457 users, load average: 8.23, 4.77, 3.42

Name:

Message:

Do you want to delete this note?



Date: August 21, 2024 - 10:02 PM - 113.210.105.125
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 = 780,380,820,380,850,380,890,380,920,380,950,380,780,420,820,420,850,420,890,420,920,420,950,420,780,450,820,450,850,450,890,450,920,450,950,450,780,490,820,490,850,490,890,490,920,490,950,490,780,530,820,530,850,530,890,530,920,530,950,530,780,560,820,560,850,560,890,560,920,560,950,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: