Auto clicker

03/02/2009 12:12 TehStupidDog#1
Well, I tried a few auto click programs but nothing worked. I wanted a program that would just click so I can stand in front of a resource and leave it picking while I sleep, I dont really care about running in between different patches or anything. I know you CAN use autoclickers but most dont work. So does anyone know one that does work? would really appreciate any help :)
03/02/2009 21:48 westej#2
Have you tried Tasker?
03/03/2009 11:48 ivits#3
use autoit
func start()
sleep(200)
mouseclick("left")
sleep("****") <!--instead the**** you take the time it needs to be finished-->
EndFunc


if you know a little bit about autoit you will know how to use it.This bot will pick for you but search you have to do on your own, an bot that picks for you when you sleep thats a little bit too much
03/03/2009 19:10 TehStupidDog#4
Quote:
Originally Posted by ivits View Post
use autoit
func start()
sleep(200)
mouseclick("left")
sleep("****") <!--instead the**** you take the time it needs to be finished-->
EndFunc


if you know a little bit about autoit you will know how to use it.This bot will pick for you but search you have to do on your own, an bot that picks for you when you sleep thats a little bit too much

Super cool, Vielen dank :)

*edit*

After looking at this it looks like its a little more than I needed, I really just wanted something that clicks, not extra programs and scripting or anything. Thanks anyway though.

@westej : still too complex, im thinking WAAAAAYYYY much simpler, just a program that clicks and nothing else, I couldnt even get tasker to work with the game at all, let alone anything else in windows, I think it doesnt work with Vista.
03/03/2009 23:43 madadayo#5
für autoit:

Global $Paused
HotKeySet("{END}", "TogglePause")
HotKeySet("{HOME}", "Terminate")

While 1
Sleep(100)
WEnd

Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(6300)
MouseClick("Right")
WEnd
EndFunc

Func Terminate()
Exit 0
EndFunc

damit kannst pausen/starten.
allerdings wirst enttäuscht sein, denn wenn du an nur einer stelle abbaust, dann ist die ressource nach 2 respawns nicht mehr für dich abbaubar.
03/06/2009 17:50 ivits#6
wozu das $Paused = NOT $Paused?