DonutShards

โญ โ€” (2 endorsements) ๐Ÿ“ฅ 2,338 downloads ๐Ÿ“Œ v1.2.0 ๐Ÿ“… 5/31/2026
๐ŸŸก Updated this year

By Duong2012G ยท bukkit

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 6/20/2026 ๐Ÿ“… Created: 5/31/2026

๐Ÿ” Analysis

  • ๐Ÿ‘ 0.1% endorsement rate
  • ๐Ÿ† #907 of 1560 bukkit mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐Ÿฉ DonutShard > A feature-rich **custom currency plugin** for PaperMC servers โ€” earn Shards by killing, AFK farming, and spending them in a configurable shop. (https://img.shields.io/badge/version-1.0.0-gold)](CHANGELOG.md) (https://img.shields.io/badge/PaperMC-1.21.x-green)](https://papermc.io) (https://img.shields.io/badge/Java-21-blue)](https://adoptium.net) (https://img.shields.io/badge/license-MIT-lightgrey)](LICENSE) --- ## โœจ Features | Feature | Description | |---|---| | ๐Ÿ’ฐ **Shard Currency** | Custom economy currency with leaderboard, balance commands | | โš”๏ธ **Kill Rewards** | Earn Shards for PvP kills with cooldown and bonus multiplier | | ๐ŸŒ™ **AFK System** | Earn Shards passively while AFK in designated warp zones | | ๐Ÿ›ก๏ธ **Zone Protection** | WorldGuard-like protection for AFK zones (no WorldGuard required) | | ๐Ÿช **Shard Shop** | Multi-category GUI shop โ€” buy items with Shards | | ๐ŸŒ **Multi-language** | 5 built-in languages: `vi` `en` `zh` `es` `fr` | | ๐Ÿ“Š **Leaderboard** | `/shard top` with PlaceholderAPI support | | ๐Ÿ”Œ **Developer API** | Hook into Shard events from other plugins | | ๐Ÿ’พ **Dual Storage** | YAML or SQLite, with WAL-mode async writes | --- ## ๐Ÿ“ฆ Requirements | Requirement | Version | |---|---| | **PaperMC** | 1.21.x | | **Java** | 21+ | | **PlaceholderAPI** | 2.11+ *(optional)* | --- ## โš™๏ธ Installation 1. Download `DonutShard-1.0.0.jar` and drop it into your `/plugins` folder. 2. Start the server โ€” config files generate automatically. 3. Edit `plugins/DonutShard/config.yml` to your liking. 4. Run `/shard reload` in-game to apply changes without restarting. --- ## ๐Ÿ—‚๏ธ File Structure ``` plugins/DonutShard/ โ”œโ”€โ”€ config.yml # Main config (kill reward, storage, leaderboard) โ”œโ”€โ”€ afk.yml # AFK zones, protection rules, earn rates โ”œโ”€โ”€ shop.yml # Shop categories & GUI layout โ”œโ”€โ”€ shops/ โ”‚ โ”œโ”€โ”€ Spawners.yml # Spawner items โ”‚ โ”œโ”€โ”€ Ores.yml # Ore blocks โ”‚ โ””โ”€โ”€ Farm.yml # Farming items โ”œโ”€โ”€ languages/ โ”‚ โ”œโ”€โ”€ en.yml โ”‚ โ”œโ”€โ”€ vi.yml โ”‚ โ”œโ”€โ”€ zh.yml โ”‚ โ”œโ”€โ”€ es.yml โ”‚ โ””โ”€โ”€ fr.yml โ””โ”€โ”€ data/ # YAML storage files (if YAML mode) โ”œโ”€โ”€ balances.yml โ”œโ”€โ”€ afk_sessions.yml โ”œโ”€โ”€ afk_warps.yml โ””โ”€โ”€ daily_earnings.yml ``` --- ## ๐Ÿ”ง Configuration ### `config.yml` โ€” Quick Reference ```yaml language: en # Active language (en/vi/zh/es/fr) kill-reward: enabled: true shards-per-kill: 10 kill-cooldown: 30 # seconds before same kill gives reward again ignore-afk-victims: false bonus-multiplier: enabled: false threshold: 1000 # if victim has >= this many Shards multiplier: 1.5 storage: type: SQLITE # YAML or SQLITE auto-save-interval: 5 # minutes leaderboard: size: 10 ``` ### `afk.yml` โ€” AFK System ```yaml enabled: true shards-per-minute: 1 daily-limit: 100 # 0 = unlimited teleport-cooldown: 5 # seconds between /afk uses auto-detect-afk: true # auto-detect players already in AFK world protection: default: no-damage: true no-hunger: true no-pvp: true no-mob-spawn: true no-item-drop: true restore-health-on-enter: true clear-effects-on-enter: true ``` ### Adding a Shop Category 1. Create `plugins/DonutShard/shops/MyCategory.yml`: ```yaml gui-title: "<gold>โญ My Category" items: - id: DIAMOND name: "<aqua>๐Ÿ’Ž Diamond" price: 100 slot: 10 quantity: 1 lore: - "<gray>Shiny and expensive" - id: SPAWNER name: "<red>๐Ÿ”ฅ Blaze Spawner" spawnertype: BLAZE price: 5000 slot: 11 quantity: 1 ``` 2. Add the category to `shop.yml` under `categories`: ```yaml categories: MyCategory: icon: DIAMOND name: "<aqua>My Category" slot: 4 lore: - "<gray>Buy diamonds and spawners" ``` 3. Run `/shard reload`. No restart needed! --- ## ๐Ÿ’ฌ Commands | Command | Description | Permission | |---|---|---| | `/shard balance ` | View Shard balance | `donutshard.balance` | | `/shard give <player> <amount>` | Give Shards | `donutshard.give` | | `/shard take <player> <amount>` | Take Shards | `donutshard.take` | | `/shard set <player> <amount>` | Set Shards | `donutshard.set` | | `/shard top ` | View leaderboard | `donutshard.top` | | `/shard reload` | Reload config | `donutshard.reload` | | `/shard set-afk-warp <name>` | Set AFK warp to a world | `donutshard.admin` | | `/shard remove-afk-warp <name>` | Remove AFK warp | `donutshard.admin` | | `/shard list-afk-warp` | List all AFK warps | `donutshard.admin` | | `/shard language <code>` | Change language | `donutshard.language` | | `/afk ` | Enter an AFK zone | `donutshard.afk` | | `/afk-setting` | Manage AFK zone settings | `donutshard.afk.admin` | | `/shardshop` | Open the Shard Shop | `donutshard.shop` | **Aliases:** `/shard` โ†’ `/donutshard`, `/ds` --- ## ๐Ÿ›ก๏ธ Permissions | Permission | Description | Default | |---|---|---| | `donutshard.balance` | Check own balance | `true`

