Difference between revisions of "Time Crisis Training"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
IntoShadows (talk | contribs)  (Created page with "{{infobox |title = Time Crisis Training |logo = Time_Crisis_Training_Logo.png |category = Windows Game |platform = itch.io |download = [https://djidane535.itch.io/time-crisis-...")  | 
				IntoShadows (talk | contribs)   | 
				||
| (6 intermediate revisions by the same user not shown) | |||
| Line 8: | Line 8: | ||
|players = 1 Player  | |players = 1 Player  | ||
|type = On-Rails Shooter, Target Shooting  | |type = On-Rails Shooter, Target Shooting  | ||
| − | |gameplayshot =   | + | |gameplayshot = Time_Crisis_Training_Gameplay_Shot.jpg  | 
|gamename = Time Crisis Training  | |gamename = Time Crisis Training  | ||
|titleshot = Time_Crisis_Training_Title_Shot.jpg  | |titleshot = Time_Crisis_Training_Title_Shot.jpg  | ||
| Line 16: | Line 16: | ||
==Setup Guide==  | ==Setup Guide==  | ||
| − | Download and extract the "Time_Crisis_VR_Training-desktop" version from [https://djidane535.itch.io/time-crisis-vr-training itch.io itch.io]  | + | Download and extract the "Time_Crisis_VR_Training-desktop" version from: [https://djidane535.itch.io/time-crisis-vr-training '''itch.io itch.io''']  | 
===No Crosshair Patch (By IntoShadows)===  | ===No Crosshair Patch (By IntoShadows)===  | ||
| − | You can also remove the crosshair from the game by downloading this file: [https://drive.google.com/drive/folders/1bPSvFUuxH3qwVFOfkjj3TfLR7tL6ZvZJ?usp=sharing/file Google Drive]  | + | You can also remove the crosshair from the game by downloading this file: [https://drive.google.com/drive/folders/1bPSvFUuxH3qwVFOfkjj3TfLR7tL6ZvZJ?usp=sharing/file '''Google Drive''']  | 
| − | + | #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.  | |
| − | Make a backup of   | + | # Overwrite the original file ('''globalgamemanagers.assets''') with the one you downloaded here.  | 
| − | + | #use nomousy to hide mouse cursor (see AHK sample below).  | |
| − | Overwrite the original file with the one you downloaded here.  | + | #play the game.  | 
| − | |||
| − | |||
| − | |||
| − | play the game.  | ||
| − | |||
==Sample AHK Script==  | ==Sample AHK Script==  | ||
<syntaxhighlight lang="ahk">  | <syntaxhighlight lang="ahk">  | ||
| Line 36: | Line 31: | ||
Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide  | Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide  | ||
| + | |||
| + | 5::RButton  | ||
Esc::  | Esc::  | ||
Latest revision as of 04:57, 17 March 2024
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: Google Drive
- 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