Im using GUN4IR. Demulshooter hooks and menu works fine for me, but when in game the reticule is stuck in the bottom left hand of the screen. Im using the following ahk script:
#SingleInstance Force
Run, E:\DemulShooter\DemulShooterX64.exe -target=windows -rom=bbhut
Run, "BBH.exe"
lbutton::
click
send, {enter down}
KeyWait, LButton
send, {enter up}
return
Escape::
Process,Close,BBH.exe
Run,taskkill /im "BBH.exe" /F
Process,Close,DemulShooterX64.exe
Run,taskkill /im "DemulShooterX64.exe" /F
sleep, 5000
ExitApp
return