Difference between revisions of "Dcop"
Jump to navigation
Jump to search
Jesteratarms (talk | contribs) m |
IntoShadows (talk | contribs) |
||
Line 21: | Line 21: | ||
Since DCOP launches in full screen mode, you can press Alt + Enter to make it windowed (which allows for the border to show up). | Since DCOP launches in full screen mode, you can press Alt + Enter to make it windowed (which allows for the border to show up). | ||
+ | ===No Crosshair Patch (By IntoShadows)=== | ||
+ | You can also remove the crosshair from the game by downloading this file: https://drive.google.com/drive/folders/1L-_NZq-bEK6EOeGV3weZBt52afd2aMOQ?usp=sharing | ||
− | + | # Make a backup of the file: sharedassets1.assets located in the \DCOP_Data folder in case you ever want the crosshair back later on. | |
+ | # Overwrite the original file (sharedassets1.assets) with the one you downloaded here. | ||
+ | # use nomousy to hide mouse cursor (see AHK sample below). | ||
+ | # play the game. | ||
+ | ==Sample AHK Script== | ||
+ | <syntaxhighlight lang="ahk"> | ||
+ | SetWorkingDir D:\YOUR GAME DIR\ | ||
+ | Run, D:\YOUR GAME DIR\DCOP.exe | ||
+ | |||
+ | Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide | ||
+ | |||
+ | Esc:: | ||
+ | Process,Close,DCOP.exe | ||
+ | Run,taskkill /im "DCOP" /F | ||
+ | Run, D:\YOUR NOMOUSY DIR\nomousy.exe | ||
+ | sleep, 500 | ||
+ | ExitApp | ||
+ | return | ||
+ | </syntaxhighlight> | ||
[[Category:Windows Games]] | [[Category:Windows Games]] | ||
[[Category:Steam Games]] | [[Category:Steam Games]] |
Revision as of 21:17, 5 March 2024
FMV Rail Shooter
Setup Guide
Download and Install the game from Steam
Since DCOP launches in full screen mode, you can press Alt + Enter to make it windowed (which allows for the border to show up).
No Crosshair Patch (By IntoShadows)
You can also remove the crosshair from the game by downloading this file: https://drive.google.com/drive/folders/1L-_NZq-bEK6EOeGV3weZBt52afd2aMOQ?usp=sharing
- Make a backup of the file: sharedassets1.assets located in the \DCOP_Data folder in case you ever want the crosshair back later on.
- Overwrite the original file (sharedassets1.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\DCOP.exe
Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide
Esc::
Process,Close,DCOP.exe
Run,taskkill /im "DCOP" /F
Run, D:\YOUR NOMOUSY DIR\nomousy.exe
sleep, 500
ExitApp
return