Re: Arrow Keys are permanently bound to camera movement in Land Transport Vehicles.
@yarskissthe automoving thing is an error you can get if you punch in a certain key combination with AHK. I've set up my keybinds to avoid it but I can't remember the exact combination. I know it has something to do with ctrl and shift, iirc it's shift that has something weird hardcoded into windows when using the buttons on the right side of the keyboard
These are the four things at the top of my script, one of those I think solves the issue. I think it's the Numlock one.
<code>
#MaxHotkeysPerInterval 999
SetTitleMatchMode, RegEx
#MaxThreadsPerHotkey 2
SetNumLockState, AlwaysOff
</code>