Page 1 of 1
Very Simple AutoIt request
Posted: February 2nd, 2006, 6:58 pm
by lead2gold
Basicly I'm looking for a very simple script that just double clicks the center of the screen every few seconds.
I cannot get XU to work at the moment so I can't use a harvest bot. Fortantly in SS certain node respawn points are unchanging and have fast respawn. So it would work decently if I could just leave my toon standing there at a respawn lined up to grab the node every 5-10 mins.
Thanks for any help

Posted: February 4th, 2006, 6:06 am
by tault_w118cmh
I'll do one for you later on tonight. I have the basic code to select your mouse position with F1, and then I can just run the loop, so it will only take an hour or so with creating the GUI.
Unfortunatly, I can't do it until I get home. But like I said, I'll have it up by tonight EST>
Posted: February 4th, 2006, 5:03 pm
by lead2gold
Thank you!!

Posted: February 5th, 2006, 8:18 am
by tault_w118cmh
Opps..
Hehe..
Sorry, got detoured no my way home from work last night to the bar...
I'm dong it as we speak...
Posted: February 5th, 2006, 7:48 pm
by lead2gold
np...whenever you have the time
Posted: February 9th, 2006, 11:42 am
by wyvernx
Download XUM from the what is xum link on the left side of the screen. XUM is a stand alone scritping engine like AutoIt.
The script commands you need are:
Mouse.MouseMove x,y,1
Mouse.DoubleClick x,y
So your code would be something similar to this:
do while true
MouseMove 400,400,1
DoubleClick 400,400
Sleep 10000 'Ten Seconds
loop
Thats it. You can get more complex and add your own features, its really easy.
Even add in things like look for a on/off switch by pressing F1 etc..
XUM is easy that is the whole point.