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.
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.
The script