|
Just Google Auto Clicker by Shocker, that's the one i'm currently using. It's bundled as a single exe file, along with some icon files. I can use Kratronic Mouse and key converter, but i'm afraid it might show the same results, and from what i experienced, a random autoclicker with true random intervals should rock for some uses i believe.
I tried asking in AutoIt forums, and i got this code from InunoTaishou:
; Set the End key to call the RandomClick function
HotKeySet("{End}", "_RandomClick")
; Maximum number of clicks and the maximum delay between each click
Global $maxClicks = 10, $maxDelay = 500
; Infinite while loop that prevents the script from closing. Putting a slight delay so the script doesn't eat up CPU.
While 1
Sleep(100)
WEnd
; The function.
Func _RandomClick()
; For loop. It will do everything after line 15 and before line 18 a Random number of times (Random(0, Random(0, $maxClicks))
For $i = 0 To Random(0, Random(0, $maxClicks))
MouseClick("Left", Random(0, Random(0, @DesktopWidth)), Random(0, Random(0, @DesktopHeight)), Random(1, 3), 5)
Sleep(Random(0, Random(0, $maxDelay)
Next
EndFunc
So that's the autoclicker part, just need help combining it with random.org.
P.S. That's as far as i got on the forum, since it's for a game, they refused to help me further.
|