I need a program that "Multi-clicks" when you hold down

Status
Not open for further replies.
Sorry, forgot to test it yesterday :p

When the script is running and you click and hold the mouse button, what happens? Just one round fires off and nothing else? Do you normally have to do anything else before firing again?

Try this:
Code:
*PAUSE::Suspend
return
LButton::
While GetKeyState("LButton","P") = 1
{
Click down
sleep 200
Click up
sleep 200
}
 
k this one works.

Thanks a lot.

I was looking for a command for "mouse up" , so yeah, that was it.

pro
 
Status
Not open for further replies.
Back
Top Bottom