How to Install Mods in Hytale — Complete Beginner Guide
Hytale's modding scene is growing fast — within days of the Early Access launch, over 200 mods appeared on CurseForge. Whether you want new blocks, creatures, gameplay mechanics, or entirely new adventures, this guide walks you through every step of installing mods in Hytale. No prior modding experience needed.
How Modding Works in Hytale — The Server-First System
Unlike many other games, Hytale uses a server-first modding architecture. All modifications are managed on the server side — even when you play singleplayer (which runs a local server behind the scenes). When you or anyone else connects to a modded server, the client automatically receives the modified content. No manual file downloads required for players joining your world.
What does server-first mean for you?
- Players who join your modded server get all mod content automatically — no separate downloads
- Singleplayer mods work the same way since your local game runs a local server
- There are no client-side-only mods (custom shaders or personal UI tweaks) — this is a trade-off of the system
Three Types of Mods in Hytale
Hytale mods come in three flavours, each with different capabilities and complexity levels:
Packs
Add blocks, mobs, items, textures, and behaviors without writing any code. Configured through JSON files and the built-in Asset Editor.
Format: .zip | No coding required
Plugins
Extend game mechanics through the official Java API. Create custom gameplay systems, new commands, and advanced logic.
Format: .jar | Java programming required
Early Plugins
Deep modifications at the bytecode level for advanced developers. These load before the game fully initializes.
Format: .jar | Advanced Java required
For most players, Packs are the way to go — they let you add content without touching a single line of code. Plugins and Early Plugins are for developers who want to create or extend game mechanics programmatically.
Where to Download Mods — CurseForge
The official and safest platform for Hytale mods is CurseForge. Every mod uploaded there goes through malware scanning and manual moderation before it becomes available to download. The library is growing rapidly as more creators join the scene.
Safety tip
Always download mods from CurseForge or other trusted sources. Avoid random links from forums or Discord servers — unsigned mod files can contain malware.
Method 1 — Install via CurseForge App (Recommended)
The easiest way to manage Hytale mods is through the CurseForge desktop application. It handles downloading, installing, updating, and organizing your mods automatically.
Step-by-step setup
- Download the CurseForge app (standalone or Overwolf version) from the official CurseForge website
- Install and launch — Hytale should be detected automatically if it is installed on your system
- Open Hytale in the CurseForge interface
- Go to the Discover or Browse tab to search for mods
- Select a mod and click Install
- Manage all installed mods in the My Mods section
To play with your mods, click Run Game directly from CurseForge, or launch the official Hytale launcher as usual.
Method 2 — Manual Installation (Full Control)
Prefer to manage files yourself? Manual installation gives you full control over which mods go where. Follow these four steps carefully.
Step 1: Download the mod file
Mods come as .zip or .jar files. On CurseForge, click Download file manually or use the Files tab to grab a specific version. If the file is a .jar, do not extract it — drop the .jar directly into the Mods folder.
Step 2: Find the Mods folder
Important
Launch Hytale at least once and reach the main menu before looking for the Mods folder — the game creates the necessary directories on first run.
The Mods folder location depends on your operating system:
Mod folder paths
- Windows:
C:\Users\<YourName>\AppData\Roaming\Hytale\UserData\Mods - Windows shortcut: Press
Win + R, paste%appdata%\Hytale\UserData\Mods, hit Enter - macOS:
~/Library/Application Support/Hytale/UserData/Mods/ - Linux:
/home/<user>/.var/app/com.hypixel.HytaleLauncher/data/Hytale/UserData/Mods
You can also find the folder through the Hytale launcher: click the gear icon in the upper-left corner, then select Open Directory and navigate to the Mods folder.
Step 3: Place the mod file
Drag and drop the downloaded mod file (.jar or .zip) into the Mods folder. The folder name starts with a capital M — make sure you are in the right directory.
Step 4: Activate the mod in-game (required!)
Simply placing a file in the Mods folder does not enable it. Hytale manages mods on a per-world basis, giving you fine-grained control.
For a new world
- Open Hytale and go to Worlds → Create World
- Choose a game mode and enter a name
- Click the gear icon next to the name field
- Check the boxes for the mods you want
- Click Apply Settings → Create World
For an existing world
- In the world list, right-click the world
- Check the boxes for the mods you want
- Click Save World Settings
Mods on a Dedicated Server
If you run a dedicated Hytale server, the mod folder structure looks like this:
HytaleServer/
├── HytaleServer.jar
├── Assets.zip
├── config.json
├── mods/
│ ├── CoolMod.jar
│ └── AnotherMod.zip
└── earlyplugins/
The server automatically detects and loads all mods from the mods/ folder on startup. Early Plugins go in a separate earlyplugins/ folder.
Troubleshooting — Common Issues and Fixes
Hytale generates error logs when a mod fails to load. Check the game console output for specific error messages that can help you pinpoint the issue.
Essential Tips for Beginners
- Check version compatibility — always match the mod version with your Hytale version
- Download from trusted sources only — CurseForge is the safest option
- Read mod descriptions — some mods require other mods as dependencies
- Back up your worlds — especially during Early Access when things can change
- Start small — install one or two mods first, then add more once everything works
Quick Reference — Full Installation Flow
- Launch Hytale once — folders will be created automatically
- Find a mod on CurseForge
- Download the file (
.jaror.zip) - Open the Mods folder:
Win+R→%appdata%\Hytale\UserData\Mods - Drop the file into the Mods folder (do not extract
.jarfiles!) - Open Hytale → go to Worlds
- New world: gear icon → check mods → Apply. Existing world: right-click → check mods → Save
- Play!
Want to validate your mod JSON files? Use our free Mod JSON Validator to check your configurations before loading them into the game. And if you need to set up a whitelist for your server, check out the Whitelist Creator.