Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Quill
PluginGPL-3.0-only

Quill

A feature-filled library to streamline Minecraft plugin development.

52
Downloads
1
Followers
1 years ago
Updated
📦
1
Versions
librarystorageutilitypaperpurpur
Download Latestv2.5.0View on Modrinth

📖About Quill

Quill

Quill is a comprehensive utility library for Paper plugins, providing a wide range of tools and systems to simplify plugin development. It offers everything from configuration management to advanced item creation, all with a clean and intuitive API.

Features

  • 🔧 Configuration System - Annotation-based configuration with automatic updating
  • 💬 Chat System - Advanced message handling with MiniMessage support
  • 💾 JSON Storage - Flexible and type-safe data storage system
  • 📦 Item Management - Powerful item creation and manipulation
  • 📋 Scoreboard System - Simple yet flexible scoreboard creation
  • 🎮 Events System - Streamlined event handling with filtering
  • 🛠️ Utility Classes - Comprehensive collection of utility methods
  • 🔌 Plugin Hooks - Built-in integration with PlaceholderAPI and Vault

Installation

1. Server Installation

First, download and install the Quill plugin on your server:

  1. Download the latest version from Releases
  2. Place the JAR file in your server's plugins folder
  3. Restart your server

2. Development Integration

Gradle (Kotlin DSL)

repositories {
    maven("https://jitpack.io")
}

dependencies {
    compileOnly("com.github.xLevitate:Quill:2.6.0")
}

Gradle (Groovy)

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.xLevitate:Quill:2.6.0'
}

Maven

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

<dependencies>
    <dependency>
        <groupId>com.github.xLevitate</groupId>
        <artifactId>Quill</artifactId>
        <version>2.6.0</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Quick Start

Chat System

// Send formatted message
Chat.sendMessage(player, "<gradient:green:blue>Welcome to the server!</gradient>");

// Send title
Chat.sendTitle(player, "<gold>Welcome!", "<gray>Enjoy your stay");

Configuration

@Configuration("config.yml")
public class MyConfig {
    @Comment("Enable or disable the plugin")
    private boolean enabled = true;

    @Comment("Custom message")
    private String message = "<green>Hello!</green>";
}

Item Creation

ItemStack item = new ItemWrapper()
    .plugin(plugin)
    .material(Material.DIAMOND_SWORD)
    .name("<gradient:blue:purple>Mystic Blade</gradient>")
    .lore(Arrays.asList(
        "<gray>A legendary weapon",
        "<blue>Damage: +50</blue>"
    ))
    .build();

Event Handling

Events.listen(plugin, PlayerJoinEvent.class)
    .filter(event -> !event.getPlayer().hasPlayedBefore())
    .handle(event -> {
        Player player = event.getPlayer();
        Chat.sendMessage(player, "<green>Welcome to the server!");
    });

Documentation

For detailed documentation, please visit our Wiki.

Requirements

  • Java 17 or higher
  • Paper 1.20.4 or higher
  • (Optional) PlaceholderAPI for placeholder support
  • (Optional) Vault for economy support

Support

If you encounter any issues or have questions:

  1. Check the Wiki
  2. Open an Issue

👥 Team & Contributors

levitatedev
levitatedevOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpur
Minecraft Versions
1.20.41.20.51.20.61.211.21.11.21.21.21.3

🔗 Links

Modrinth Page