https://github.com/luncaaa/advanceddisplays
Create block, item and text displays!
https://github.com/luncaaa/advanceddisplays
minecraft minecraft-plugin plugin spigot-plugin
Last synced: about 2 months ago
JSON representation
Create block, item and text displays!
- Host: GitHub
- URL: https://github.com/luncaaa/advanceddisplays
- Owner: Luncaaa
- License: gpl-3.0
- Created: 2023-05-27T18:33:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-04-18T01:38:43.000Z (about 2 months ago)
- Last Synced: 2026-04-18T03:29:31.095Z (about 2 months ago)
- Topics: minecraft, minecraft-plugin, plugin, spigot-plugin
- Language: Java
- Homepage: https://www.spigotmc.org/resources/advanceddisplays.110865/
- Size: 1.33 MB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AdvancedDisplays
Create entity, block, item and text displays!
## Links & Support
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
## How to compile
The plugin is compiled using Gradle and Java 21. It can run on Java 17 on versions <1.20.5, but it must run with Java 21 on >=1.20.5.
Build the jar running the Gradle command "./gradlew build" in the root folder.
## Developer API [](https://jitpack.io/#Luncaaa/AdvancedDisplays)
> You can find the docs [here](https://javadoc.jitpack.io/com/github/Luncaaa/AdvancedDisplays/main-SNAPSHOT/javadoc)
Maven
```xml
jitpack.io
https://jitpack.io
```
```xml
com.github.Luncaaa
AdvancedDisplays
{PLUGIN VERSION}
```
Gradle
```groovy
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Luncaaa:AdvancedDisplays:{PLUGIN VERSION}'
}
```