This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,43 @@ | ||
# ZLauncher | ||
The Legend of Zelda: Breath of the Wild custom launcher | ||
|
||
## Features | ||
* Launch game (both with user and admin priveleges) | ||
* Launch speedhack (CheatEngine standalone trainer) | ||
* Supports launching from Steam library as Non-Steam game | ||
* Launch game through Steam with admin priveleges | ||
|
||
## Configuration | ||
All configurations are done by `zlauncher.ini` config file. | ||
ZLauncher can use another config file if specified with `-config` command line parameter. | ||
|
||
This is an example config file: | ||
```ini | ||
[cemu] | ||
path=D:\Programs\Cemu ; Path to Cemu | ||
fullscreen=true ; Fullscreen | ||
cmdline= ; Additional Cemu command line parameters | ||
|
||
[game] | ||
path=D:\Games\WiiU\The Legend of Zelda - Breath of the Wild ; Path to the game | ||
elevate=true ; Run game with admin priveleges | ||
|
||
[speedhack] | ||
path=.\speedhack.exe ; Path to speedhack trainer | ||
enabled=false ; Is speedhack enabled | ||
|
||
[steam] | ||
enabled=true ; Is Steam support enabled | ||
elevate=true ; Run Steam with admin priveleges | ||
gameid=12927812811798609920 ; Game id in Steam library | ||
``` | ||
|
||
You can launch game through Steam to get Steam overlay and Steam controller working: | ||
* Add ZLauncher into your Steam library as a Non-Steam game | ||
* Create desktop shortcut for this game | ||
* Find new shortcut on desktop and open its properties | ||
* Copy id number from URL attribute. It will be something like **steam://rungameid/`12927812811798609920`** | ||
* Paste id to the `gameid` parameter of the `[steam]` section | ||
* Delete shortcut if you want | ||
* Set the `[steam].enabled` parameter to `true` | ||
* Set the `[steam].elevate` and `[game].elevate` parameters to `true` if you want to run game as admin |