Jump to content

click every 60 seconds and keyboards!


 Share

Recommended Posts

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 by Phoenix27
Link to comment
Share on other sites

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...

Link to comment
Share on other sites

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

<{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
Endfunc

Hope this helps,

JPC :idiot:

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...