▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
Моды/Pandora Holograms
Pandora Holograms

Pandora Holograms

A high-performance, packet-based hologram plugin designed for modern paper/spigot minecraft servers.

182
2

PandoraHolograms Logo


About

PandoraHolograms is a modern, feature-rich hologram plugin designed for Paper/Spigot servers. It provides an intuitive command system, seamless PlaceholderAPI integration, and a beautiful web-based editor for creating holograms visually.

Features

Core Features

  • Easy Creation - Create holograms with a single command
  • Multiple Lines - Support for unlimited lines per hologram
  • Color Codes - Full Minecraft color and formatting support
  • Line Management - Add, insert, set, and remove lines easily
  • Persistent Storage - YAML-based storage (easily extensible to MySQL)
  • Permission System - Per-hologram permissions support
  • Configurable Spacing - Customizable line height per hologram

Advanced Features

  • PlaceholderAPI Integration - Automatic placeholder parsing and updates
  • Visual Editor - Web-based editor with live preview
  • Command Export - Export holograms from the editor to in-game commands
  • Clone System - Easily duplicate holograms
  • Teleportation - Teleport to hologram locations
  • Info Display - View detailed hologram information

Commands

Basic Commands

CommandDescriptionPermission
/holo create <name> [lines...]Create a new hologrampandoraholograms.create
/holo addline <name> <text>Add a line to the bottompandoraholograms.edit
/holo insertline <name> <index> <text>Insert a line at positionpandoraholograms.edit
/holo setline <name> <index> <text>Set a specific linepandoraholograms.edit
/holo removeline <name> <index>Remove a linepandoraholograms.edit
/holo movehere <name>Move hologram to youpandoraholograms.edit
/holo delete <name>Delete a hologrampandoraholograms.delete
/holo listList all hologramspandoraholograms.use

Utility Commands

CommandDescriptionPermission
/holo teleport <name>Teleport to hologrampandoraholograms.use
/holo clone <source> <newName>Clone a hologrampandoraholograms.create
/holo info <name>Show hologram infopandoraholograms.use
/holo update <name>Update hologram displaypandoraholograms.edit
/holo liveOpen visual editorpandoraholograms.use
/holo versionShow version infopandoraholograms.use
/holo reloadReload pluginpandoraholograms.admin

Command Examples

# Create a simple hologram
/holo create welcome "&e&lWelcome!" "&7To our server"

# Create with multiple lines
/holo create spawn "&e&lSpawn" "" "&7Welcome to spawn!" "&7Enjoy your stay!"

# Add a line
/holo addline welcome "&7Player count: &e%server_online%"

# Insert a line at position 2
/holo insertline welcome 2 "&7New line here"

# Move hologram to your location
/holo movehere welcome

# Clone a hologram
/holo clone welcome welcome2

# View hologram information
/holo info welcome

Editor Preview

Visual Editor

PandoraHolograms includes a beautiful web-based visual editor!

Using the Editor

  1. In-Game: Run /holo live to open the editor in your browser
  2. Standalone: Open plugins/PandoraHolograms/editor.html in your browser
  3. Edit: Create and edit holograms visually with live preview
  4. Export: Click "Export" to get commands ready to paste in-game

Editor Features

  • Live Preview - See your hologram as you type
  • Drag & Drop - Reorder lines by dragging
  • Color Picker - Click to copy color codes
  • Line Numbers - See line positions
  • Insert Lines - Add lines anywhere
  • One-Click Export - Copy commands instantly

API

PandoraHolograms provides a clean, developer-friendly API.

Basic Usage

import com.pandora.holograms.api.PandoraAPI;
import com.pandora.holograms.hologram.Hologram;
import org.bukkit.Location;

// Create a hologram
Hologram holo = PandoraAPI.createHologram("my_holo", location);
holo.addLine("&aHello World!");

// Create with initial lines
List<String> lines = Arrays.asList("Line 1", "Line 2", "Line 3");
Hologram holo2 = PandoraAPI.createHologram("my_holo2", location, lines);

// Get a hologram
Hologram holo = PandoraAPI.getHologram("my_holo");

// Clone a hologram
Hologram clone = holo.clone("clone_name", newLocation);

// Update lines (for PlaceholderAPI)
holo.updateLines(player);

// Delete a hologram
PandoraAPI.deleteHologram("my_holo");

API Methods

PandoraAPI

MethodDescription
createHologram(String, Location)Create empty hologram
createHologram(String, Location, List<String>)Create with lines
getHologram(String)Get hologram by name
deleteHologram(String)Delete hologram
hologramExists(String)Check if exists
getAllHolograms()Get all holograms
moveHologram(String, Location)Move hologram

Permissions

PermissionDescriptionDefault
pandoraholograms.useUse basic commandsOP
pandoraholograms.createCreate hologramsOP
pandoraholograms.editEdit hologram linesOP
pandoraholograms.deleteDelete hologramsOP
pandoraholograms.adminAdmin commands (reload)OP
pandoraholograms.*All permissionsOP

Совместимость

Minecraft: Java Edition

1.21.x1.20.x1.19.x1.18.x1.17.x1.16.x1.15.x1.14.x1.13.x

Платформы

Поддерживаемые окружения

Сервер

Детали

Лицензия:GPL-3.0-or-later
Опубликован:3 месяца назад
Обновлён:3 месяца назад
Главная