Difference between revisions of "Time Crisis Training"
Jump to navigation
Jump to search
IntoShadows (talk | contribs) |
IntoShadows (talk | contribs) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 19: | Line 19: | ||
===No Crosshair Patch (By IntoShadows)=== |
===No Crosshair Patch (By IntoShadows)=== |
||
You can also remove the crosshair from the game by downloading this file: [https:// |
You can also remove the crosshair from the game by downloading this file: [https://github.com/IntoShadows/Crosshair-Removal/blob/3f4dd007c845cfda32c0d90e8f8375d069abf46b/Time%20Crisis%20VR%20Training%20No%20Crosshair%20Patch.zip Github] |
||
#Make a backup of the file: '''globalgamemanagers.assets''' located in the \Time Crisis VR_Data folder in case you ever want the crosshair back later on. |
|||
# Overwrite the original file ('''globalgamemanagers.assets''') with the one you downloaded here. |
|||
#use nomousy to hide mouse cursor (see AHK sample below). |
|||
| ⚫ | |||
Use nomousy to hide the windows cursor |
|||
| ⚫ | |||
==Sample AHK Script== |
==Sample AHK Script== |
||
<syntaxhighlight lang="ahk"> |
<syntaxhighlight lang="ahk"> |
||
Latest revision as of 16:28, 11 July 2026
Time Crisis Training is a Time Crisis Inspired Target shooting video game created by djidane535 and is free to download on itch.io
Setup Guide
Download and extract the "Time_Crisis_VR_Training-desktop" version from: itch.io itch.io
No Crosshair Patch (By IntoShadows)
You can also remove the crosshair from the game by downloading this file: Github
- Make a backup of the file: globalgamemanagers.assets located in the \Time Crisis VR_Data folder in case you ever want the crosshair back later on.
- Overwrite the original file (globalgamemanagers.assets) with the one you downloaded here.
- use nomousy to hide mouse cursor (see AHK sample below).
- play the game.
Sample AHK Script
SetWorkingDir D:\YOUR GAME DIR\
Run, D:\YOUR GAME DIR\Time Crisis VR.exe
Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide
5::RButton
Esc::
Process,Close,Time Crisis VR.exe
Run,taskkill /im "Time Crisis VR" /F
Run, D:\YOUR NOMOUSY DIR\nomousy.exe
sleep, 500
ExitApp
return