Quill
🟠 Updated over a year agoPreview

🔍 Analysis
- 🏆 #3 of 20 library mods in this game by downloads
📋 About This Mod
# Quill (https://jitpack.io/v/xLevitate/Quill.svg)](https://jitpack.io/#xLevitate/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 (https://github.com/xLevitate/Quill/releases) 2. Place the JAR file in your server's `plugins` folder 3. Restart your server ### 2. Development Integration #### Gradle (Kotlin DSL) ```kotlin repositories { maven("https://jitpack.io") } dependencies { compileOnly("com.github.xLevitate:Quill:2.6.0") } ``` #### Gradle (Groovy) ```groovy repositories { maven { url 'https://jitpack.io' } } dependencies { compileOnly 'com.github.xLevitate:Quill:2.6.0' } ``` #### Maven ```xml <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 ```java // 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 ```java @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 ```java 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 ```java 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 (https://github.com/xLevitate/Quill/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 (https://github.com/xLevitate/Quill/wiki) 2. Open an (https://github.com/xLevitate/Quill/issues)
# Quill [](https://jitpack.io/#xLevitate/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 (https://github.com/xLevitate/Quill/releases) 2. Place the JAR file in your server's `plugins` folder 3. Restart your server
### 2. Development Integration
#### Gradle (Kotlin DSL) ```kotlin repositories { maven("https://jitpack.io") }
dependencies { compileOnly("com.github.xLevitate:Quill:2. 6. 0") } ```
#### Gradle (Groovy) ```groovy repositories { maven { url 'https://jitpack.io' } }
dependencies { compileOnly 'com.github.xLevitate:Quill:2. 6. 0' } ```
#### Maven
```xml
## Quick Start
### Chat System
```java
// Send formatted message
Chat.sendMessage(player, "
// Send title
Chat.sendTitle(player, "
### Configuration ```java @Configuration("config.yml") public class MyConfig { @Comment("Enable or disable the plugin") private boolean enabled = true;
@Comment("Custom message")
private String message = "
### Item Creation
```java
ItemStack item = new ItemWrapper()
.plugin(plugin)
.material(Material. DIAMOND_SWORD)
.name("
### Event Handling
```java
Events.listen(plugin, PlayerJoinEvent.class)
.filter(event -> !event.getPlayer().hasPlayedBefore())
.handle(event -> {
Player player = event.getPlayer();
Chat.sendMessage(player, "
## Documentation
For detailed documentation, please visit our (https://github.com/xLevitate/Quill/wiki).
## Requirements
- Java 17 or higher
- Paper 1. 20. 4 or higher
- (Optional) PlaceholderAPI for placeholder support
- (Optional) Vault for economy support
If you encounter any issues or have questions: 1. Check the (https://github.com/xLevitate/Quill/wiki) 2. Open an (https://github.com/xLevitate/Quill/issues)
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- levitatedev
- Version
- 2.5.0
- Downloads
- 77
- Endorsements
- 1
- Category
- library
- Created
- 11/5/2024
- Updated
- 11/4/2024
- Game Versions
- 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1
- Tags
- library, storage, utility
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does Quill support?
The author lists 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1, 1.21.2. Other versions may work but are untested by the author.
What is the latest version of Quill?
Version 2.5.0, published 2024-11-04 with 77 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await