Installation
- Download the latest
groupmanager.jarfile. - Place it inside the
mods/folder of your Hytale server. - Start (or restart) the server.
On first launch, GroupManager will automatically:
- Create the
mods/groupmanager/folder with default configuration. - Generate translation files (
en-US.json,es-PY.json,pt-BR.json) in thelang/directory. - Load default configuration values.
Optional Dependencies
GroupManager works standalone, but integrates with the following plugins when available:
| Plugin | Purpose |
|---|---|
| AutoMultiHud | Multi-HUD provider for displaying group status alongside other HUDs (by Buuz135) |
| MultipleHUD | Alternative multi-HUD provider |
| SimpleClaims | Land claim system — group members are automatically synced as allies (by Buuz135) |
These are detected at startup. If no external HUD plugin is found, GroupManager uses its own InternalMultiHud system — the HUD works out of the box without any additional plugins.
File Structure
After the first run, your server will have:
mods/
groupmanager.jar
groupmanager/
config.json ← Main configuration file
lang/
en-US.json ← English (US) translations
es-PY.json ← Spanish (Paraguay) translations
pt-BR.json ← Portuguese (Brazil) translations
data/
groups.json ← Persisted group data (auto-created)
preferences/ ← Player preference files (auto-created)
Server Requirements
- Hytale Server version
2026.02.19-1a311a592or later - Java 24 or later
manifest.json
The plugin registers with the following manifest:
{
"Group": "HaporeLab",
"Name": "GroupManager",
"Version": "1.0.0",
"Description": "Group management plugin for Hytale servers",
"Authors": [{ "Name": "Alan Laspina", "Url": "https://github.com/laspi94" }],
"ServerVersion": "2026.02.19-1a311a592",
"Dependencies": { "Hytale:EntityModule": "*", "Hytale:AssetModule": "*" },
"Main": "com.groupmanager.GroupManagerPlugin",
"IncludesAssetPack": true
}