How do I make an Auto Clicker Macro in Lua script inside Logitech ghub? please

385 Views Asked by At

The code works completely, but I need it to work on button 1?. I changed the buttons for place 5 to 1, it doesn’t work.

EnablePrimaryMouseButtonEvents(true)

function OnEvent(event, arg)
   if event == "MOUSE_BUTTON_PRESSED" and arg == 5 then
      repeat
 MoveMouseRelative(0,10)
         Sleep(15)
         PressAndReleaseMouseButton(1)
         Sleep(15)
      until not IsMouseButtonPressed(5) 
   end
end.
1

There are 1 best solutions below

9
On
  1. 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.

  2. The script

EnablePrimaryMouseButtonEvents(true)

function OnEvent(event, arg)
   if event == "MOUSE_BUTTON_PRESSED" and arg == 1 then
      repeat
         MoveMouseRelative(0,10)
         Sleep(15)
         PressAndReleaseKey("P")  -- instead of PressAndReleaseMouseButton(1)
         Sleep(15)
      until not IsMouseButtonPressed(1) 
   end
end