TaleMiniHolograms
A comprehensive hologram plugin for Hytale servers, built with TaleLib.
Features
- Create floating text holograms in your world
- Multi-line hologram support with configurable spacing
- Visual UI-based editor for editing hologram content
- Persistent holograms that survive server restarts
- Clone, rename, move, and delete holograms
- Auto-save functionality
GUI Showcase

Commands
All commands use the /tmh prefix.
| Command | Permission | Description |
|---|---|---|
/tmh create <name> |
tmh.create |
Create a new hologram at your location |
/tmh edit <name> |
tmh.edit |
Open the visual UI editor |
/tmh delete <name> |
tmh.delete |
Delete a hologram |
/tmh list |
tmh.list |
List all holograms |
/tmh movehere <name> |
tmh.move |
Move hologram to your location |
/tmh goto <name> |
tmh.goto |
Teleport to a hologram |
/tmh clone <name> [newname] |
tmh.clone |
Clone a hologram |
/tmh rename <old> <new> |
tmh.rename |
Rename a hologram |
/tmh reload |
tmh.admin |
Reload config and respawn holograms |
/tmh help |
- | Show help |
Permission Groups
tmh.*- All permissionstmh.admin- Admin commands (reload)
UI Editor
Use /tmh edit <name> to open the visual hologram editor:
- + / - buttons to add or remove lines
- Text fields for each line of the hologram
- Scroll buttons to navigate through lines (6 visible at a time)
- Save / Cancel buttons to apply or discard changes
Configuration
config.json
{
"defaultText": "Edit this Hologram using /tmh edit {name}",
"lineSpacing": 0.25,
"autoSaveIntervalSeconds": 300,
"maxLinesPerHologram": 20
}
| Option | Description |
|---|---|
defaultText |
Text shown when creating a new hologram. {name} is replaced with hologram name |
lineSpacing |
Vertical spacing between lines (in blocks) |
autoSaveIntervalSeconds |
Auto-save interval (0 to disable) |
maxLinesPerHologram |
Maximum lines per hologram |
holograms.json
Stores all hologram data. Managed automatically - do not edit manually while server is running.
Installation
- Install TaleLib plugin
- Place
TaleMiniHolograms.jarin your server'spluginsfolder - Start the server
- Use
/tmh create testto create your first hologram
For Developers
TaleMiniHolograms is built on TaleLib, which provides a hologram API you can use in your own plugins.

