Originally Posted by
KuyYai
Hi. How can i set delay for storing? Have problem in storing function. They have delay when storing like in the video.
https://streamable.com/bsb0at
adjust the sleep from line 279:
Code:
; 3) Grid slot (1–50) + left‑click
IniRead, gx, %ConfigINI%, GridPos, gridposX%AutoIndex%, 0
IniRead, gy, %ConfigINI%, GridPos, gridposY%AutoIndex%, 0
if (gx && gy) {
MouseMove, %gx%, %gy%, 10
Sleep, 200
Click, Left
Sleep, 200
}
AutoIndex++
adjust both sleeps to a higher value and test again. Technically based on your video, its only the last sleep after Click, Left that seems to be the issue.