Create block, item and text displays!
You can download the plugin here:
- Spigot resource page: https://www.spigotmc.org/resources/advanceddisplays.110865/
- Hangar resource page: https://hangar.papermc.io/Lucaaa/AdvancedDisplays
- Modrinth resource page: https://modrinth.com/plugin/advanceddisplays
- Wiki: https://lucaaa.gitbook.io/advanceddisplays/
- Javadocs: https://javadoc.jitpack.io/com/github/Luncaaa/AdvancedDisplays/main-SNAPSHOT/javadoc
- Dev build: https://github.com/Luncaaa/AdvancedDisplays/releases/tag/dev
If you have an issue, found a bug or want to suggest something, you can do it here:
- Spigot discussion page: https://www.spigotmc.org/threads/advanceddisplays.609868/
- GitHub issues: https://github.com/Luncaaa/AdvancedDisplays/issues
- Contact me on Discord: Lucaaa#6268 / luncaaa
The plugin is compiled using Maven and Java 21, although it can run with Java 17. Build the jar running the Gradle command "./gradlew build" in the root folder.
You can find the docs here
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Luncaaa</groupId>
<artifactId>AdvancedDisplays</artifactId>
<version>{PLUGIN VERSION}</version>
</dependency>
</dependencies>
Gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Luncaaa:AdvancedDisplays:{PLUGIN VERSION}'
}