
How to get MacroRecorder (FeiYue) recording keys to be recognized by another script?
I am trying to record a script for a game task. But the game has locked mouse cursor that prevents Macro Recorder from properly recording mouse movements.
So I am also trying to use this mouse control by keyboard script. https://github.com/4strid/mouse-control.autohotkey/blob/master/mouse-control.ahk
I changed some of the hotkeys, so say I can control the mouse cursor with arrow keys, and left click with R. It works in game, I can control the camera with the keyboard.
I run both scripts simultaneously as admin. Macro Recorder records all my key presses, but when I play it back, those key presses (like arrow keys, R) are not being recognized by the mouse-control script.
Is there a way I can get this to work? Tried declaring #Include of the script, SendLevel 1, merging both scripts as one, but none of these worked.
Thanks!