docs.xiv.zone/content/executable/ffxiv.md

42 lines
2 KiB
Markdown
Raw Normal View History

2022-07-16 18:54:44 -04:00
---
title: "Client (ffxiv.exe)"
2022-07-16 18:54:44 -04:00
---
This is the game client executable.
{{< note "There are two separate executables for DirectX 11 and DirectX 9. The DX11 version is named `ffxiv_dx11.exe`. The DX9 version will be removed in a future update." >}}
2022-07-16 18:54:44 -04:00
2023-09-23 08:48:27 -04:00
# Arguments
2022-07-16 18:54:44 -04:00
2023-12-22 15:52:04 -05:00
{{< info "Unlike other executables, passing arguments encrypted with SqexArg is optional for the client. It's recommended that you do so if you're planning to use actual SIDs though." >}}
There a few known arguments that work on the normal game client:
* `DEV.DataPathType`
2022-07-16 18:54:44 -04:00
* **Guessing** that this controls the asset data type used by the client, this is will always be `1`.
2023-12-22 15:52:04 -05:00
* `DEV.UseSqPack`
2022-07-16 18:54:44 -04:00
* **Guessing** that this tells the client to try to load data from SqPack files instead of from regular, uncompressed files. Seems to always be `1`.
2023-12-22 15:52:04 -05:00
* `DEV.MaxEntitledExpansionID`
2022-07-16 18:54:44 -04:00
* This is the max entitled expansion ID that the currently logging in user has access to, you will want to set this from your login response.
2023-12-22 15:52:04 -05:00
* `DEV.TestSID`
2022-07-16 18:54:44 -04:00
* This is the SID you get from your login response.
2023-12-22 15:52:04 -05:00
* `SYS.Region`
2022-07-16 18:54:44 -04:00
* Your login region.
2023-12-22 15:52:04 -05:00
* `language`
2022-07-16 18:54:44 -04:00
* Your login language.
2023-12-22 15:52:04 -05:00
* `ver`
2022-07-16 18:54:44 -04:00
* The (base) game version string.
2023-12-22 15:52:04 -05:00
* `DEV.GMServerHost`
2022-07-16 18:54:44 -04:00
* This is the address of the frontier server to connect to. If empty, this will default to the official Square Enix frontier server.
2023-12-22 15:52:04 -05:00
* `DEV.LobbyHost0X`
2022-07-16 18:54:44 -04:00
* This is the address of the Nth lobby available to the client, these are numbered 0-9. If empty, this will default to the official Square Enix lobbies.
2023-12-22 15:52:04 -05:00
* `DEV.LobbyPort0X`
2022-07-16 18:54:44 -04:00
* This is the port number of the Nth lobby available to the client, these are numbered 0-9. If empty, this will default to the official Square Enix lobbies.
{{< info "For benchmark versions of the game, there is a whole host of graphical options available as game arguments - but this seems to be missing in the retail version." >}}
2022-07-16 18:54:44 -04:00
2023-09-23 08:48:27 -04:00
# Alternative Implementations
2022-07-16 18:54:44 -04:00
* [SaBOTender (C#)](https://github.com/shalzuth/SaBOTender)
* Implements very basic networking capabilities.