PsaltyDS Posted October 3, 2006 Posted October 3, 2006 i dunno a guy above recommened i didn't bother to look it up can you help me please What happens when you run it? How about if you comment out those Opt() statements? Does the mouse move? After it clicks in one spot 120 times, what was it supposed to do next? It looks like right now it clicks 120 times on one spot every second time you hit delete. And speed = 100 means the mouse pointer goes really slowly when it moves. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
vexitor Posted October 3, 2006 Author Posted October 3, 2006 Thats the thing it doesn't do anything it just sits there i hit delete and wait but it still doesn't do anything. maybe somethings wront witht the script?
PsaltyDS Posted October 3, 2006 Posted October 3, 2006 Thats the thing it doesn't do anything it just sits there i hit delete and wait but it still doesn't do anything. maybe somethings wront witht the script? I think you just threw in too many options that you didn't understand. This is much simplified, and it works: HotKeySet("{DEL}", "TogglePause") ; Hit delete to start/stop clicking HotKeySet("{Pause}", "_Exit") ; Hit pause to exit Global $Paused = True ; Start out paused (not clicking) While 1 If Not $Paused Then MouseClick("left", 508, 309) EndIf Sleep(10) WEnd Func TogglePause() $Paused = Not $Paused EndFunc ;==>TogglePause Func _Exit() Exit EndFunc ;==>_Exit Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
vexitor Posted October 4, 2006 Author Posted October 4, 2006 Great.. now game gaurd doesn't let it click is there a way to go around it?
vexitor Posted October 5, 2006 Author Posted October 5, 2006 I've searched the forum and came up with nothing can anyone here help me?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now