Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

[bug]

Ctrl in debug console didn't work for me, because I rebinded my keys a lot (I rebinded stealth from ctrl to a). To fix that, in file Data\Scripts\Frames\RVscript\520_Console.rb , I replaced all examples of this:
Input.press?(:CTRL)
with this:
Input.press?(Input::VKCTRL)

And also added this above:
VKCTRL = 0x11

Reference:
https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes

Now I can paste into console, that's already a progress. Keys i k j l still don't work for me, they move cursor instead, yes I use i j k l for movement.