For the complete documentation index, see llms.txt. This page is also available as Markdown.

Launch Arguments

For recent versions (v2.3.2 or newer)

In Visual Studio, GameLauncher Project.

  1. Locate and open Models/Patcher/LauncherConfig.cs

  2. Set your parameters in the variable GlobalCustomLaunchArguments

That's all.

Older versions (v2.3.1 or less)

On older GameLauncher Editions, please add this line to the Models/Patcher/LauncherConfig.cs

// Global Custom launch arguments for the game(s)
public static string GlobalCustomLaunchArguments = ""; // e.g. "-novid -fullscreen", "-user legend -password 1234"

Then, in Models/Patcher/PatcherFunctions.cs, locate PlayButtonClicked() function and add this line after string launchArgs declaration

launchArgs += LauncherConfig.GlobalCustomLaunchArguments;

Last updated