Hi Guys i need modify script it will be easy

Posts 1–2 of 2 · Page 1 of 1
Hi Guys i need modify script it will be easy
Hi guys i need modify my script 1.I need when i hold ctrl+mouse1 then shoot and 2. When i hold shift+mouse1 then shoot

Script:

z:: Hotkey, $LButton, Toggle
LButton::
Loop
{
SetMouseDelay 80
Click
If (GetKeyState("LButton","P")=0)
Break
}
Quote Originally Posted by Sam74258 View Post
*snip*
Is this what you're trying to accomplish? Btw the hotkey toggles can't be the same that's why they're different

Code:
z:: Hotkey, LButton, Toggle
^LButton::
   Loop
   {
      SetMouseDelay 80
      Click
      If (GetKeyState("LButton","P")=0)
      Break
   }
return
 
x:: Hotkey, LButton, Toggle
+LButton::
   Loop
   {
      SetMouseDelay 80
      Click
      If (GetKeyState("LButton","P")=0)
      Break
   }
return
 
End::
exitapp
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?