Commands - EliteScouter/EliteHolograms GitHub Wiki
Elite Holograms uses a main command /eh (or /eliteholograms) followed by subcommands to manage holograms. All commands support tab completion for convenience.
Permissions Note: Access to these commands is controlled by the Permissions system. Users will need the appropriate permission node (e.g., eliteholograms.create) or Operator (OP level 2) status if no compatible permission mod (LuckPerms, FTB Ranks) is found.
| Command | Description | Permission Suffix |
|---|---|---|
/eh create <id> <text...> |
Creates a new hologram at your current location. | .create |
/eh delete <id> |
Deletes the specified hologram. | .delete |
/eh list [page] |
Lists all existing holograms. | .list |
/eh addline <id> <text...> |
Adds a new line of text to the end of a hologram. | .edit |
/eh setline <id> <line_number> <text...> |
Sets the text for a specific line of a hologram. | .edit |
/eh insertline <id> <line_number> <text...> |
Inserts a new line at a specific position. | .edit |
/eh removeline <id> <line_number> |
Removes a specific line from a hologram. | .edit |
/eh movehere <id> |
Moves an existing hologram to your current location. | .edit |
/eh teleport <id> |
Teleports you to the specified hologram. | .teleport |
/eh info <id> |
Displays detailed information about a hologram. | .info |
/eh near [page] |
Lists holograms near your current location. | .near |
/eh copy <source_id> <new_id> |
Creates a copy of an existing hologram with a new ID. | .create |
/eh reload |
Reloads all holograms from the configuration file. | .admin |
/eh createscoreboard <id> <objective> [count] [interval] |
Creates a leaderboard hologram. | .create |
/eh animateline <id> <line> <seconds> <frames> |
Animates a line to cycle through text. | .edit |
/eh createitem <id> <item> [text...] |
Creates a hologram with a floating item. | .create |
/eh movevertical <id> <up/down> <amount> |
Moves a hologram vertically. | .edit |
Arguments:
-
<id>: The unique identifier for the hologram (case-insensitive). -
<text...>: The text content for the hologram line. You can use Minecraft color codes (e.g.,&a,&l) and Placeholders. -
<line_number>: The number of the line you want to modify (starting from 1 for the first line). -
[page]: Optional page number for commands that list multiple items (/eh list,/eh near). -
<source_id>: The ID of the hologram to copy from. -
<new_id>: The ID for the newly copied hologram.
-
Create a simple welcome hologram:
/eh create server_welcome &bWelcome to Our Server! -
Add a line with a placeholder:
/eh addline server_welcome &eEnjoy your stay, %player%! -
Set the first line of a hologram named
rules_info:/eh setline rules_info 1 &cServer Rules - Read Carefully! -
Delete a hologram:
/eh delete old_event_holo -
Move a hologram to your feet:
/eh movehere server_welcome
For using dynamic information like player names or server stats, see the Placeholders guide. For controlling who can use these commands, see the Permissions guide.