From 140899ba496c40c321c96505b34cace3cfbd9b03 Mon Sep 17 00:00:00 2001 From: Valters Tomsons Date: Sun, 2 Feb 2025 01:45:52 +0200 Subject: [PATCH 1/2] Add CrysisVR example --- content/docs/steamvr/mod-managers.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/docs/steamvr/mod-managers.md b/content/docs/steamvr/mod-managers.md index e7a81b5..a287e8f 100644 --- a/content/docs/steamvr/mod-managers.md +++ b/content/docs/steamvr/mod-managers.md @@ -63,4 +63,10 @@ Here's an example of full Fallout 4 VR launch options: WINEDLLOVERRIDES="WinHTTP.dll=n,b;x3daudio1_7.dll=n,b" bash -c 'exec "${@/Fallout4VR.exe/f4sevr_loader.exe}"' -- %command% ``` +Example for redirecting original Crysis (2007) to [Crysis VR](https://crysis.vrmods.eu/): + +``` +MANGOHUD=0 bash -c 'exec "${@/Crysis.exe/CrysisVR.exe}"' -- %command% +``` + Put any environment variables before `bash`, put any launch arguments for the game after `%command%`. \ No newline at end of file From 20efb3ced02e0c3581c3f4a284bce6804efa0646 Mon Sep 17 00:00:00 2001 From: Valters Tomsons Date: Sun, 2 Feb 2025 01:51:37 +0200 Subject: [PATCH 2/2] More examples to a subsection --- content/docs/steamvr/mod-managers.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/docs/steamvr/mod-managers.md b/content/docs/steamvr/mod-managers.md index a287e8f..7eb1d20 100644 --- a/content/docs/steamvr/mod-managers.md +++ b/content/docs/steamvr/mod-managers.md @@ -57,13 +57,15 @@ bash -c 'exec "${@/OriginalGame.exe/CustomLoader.exe}"' -- %command% replacing `OriginalGame.exe` and `CustomLoader.exe` with game's executable name and your custom launcher respectively. -Here's an example of full Fallout 4 VR launch options: +## Examples + +Redirect Fallout 4 VR to [F4 Script Extender](https://f4se.silverlock.org/) with dll overrides needed for other mods to work: ``` WINEDLLOVERRIDES="WinHTTP.dll=n,b;x3daudio1_7.dll=n,b" bash -c 'exec "${@/Fallout4VR.exe/f4sevr_loader.exe}"' -- %command% ``` -Example for redirecting original Crysis (2007) to [Crysis VR](https://crysis.vrmods.eu/): +Redirect original Crysis (2007) executables to [Crysis VR](https://crysis.vrmods.eu/): ``` MANGOHUD=0 bash -c 'exec "${@/Crysis.exe/CrysisVR.exe}"' -- %command%