C++ question
I am requesting a C++ AutoClicker.
When i hold down Left Mouse Button, i want it to click. If its not possible to have it left Click, make it for "V"
In AutoHotkey, it looks something like:
$*LButton::
{
Loop
{
MouseClick, Left,,, 1, 0
SetMouseDelay, 46
GetKeyState, state, LBUTTON, P
if state = U
{
Break
}
}
}
Return
I dont know anything about c++ coding, so if someone could make a program for me for this that would be awesome. Thank you
That doesn't look like C++ to me.