
Welcome aboard to the our video site for sailors. We are being constantly blasted by scammers and pirates, so registration is invite only
contact@sailorsahoy.com with "Invite". No spam, no newsletters. Just a free account
This Hand Tractor Beam Macro Makes Hauling Less Tiring, Star Citizen
The script (copy paste the code below into your AHK script, thanks to ChatGPT for writing the code for me too, made it faster than if I had to learn AHK language and syntaxes for this c=): #Requires AutoHotkey v1.1 ; Caps Lock + Scroll Up - Repeats WheelUp 20 times ; Caps Lock is used as a prefix key. CapsLock & WheelUp:: Loop, 100 { SendInput {WheelUp} Sleep, 10 ; Adjust this value if scrolling is too fast or slow } return ; Caps Lock + Scroll Down - Repeats WheelDown 20 times ; Caps Lock is used as a prefix key. CapsLock & WheelDown:: Loop, 100 { SendInput {WheelDown} Sleep, 10 ; Adjust this value if scrolling is too fast or slow } return

