Merge branch 'main' into 'main'
Tweak examples in exe redirection instructions See merge request lvra/lvra.gitlab.io!67
This commit was merged in pull request #72.
This commit is contained in:
@@ -57,10 +57,18 @@ bash -c 'exec "${@/OriginalGame.exe/CustomLoader.exe}"' -- %command%
|
|||||||
|
|
||||||
replacing `OriginalGame.exe` and `CustomLoader.exe` with game's executable name and your custom launcher respectively.
|
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%
|
WINEDLLOVERRIDES="WinHTTP.dll=n,b;x3daudio1_7.dll=n,b" bash -c 'exec "${@/Fallout4VR.exe/f4sevr_loader.exe}"' -- %command%
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Redirect original Crysis (2007) executables 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%`.
|
Put any environment variables before `bash`, put any launch arguments for the game after `%command%`.
|
||||||
Reference in New Issue
Block a user