can anybody fix this logitech ghub autoclicker? i want the script to turn on/off when the back button is pressed, and when pressed once while holding the left mouse button, it clicks all the time until the button is released
local counter = 0
function OnEvent(event, arg)
if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then
counter = counter+1
if counter % 2 == 1 then
clickingEnabled = true
else
clickingEnabled = false
end
end
while clickingEnabled and IsMouseButtonPressed(1) do
PressMouseButton(1)
Sleep(10)
ReleaseMouseButton(1)
Sleep(10)
end
end
In the game, in the "Controls Settings", introduce alternative key for "Shoot" action.
For example, let it be keyboard key P.
So, now in the game you can shoot either using Left Mouse Button or using Keyboard key P.
Of course, you will use LMB for manual shooting as usually, but your GHub script will use P.
Make sure:
Set the script:
Method #2
If your game lacks ability to set an alternative key.
Make sure mouse button 5 is ignored by the game.
The game must do nothing when you press it while playing.
In GHub, assign "Left click" action to some mouse button you usually never use.
For example, button #8.
This way MB8 will act as a spare Left Click, just in case something wrong happen with your LMB (if script goes wrong for some reason).
Set the script.