HomeJavaModsSimpleHolograms
SimpleHolograms
[​IMG]
What's it?
Holograms is an implementation of text and item holograms in a CraftBukkit/Spigot server environment. It's creation was inspired by filoghost's HolographicDisplays and was initially created to be a stripped implementation. Over time, the plugin has matured and now features a fully expansive API for developers which allows many different possibilities. So today i present this.
Features
Usage (in-server)
This is a list commands managment to control holograms:
All commands use the permission "simpleholograms.command".
Screenshots
Spoiler
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
[​IMG]
Using SimpleHolograms for Developers

To use Holograms in your plugins, add the SimpleHolograms module to your build path. Then add Holograms as a dependency in your plugin.yml file:
Code (Text):
depend: [SimpleHolograms]
Hologram creation is made easy with my API.

Code (Text):
package com.jaapagamerz.simpleholograms.api;

import org.bukkit.Location;

import com.jaapagamerz.simpleholograms.Manager;
import com.jaapagamerz.simpleholograms.utils.FileUtil;

public class API {

    private static API instance = new API();
 
    private API() {
    }
 
    public static API getInstance() {
        return instance;
    }

    public GenerateHolograms createHologram(String name, Location location, String content) {
        return new GenerateHolograms(name, location, content);
    }

    public void deleteHologram(String name) {
        GenerateHolograms hologram = Manager.getInstance().search(name);
        if (hologram != null) {
            Manager.getInstance().getHologramSet().remove(hologram);
            FileUtil.getInstance().getDataConfig().set("holograms." + name.toLowerCase(), null);
            FileUtil.getInstance().saveData();
            hologram.remove();
        }
    }

    public GenerateHolograms getHologram(String name) {
        return Manager.getInstance().search(name);
    }

}
 

Terms and Conditions

Commands

Plugin details

Read from the plugin's own plugin.yml.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

SimpleHolograms is a free Minecraft Java mod. Compatible with Minecraft 1.9, 1.10, 1.11, 1.12. Downloaded 662 times (via Spigot). Download it and open it directly in the game.

Explore more