# ๐Ÿฉ DonutShard

> A feature-rich custom currency plugin for PaperMC servers โ€” earn Shards by killing, AFK farming, and spending them in a configurable shop.

[!(https://img.shields.io/badge/version-1. 0. 0-gold)](CHANGELOG.md) [!(https://img.shields.io/badge/PaperMC-1. 21.x-green)](https://papermc.io) [!(https://img.shields.io/badge/Java-21-blue)](https://adoptium.net) [!(https://img.shields.io/badge/license-MIT-lightgrey)](LICENSE)

## โœจ Features

| Feature | Description | |---|---| | ๐Ÿ’ฐ Shard Currency | Custom economy currency with leaderboard, balance commands | | โš”๏ธ Kill Rewards | Earn Shards for PvP kills with cooldown and bonus multiplier | | ๐ŸŒ™ AFK System | Earn Shards passively while AFK in designated warp zones | | ๐Ÿ›ก๏ธ Zone Protection | WorldGuard-like protection for AFK zones (no WorldGuard required) | | ๐Ÿช Shard Shop | Multi-category GUI shop โ€” buy items with Shards | | ๐ŸŒ Multi-language | 5 built-in languages: `vi` `en` `zh` `es` `fr` | | ๐Ÿ“Š Leaderboard | `/shard top` with PlaceholderAPI support | | ๐Ÿ”Œ Developer API | Hook into Shard events from other plugins | | ๐Ÿ’พ Dual Storage | YAML or SQLite, with WAL-mode async writes |

## ๐Ÿ“ฆ Requirements

| Requirement | Version | |---|---| | PaperMC | 1. 21.x | | Java | 21+ | | PlaceholderAPI | 2. 11+ (optional) |

## โš™๏ธ Installation

1. Download `DonutShard-1. 0. 0.jar` and drop it into your `/plugins` folder. 2. Start the server โ€” config files generate automatically. 3. Edit `plugins/DonutShard/config.yml` to your liking. 4. Run `/shard reload` in-game to apply changes without restarting.

## ๐Ÿ—‚๏ธ File Structure

``` plugins/DonutShard/ โ”œโ”€โ”€ config.yml # Main config (kill reward, storage, leaderboard) โ”œโ”€โ”€ afk.yml # AFK zones, protection rules, earn rates โ”œโ”€โ”€ shop.yml # Shop categories & GUI layout โ”œโ”€โ”€ shops/ โ”‚ โ”œโ”€โ”€ Spawners.yml # Spawner items โ”‚ โ”œโ”€โ”€ Ores.yml # Ore blocks โ”‚ โ””โ”€โ”€ Farm.yml # Farming items โ”œโ”€โ”€ languages/ โ”‚ โ”œโ”€โ”€ en.yml โ”‚ โ”œโ”€โ”€ vi.yml โ”‚ โ”œโ”€โ”€ zh.yml โ”‚ โ”œโ”€โ”€ es.yml โ”‚ โ””โ”€โ”€ fr.yml โ””โ”€โ”€ data/ # YAML storage files (if YAML mode) โ”œโ”€โ”€ balances.yml โ”œโ”€โ”€ afk_sessions.yml โ”œโ”€โ”€ afk_warps.yml โ””โ”€โ”€ daily_earnings.yml ```

## ๐Ÿ”ง Configuration

### `config.yml` โ€” Quick Reference

```yaml language: en # Active language (en/vi/zh/es/fr)

kill-reward: enabled: true shards-per-kill: 10 kill-cooldown: 30 # seconds before same kill gives reward again ignore-afk-victims: false bonus-multiplier: enabled: false threshold: 1000 # if victim has >= this many Shards multiplier: 1. 5

storage: type: SQLITE # YAML or SQLITE auto-save-interval: 5 # minutes

leaderboard: size: 10 ```

### `afk.yml` โ€” AFK System

```yaml enabled: true shards-per-minute: 1 daily-limit: 100 # 0 = unlimited teleport-cooldown: 5 # seconds between /afk uses auto-detect-afk: true # auto-detect players already in AFK world

protection: default: no-damage: true no-hunger: true no-pvp: true no-mob-spawn: true no-item-drop: true restore-health-on-enter: true clear-effects-on-enter: true ```

### Adding a Shop Category

1. Create `plugins/DonutShard/shops/MyCategory.yml`:

```yaml gui-title: "โญ My Category" items: - id: DIAMOND name: "๐Ÿ’Ž Diamond" price: 100 slot: 10 quantity: 1 lore: - "Shiny and expensive" - id: SPAWNER name: "๐Ÿ”ฅ Blaze Spawner" spawnertype: BLAZE price: 5000 slot: 11 quantity: 1 ```

2. Add the category to `shop.yml` under `categories`:

```yaml categories: MyCategory: icon: DIAMOND name: "My Category" slot: 4 lore: - "Buy diamonds and spawners" ```

3. Run `/shard reload`. No restart needed!

## ๐Ÿ’ฌ Commands

| Command | Description | Permission | |---|---|---| | `/shard balance ` | View Shard balance | `donutshard.balance` | | `/shard give ` | Give Shards | `donutshard.give` | | `/shard take ` | Take Shards | `donutshard.take` | | `/shard set ` | Set Shards | `donutshard.set` | | `/shard top ` | View leaderboard | `donutshard.top` | | `/shard reload` | Reload config | `donutshard.reload` | | `/shard set-afk-warp ` | Set AFK warp to a world | `donutshard.admin` | | `/shard remove-afk-warp ` | Remove AFK warp | `donutshard.admin` | | `/shard list-afk-warp` | List all AFK warps | `donutshard.admin` | | `/shard language ` | Change language | `donutshard.language` | | `/afk ` | Enter an AFK zone | `donutshard.afk` | | `/afk-setting` | Manage AFK zone settings | `donutshard.afk.admin` | | `/shardshop` | Open the Shard Shop | `donutshard.shop` |

Aliases: `/shard` โ†’ `/donutshard`, `/ds`

## ๐Ÿ›ก๏ธ Permissions

| Permission | Description | Default | |---|---|---| | `donutshard.balance` | Check own balance | `true`

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
Duong2012G
Version
1.2.0
Downloads
2,338
Endorsements
2
Category
bukkit
Created
5/31/2026
Updated
6/20/2026
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4

๐Ÿ”ง 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 DonutShards support?

The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of DonutShards?

Version 1.2.0, published 2026-06-20 with 2,338 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More bukkit ๐Ÿ‘ค More by Duong2012G ๐Ÿ”Ž Similar Mods ๐ŸŒ Best bukkit (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods