-
-
Save adhiraj2001/09746a960a94dcb38be536f2d896e85c to your computer and use it in GitHub Desktop.
Revisions
-
byhemechi revised this gist
Sep 8, 2023 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,6 @@ function OnEvent(event, arg) MoveMouseRelative(-distance, 0) Sleep(500) MoveMouseRelative(distance, 0) PressAndReleaseMouseButton(1) MoveMouseRelative(distance, 0) Sleep(500) -
byhemechi created this gist
Sep 8, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ function OnEvent(event, arg) if (event == "MOUSE_BUTTON_PRESSED" and arg == 3) then distance = 512 Sleep(200) MoveMouseRelative(-distance, 0) Sleep(500) MoveMouseRelative(distance, 0) Sleep(5) PressAndReleaseMouseButton(1) MoveMouseRelative(distance, 0) Sleep(500) MoveMouseRelative(-distance , 0) end end