SkillAgentSearch skills...

InventoryGUI

Simple Minecraft inventory generator for dsl style library for PaperMC

Install / Use

/learn @devproje/InventoryGUI
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

InventoryGUI

A papermc GUI library.

Features

  • DSL style code
  • Modular inventory GUI without the requirement of event declaration

Dokka

You can see the Dokka document.

Contact

If you wanna send issues or discussions or PR more the faster, please contact with my discord server!

  • Discord Server: Link

License

This library is licensed under the General Public License v3.0.

Import Library

  • Maven
<repositories>
    <repository>
        <releases>
            <enabled>true</enabled>
        </releases>
        <id>central</id>
        <url>https://repo.maven.apache.org/maven2</url>
    </repository>
</repositories>

<dependency>
    <groupId>net.projecttl</groupId>
    <artifactId>InventoryGUI-api</artifactId>
    <version>VERSION</version>
</dependency>
  • Gradle (Groovy DSL)
repositories {
  mavenCentral()
}

dependencies {
  implementation 'net.projecttl:InventoryGUI-api:VERSION'
}
  • Gradle (Kotlin DSL)
repositories {
  mavenCentral()
}

dependencies {
  implementation("net.projecttl:InventoryGUI-api:VERSION")
}

If you are using spigot/paper 1.17+, you can use the library-loading feature instead of shading.

  • plugin.yml (1.17+)
# ...
libraries:
  - net.projecttl:InventoryGUI-api:VERSION
# ...

How to use this Library

This library is kotlin-optimized. DSL pattern will break unless you use kotlin.

class TestGui {
  fun inventory(player: Player) {
    player.gui(Component.text("TestGUI"), InventoryType.CHEST_27) {
        
        // Prints 'Hello!' when clicked
        slot(0, ItemStack(Material.GRASS_BLOCK)) {
            player.sendMessage("Hello!")
        }

        // Does nothing on click
        slot(1, ItemStack(Material.IRON_INGOT))
    }
  }
}

More examples here

View on GitHub
GitHub Stars18
CategoryDevelopment
Updated1mo ago
Forks7

Languages

Kotlin

Security Score

90/100

Audited on Feb 6, 2026

No findings