AutoHotkey duplicates 'R Reload' button prompt.

+
Hello,

I'd like to submit a bug report. So I've made a little AutoHotkey script for a single click holster. I've mapped my switch weapon key to U. So the hotkey script makes it so that the button is pressed twice when pressing Mouse4.

Code:
SetTitleMatchMode 1
#IfWinActive Cyberpunk 2077

$*~XButton1::
    Send {U}
    Sleep 125
    Send {U}
Return

If I have a controller connected via DS4Windows, whenever I click the button, the game thinks I pressed something on the controller, which is quite weird in and of itself, however the holster works as it should but sometimes when I do it, the 'R Reload' button hint down to the right is duplicated so there's another line with the same, and eventually the whole side is full of 'R Reload' button prompts. It seems to be connected to if I move the mouse to look around while holstering. It's super weird.

This is on 1.05 that supposedly fixed virtual input, but obviously not this kind (though I admit that it's a very specific case).

If anyone have any ideas or workarounds, please feel free to share! :)

The obvious solution would be to add a dedicated holster key of course.

I hope this is a good bug report, thank you.
 

Attachments

  • Skärmbild 2020-12-20 044936.png
    Skärmbild 2020-12-20 044936.png
    584.4 KB · Views: 94
Top Bottom