Phoenix27 Posted December 15, 2004 Posted December 15, 2004 (edited) ok well i figured out how to make it click in a spot every 60 seconds, but i need it to also in the same code press 8 then 5, then 2 NOT on the num pad. and i need it to do that progresson of numbers every 4 seconds herse what i have to make it click every 60 seconds... what do i need to add to have it press 8, 5, 2 NOT on the numpad every 4 seconds? Hotkeyset("{esc}", "stop") $i = 0 Do Sleep(15000) MouseClick("left", 736, 610, 1) Sleep(3000) MouseClick("left", 736, 610, 1) Until $i = 1 Func stop() $i = 1 Endfunc Edited December 15, 2004 by Phoenix27
Doxie Posted December 15, 2004 Posted December 15, 2004 Hi, No offence, i also asked alot of question when i was new, well i still do. But please try to keep them in the same thread, as i can see this is your second thread regarding the same script. Even tough the question is not the same, just keep posting in the same thread, we will see that the thread has been updated by a new post, and check it. Thanks in advance Were ever i lay my script is my home...
Just_Plain_Cool Posted December 16, 2004 Posted December 16, 2004 ok well i figured out how to make it click in a spot every 60 seconds, but i need it to also in the same code press 8 then 5, then 2 NOT on the num pad. and i need it to do that progresson of numbers every 4 secondsherse what i have to make it click every 60 seconds... what do i need to add to have it press 8, 5, 2 NOT on the numpad every 4 seconds?Hotkeyset("{esc}", "stop")$i = 0Do Sleep(15000) MouseClick("left", 736, 610, 1) Sleep(3000) MouseClick("left", 736, 610, 1)Until $i = 1Func stop() $i = 1Endfunc<{POST_SNAPBACK}>Give this a try...Hotkeyset("{esc}", "stop") $i = 0 Do Sleep(1000) If Mod(@SEC, 4) = 0 Then Send("852") EndIf If Mod(@SEC, 60) = 0 Then MouseClick("left", 736, 610, 1,0) EndIf Until $i = 1 Func stop() $i = 1 EndfuncHope this helps,JPC
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