Skip to content
/ Bits Public

🦑 Utility plugin for Minecraft development

License

Notifications You must be signed in to change notification settings

ImBit/Bits

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

317 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bits

💾 A Utility library for Minecraft development.

JitPack License

About

Bits is a multi-platform Minecraft utility library designed to streamline plugin development across Paper and Velocity platforms. It provides common utilities, abstractions, and helper classes to reduce boilerplate code and accelerate your development workflow.

Features:

  • Multi-platform support
  • Annotation-based Brigadier Command API (Paper, Velocity, +)
  • Automatic Text formatting
  • Common Plugin utilities (Color, Sound, Location, Item, Math, Permission APIs)

Note

This project is in active development, expect regular changes and additions!

Installation

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
    maven { url = uri("https://jitpack.io") }
}

dependencies {
    // Core API (required)
    implementation("com.github.ImBit.Bits:API:0.0.6")

    // Paper implementation
    implementation("com.github.ImBit.Bits:Paper:0.0.6")

    // Velocity implementation
    implementation("com.github.ImBit.Bits:Velocity:0.0.6")
}

Maven

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
<!-- Core API (required) -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>API</artifactId>
    <version>0.0.6</version>
</dependency>

<!-- Paper implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Paper</artifactId>
    <version>0.0.6</version>
</dependency>

<!-- Velocity implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Velocity</artifactId>
    <version>0.0.6</version>
</dependency>
</dependencies>

Libraries

  • API - Core interfaces and abstractions
  • Paper - Paper platform implementation
  • Velocity - Velocity platform implementation

Made with 🦑 by ImBit

About

🦑 Utility plugin for Minecraft development

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages