2023-07-16 04:48:17 +03:00
|
|
|
|
# Client Launch Parameters
|
|
|
|
|
|
|
2023-08-08 14:28:15 +03:00
|
|
|
|
To launch most versions of the game without any launcher you can use the following combination of launch parameters: "-robocopy -nosteam".
|
|
|
|
|
|
|
|
|
|
|
|
Older versions of the game from before BitRaider was removed require the following parameters: "-nobitraider -nosteam".
|
2023-07-16 04:48:17 +03:00
|
|
|
|
|
2023-11-13 23:40:30 +03:00
|
|
|
|
Some of these parameters can be set automatically by using [Bifrost](https://github.com/Crypto137/Bifrost).
|
|
|
|
|
|
|
|
|
|
|
|
## Generic Unreal Engine parameters
|
|
|
|
|
|
|
|
|
|
|
|
| Parameter | Description |
|
|
|
|
|
|
| ---------------- | ---------------------------------------- |
|
|
|
|
|
|
| -nostartupmovies | Disables logo movies on startup. |
|
|
|
|
|
|
| -nomovies | Disables all movies. |
|
|
|
|
|
|
| -nosplash | Disables splash image on initialization. |
|
|
|
|
|
|
| -nosound | Disables sound. |
|
|
|
|
|
|
| -ResX= | Forces horizontal resolution. |
|
|
|
|
|
|
| -ResY= | Forces vertical resolution. |
|
|
|
|
|
|
| -opengl | Forces OpenGL API (buggy). |
|
2023-10-17 18:52:59 +03:00
|
|
|
|
|
2023-07-16 04:48:17 +03:00
|
|
|
|
## Game-specific parameters
|
|
|
|
|
|
|
|
|
|
|
|
These require further checking for compatibility with various versions of the client.
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### ClientApp::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
2023-11-27 00:39:41 +03:00
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ----------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
|
|
|
|
|
|
| -asserts | | |
|
|
|
|
|
|
| -verifies | | |
|
|
|
|
|
|
| -uploadVerifies | Calls `DebugSetWhetherToUploadVerifies`. | |
|
|
|
|
|
|
| -enablecoredumps | Calls `DebugEnableCoreDumps`. | |
|
|
|
|
|
|
| -disableminidumps | Calls `DebugSetMinidumpCreationPolicy`. | |
|
|
|
|
|
|
| -forceLocalStackWalking | Calls `DebugSetForcedLocalStackWalkPolicy`. | |
|
|
|
|
|
|
| -enableTracing | Enables verbose logging. | |
|
|
|
|
|
|
| -log | Enables verbose logging and shows a log window. | |
|
|
|
|
|
|
| -LoggingLevel= | Specifies the logging level for verbose logging. | NONE, CRITICAL, FATAL, ERROR, WARNING, INFORMATION, VERBOSE, EXTRA_VERBOSE, DEBUG |
|
|
|
|
|
|
| -LoggingChannels= | Specifies logging channels for verbose logging. | See below for a full list of available channels. |
|
|
|
|
|
|
| -suppressall | Disables logging. | |
|
|
|
|
|
|
| -maxload | Forces loading of all prototypes during game database initialization. | |
|
|
|
|
|
|
| -nocalligraphypak | Disables Calligraphy pak file (`Calligraphy.sip`) loading and forces the client to load all data from `mu_cdata.sip`. | |
|
|
|
|
|
|
| -novalidate | | |
|
|
|
|
|
|
| -nohardwareinfo | | |
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### ClientAppSettingsPostCoreInit::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ---------------------- | -------------------------------------------------------------------------------------------- | ------------ |
|
|
|
|
|
|
| -defaultregion= | | |
|
|
|
|
|
|
| -defaultcell= | | |
|
|
|
|
|
|
| -startingregion= | | |
|
|
|
|
|
|
| -startingcell= | | |
|
|
|
|
|
|
| -envoverride= | | |
|
|
|
|
|
|
| -collectionname= | | |
|
2024-03-01 14:27:03 +03:00
|
|
|
|
| -emailaddress= | Automatically logs in on client startup using the specified email address. | |
|
|
|
|
|
|
| -password= | Specifies the password for logging in automatically with -emailaddress. | |
|
2023-11-22 18:47:19 +03:00
|
|
|
|
| -twofactorauthcode= | | |
|
|
|
|
|
|
| -twofactorauthname= | | |
|
|
|
|
|
|
| -twofactortrustmachine | | |
|
|
|
|
|
|
| -loginasplayer | | |
|
|
|
|
|
|
| -loginasanother | | |
|
|
|
|
|
|
| -nosave | | |
|
|
|
|
|
|
| -serveroverride= | | |
|
|
|
|
|
|
| -webtoken | | |
|
|
|
|
|
|
| -siteconfigurl= | Specifies a custom SiteConfig URL. | |
|
|
|
|
|
|
| -nosolidstate | Disables Gazillion launcher integration. | |
|
|
|
|
|
|
| -nosteam | Disables Steam integration. | |
|
|
|
|
|
|
| -robocopy | Launches the game in standalone mode (mutually exclusive with -solidstate and -steam). | |
|
|
|
|
|
|
| -solidstate | Launches the game in Gazillion launcher mode (mutually exclusive with -robocopy and -steam). | |
|
|
|
|
|
|
| -steam | Launches the game in Steam mode (mutually exclusive with -robocopy and -solidstate). | |
|
|
|
|
|
|
| -skipmotioncomics | | |
|
2024-03-01 14:27:03 +03:00
|
|
|
|
| -nocatalog | Prevents the store catalog from loading. | |
|
2023-11-22 18:47:19 +03:00
|
|
|
|
| -norostercatalog | | |
|
|
|
|
|
|
| -displaynametoggle | | |
|
|
|
|
|
|
| -xpnumberstoggle | | |
|
|
|
|
|
|
| -floatingnumberstoggle | | |
|
|
|
|
|
|
| -combatlogtoggle | | |
|
|
|
|
|
|
| -nouinotifications | | |
|
|
|
|
|
|
| -noaccount | Disables account-related buttons on the login screen. | |
|
|
|
|
|
|
| -nologout | Disables the logout button. | |
|
|
|
|
|
|
| -nonews | Disables community news. | |
|
|
|
|
|
|
| -nooptions | Disables the options buttons. | |
|
|
|
|
|
|
| -nostore | Disables the store buttons. | |
|
|
|
|
|
|
| -bypasspsn | | |
|
|
|
|
|
|
| -bypassconsoleauth | | |
|
|
|
|
|
|
| -streaming | | |
|
|
|
|
|
|
| -platform= | | orbis, dingo |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### SiteConfig::ParseCommandLine()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ------------ | ----------- | ------ |
|
|
|
|
|
|
| -authticket= | | |
|
|
|
|
|
|
| -authserver= | | |
|
|
|
|
|
|
| -authurl= | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### ClientGame::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ----------- | ----------- | ------ |
|
|
|
|
|
|
| -nooverwolf | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### Atlas::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ------------- | ----------- | ------ |
|
|
|
|
|
|
| -nomapmarkers | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### AudioManager::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| -------------- | ----------- | ------ |
|
|
|
|
|
|
| -nomusic | | |
|
|
|
|
|
|
| -foleyineditor | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### UnrealAudioManager::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ------------------ | ----------- | ------ |
|
|
|
|
|
|
| -audioglobalfocus | | |
|
|
|
|
|
|
| -audiofilepackages | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### UnrealGameAdapter::Initialize()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ---------------- | ----------- | ------ |
|
|
|
|
|
|
| -dependencygraph | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### UnrealGameAdapter::SendSteamUserInfo()
|
2023-11-22 18:47:19 +03:00
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| ----------------------- | ----------- | ------ |
|
|
|
|
|
|
| -steamachievementupdate | | |
|
|
|
|
|
|
|
2026-03-10 03:12:10 +03:00
|
|
|
|
### InitGazillionSystems()
|
|
|
|
|
|
|
|
|
|
|
|
| Parameter | Description | Values |
|
|
|
|
|
|
| --------- | ------------------------ | ------------------------------------------------------------------------------ |
|
|
|
|
|
|
| -locale= | Overrides client locale. | Name of locale file under `Data\Game\Loco` without extension (e.g. `eng.all`). |
|
|
|
|
|
|
|
2023-11-22 18:47:19 +03:00
|
|
|
|
## Logging Channels
|
2023-08-08 15:50:15 +03:00
|
|
|
|
|
|
|
|
|
|
You can specify channels for verbose logging using the following syntax: `-LoggingChannels=-ALL,+GAME`. Available channels:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
ALL
|
|
|
|
|
|
ERROR
|
|
|
|
|
|
CORE
|
|
|
|
|
|
CORE_NET
|
|
|
|
|
|
CORE_JOBS_TP
|
|
|
|
|
|
GAME
|
|
|
|
|
|
PEER_CONNECTOR
|
|
|
|
|
|
DATASTORE
|
|
|
|
|
|
PROFILE
|
|
|
|
|
|
GAME_NETWORK
|
|
|
|
|
|
PAKFILE_SYSTEM
|
|
|
|
|
|
LOOT_MANAGER
|
|
|
|
|
|
GROUPING_SYSTEM
|
|
|
|
|
|
PROTOBUF_DUMPER
|
|
|
|
|
|
GAME_DATABASE
|
|
|
|
|
|
TRANSITION
|
|
|
|
|
|
AI
|
|
|
|
|
|
INVENTORY
|
|
|
|
|
|
MEMORY
|
|
|
|
|
|
MISSIONS
|
|
|
|
|
|
PATCHER
|
|
|
|
|
|
GENERATION
|
|
|
|
|
|
RESPAWN
|
|
|
|
|
|
SAVELOAD
|
|
|
|
|
|
FRONTEND
|
|
|
|
|
|
COMMUNITY
|
|
|
|
|
|
ACHIEVEMENTS
|
|
|
|
|
|
METRICS_HTTP_UPLOAD
|
|
|
|
|
|
CURRENCY_CONVERSION
|
|
|
|
|
|
MOBILE
|
|
|
|
|
|
UI
|
|
|
|
|
|
LEADERBOARD
|
|
|
|
|
|
```
|