A lightweight Windows launcher for Hytale that launches the game client in offline mode.
This launcher is designed for unofficial/pirate versions of Hytale. It provides a simple executable that launches the game with the correct arguments without needing batch scripts.
- Offline Mode: Uses
--auth-mode offlineto bypass authentication - Auto Username: Uses your Windows username automatically
- Static UUID: Uses UUID
13371337-1337-1337-1337-133713371337by default - Auto Directory Setup: Creates UserData folder if missing
- Configuration File: Supports
config.jsonfor custom player name and UUID - Command Line Parameters: Override settings via command line arguments
- Simple: No configuration needed - just run the executable
- Place
HytaleLauncher.exein the root of your Hytale installation directory - Run
HytaleLauncher.exe - The launcher will:
- Create a
config.jsonfile with default settings if it doesn't exist - Create a
UserDatafolder if it doesn't exist - Launch
HytaleClient.exewith the correct arguments - Use your Windows username as the player name
- Create a
Edit config.json to customize your settings:
{
"playerName": "YourPlayerName",
"uuid": "13371337-1337-1337-1337-133713371337"
}You can override the config.json settings using command line arguments:
# Set custom player name
HytaleLauncher.exe --name "MyPlayerName"
# Set custom UUID
HytaleLauncher.exe --uuid "00000000-0000-0000-0000-000000000000"
# Use both
HytaleLauncher.exe --name "MyPlayerName" --uuid "00000000-0000-0000-0000-000000000000"Priority: Command line parameters > config.json > defaults
The launcher expects this directory structure:
HytaleRoot/
├── HytaleLauncher.exe
├── package/
│ ├── game/
│ │ └── latest/
│ │ └── Client/
│ │ └── HytaleClient.exe
│ └── jre/
│ └── latest/
│ └── bin/
│ └── java.exe
└── UserData/ (created automatically)
- Windows operating system
- PowerShell
- .NET Framework 4.0 or later (for C# compiler)
Run the PowerShell script:
.\compile_to_exe.ps1This will:
- Generate
launcher.csfrom the PowerShell script - Compile it using the C# compiler
- Create
HytaleLauncher.exein the current directory
The launcher handles common errors with popup notifications:
- Missing HytaleClient.exe: Shows an error message with the expected path
This project is provided as-is for educational purposes.
This is a fan-made launcher and is not affiliated with Hypixel Studios or the official Hytale project.