Jump to content


How would edit this script to....


  • Please log in to reply
1 reply to this topic

#1 VideoGameCheater

VideoGameCheater
  • Guests

Posted 30 April 2012 - 09:07 PM

Hey, I want to change this autoclicking script to only function when both left and right mouse is held down (While maintaining the right clicks function of being held.)
SetMouseDelay 5
CapsLock::Hotkey, LButton, Toggle
Ins::Suspend
LButton::
Loop
{
Click
If (GetKeyState("LButton","P")=0)
Break
}
I have no clue what I would change to do this. Help?

#2 dylan904

dylan904
  • Members
  • 706 posts

Posted 30 April 2012 - 10:33 PM

SetMouseDelay 5
CapsLock::Hotkey, LButton, Toggle
Ins::Suspend
LButton & RButton::
Loop
{
   Click
   If (GetKeyState("LButton","P")=0)
       Break
}
That 'ought to do the trick!