DropRateController

⭐ — (0 endorsements) 📥 57 downloads 📌 v1.0 📅 12/21/2025
🟠 Updated over a year ago

By koirdsuzu · bukkit

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 6/5/2025 📅 Created: 12/21/2025

🔍 Analysis

  • 🏆 #480 of 1080 bukkit mods in this game by downloads

📋 About This Mod

# DropRateController A Minecraft Spigot plugin that allows server administrators to control the drop rate of items from mobs and blocks. ## Features - **Mob Drop Control**: Control the drop rate of items when mobs are killed by players - **Block Drop Control**: Control the drop rate of items when blocks are broken by players - **Configurable Drop Rate**: Set drop rates from 0% to 100% via command or config file - **Permission-Based**: Uses permissions to control who can use the plugin features - **Easy Configuration**: Simple YAML configuration file ## Requirements - Minecraft Server: 1.13+ (Spigot/Paper) - Java: 17 or higher ## Installation 1. Download the latest `DropRateController-1.0-shaded.jar` from the releases 2. Place the JAR file in your server's `plugins` folder 3. Restart your server or use `/reload` command 4. The plugin will create a `config.yml` file in the `plugins/DropRateController` folder ## Configuration The default configuration file (`config.yml`) looks like this: ```yaml dropRate: 1.0 messages: usage: "Usage: /dropchance <get|set <value>>" get: "Current drop rate: %.2f%%" set: "Drop rate updated to %.2f%%" invalid: "Invalid value. Please provide a number between 0 and 100." range_error: "Please enter a number between 0 and 100." no_permission: "You do not have permission to use this command." ``` ### Configuration Options - `dropRate`: The drop rate percentage (0.0 to 100.0). Default is 1.0% - `messages.*`: Customizable messages for various plugin responses ## Commands ### `/dropchance get` Displays the current drop rate percentage. **Permission**: `dropratecontroller.use` ### `/dropchance set <value>` Sets the drop rate to the specified percentage (0-100). **Permission**: `dropratecontroller.use` **Examples**: - `/dropchance set 50` - Sets drop rate to 50% - `/dropchance set 0.5` - Sets drop rate to 0.5% ## Permissions | Permission | Description | Default | |------------|-------------|---------| | `dropratecontroller.use` | Allows access to the dropchance command | op | ## How It Works - **Mob Drops**: When a player kills a mob, the plugin checks if the drop condition is met based on the configured drop rate. If not met, all drops are cleared. - **Block Drops**: When a player breaks a block (with permission), the plugin controls whether items drop based on the configured drop rate. ## Building from Source 1. Clone this repository 2. Make sure you have Maven installed 3. Run `mvn clean package` 4. The compiled JAR will be in the `target` folder ## License This project is open source. Please check the license file for more details. ## Author koirdsuzu --- # DropRateController Mobやブロックからアイテムがドロップする確率を制御できるMinecraft Spigotプラグインです。 ## 機能 - **Mobドロップ制御**: プレイヤーがMobを倒した際のアイテムドロップ率を制御 - **ブロックドロップ制御**: プレイヤーがブロックを破壊した際のアイテムドロップ率を制御 - **設定可能なドロップ率**: コマンドまたは設定ファイルで0%から100%のドロップ率を設定可能 - **権限ベース**: プラグイン機能の使用を権限で制御 - **簡単な設定**: シンプルなYAML設定ファイル ## 必要要件 - Minecraftサーバー: 1.13以上 (Spigot/Paper) - Java: 17以上 ## インストール 1. 最新の `DropRateController-1.0-shaded.jar` をリリースからダウンロード 2. JARファイルをサーバーの `plugins` フォルダに配置 3. サーバーを再起動するか `/reload` コマンドを使用 4. プラグインは `plugins/DropRateController` フォルダに `config.yml` ファイルを作成します ## 設定 デフォルトの設定ファイル (`config.yml`) は以下のようになっています: ```yaml dropRate: 1.0 messages: usage: "Usage: /dropchance <get|set <value>>" get: "Current drop rate: %.2f%%" set: "Drop rate updated to %.2f%%" invalid: "Invalid value. Please provide a number between 0 and 100." range_error: "Please enter a number between 0 and 100." no_permission: "You do not have permission to use this command." ``` ### 設定オプション - `dropRate`: ドロップ率のパーセンテージ (0.0 から 100.0)。デフォルトは 1.0% - `messages.*`: 各種プラグイン応答のカスタマイズ可能なメッセージ ## コマンド ### `/dropchance get` 現在のドロップ率を表示します。 **権限**: `dropratecontroller.use` ### `/dropchance set <value>` ドロップ率を指定したパーセンテージ (0-100) に設定します。 **権限**: `dropratecontroller.use` **例**: - `/dropchance set 50` - ドロップ率を50%に設定 - `/dropchance set 0.5` - ドロップ率を0.5%に設定 ## 権限 | 権限 | 説明 | デフォルト | |------|------|-----------| | `dropratecontroller.use` | dropchanceコマンドへのアクセスを許可 | op | ## 動作の仕組み - **Mobドロップ**: プレイヤーがMobを倒した際、プラグインは設定されたドロップ率に基づいてドロップ条件が満たされているかチェックします。条件が満たされない場合、すべてのドロップがクリアされます。 - **ブロックドロップ**: プレイヤーがブロックを破壊した際(権限がある場合)、プラグインは設定されたドロップ率に基づいてアイテムがドロップするかどうかを制御します。 ## ソースからビルド 1. このリポジトリをクローン 2. Mavenがインストールされていることを確認 3. `mvn clean package` を実行 4. コンパイルされたJARは `target` フォルダにあります ## ライセンス このプロジェクトはオープンソースです。詳細についてはライセンスファイルを確認してください。 ## 作者 koirdsuzu

# DropRateController

A Minecraft Spigot plugin that allows server administrators to control the drop rate of items from mobs and blocks.

## Features

  • Mob Drop Control: Control the drop rate of items when mobs are killed by players
  • Block Drop Control: Control the drop rate of items when blocks are broken by players
  • Configurable Drop Rate: Set drop rates from 0% to 100% via command or config file
  • Permission-Based: Uses permissions to control who can use the plugin features
  • Easy Configuration: Simple YAML configuration file

## Requirements

  • Minecraft Server: 1. 13+ (Spigot/Paper)
  • Java: 17 or higher

## Installation

1. Download the latest `DropRateController-1. 0-shaded.jar` from the releases 2. Place the JAR file in your server's `plugins` folder 3. Restart your server or use `/reload` command 4. The plugin will create a `config.yml` file in the `plugins/DropRateController` folder

## Configuration

The default configuration file (`config.yml`) looks like this:

```yaml dropRate: 1. 0 messages: usage: "Usage: /dropchance >" get: "Current drop rate: %. 2f%%" set: "Drop rate updated to %. 2f%%" invalid: "Invalid value. Please provide a number between 0 and 100." range_error: "Please enter a number between 0 and 100." no_permission: "You do not have permission to use this command." ```

### Configuration Options

  • `dropRate`: The drop rate percentage (0. 0 to 100. 0). Default is 1. 0%
  • `messages.`: Customizable messages for various plugin responses

## Commands

### `/dropchance get` Displays the current drop rate percentage.

Permission: `dropratecontroller.use`

### `/dropchance set ` Sets the drop rate to the specified percentage (0-100).

Permission: `dropratecontroller.use`

Examples: - `/dropchance set 50` - Sets drop rate to 50% - `/dropchance set 0. 5` - Sets drop rate to 0. 5%

## Permissions

| Permission | Description | Default | |------------|-------------|---------| | `dropratecontroller.use` | Allows access to the dropchance command | op |

## How It Works

  • Mob Drops: When a player kills a mob, the plugin checks if the drop condition is met based on the configured drop rate. If not met, all drops are cleared.
  • Block Drops: When a player breaks a block (with permission), the plugin controls whether items drop based on the configured drop rate.

## Building from Source

1. Clone this repository 2. Make sure you have Maven installed 3. Run `mvn clean package` 4. The compiled JAR will be in the `target` folder

This project is open source. Please check the license file for more details.

# DropRateController

Mobやブロックからアイテムがドロップする確率を制御できるMinecraft Spigotプラグインです。

  • Mobドロップ制御: プレイヤーがMobを倒した際のアイテムドロップ率を制御
  • ブロックドロップ制御: プレイヤーがブロックを破壊した際のアイテムドロップ率を制御
  • 設定可能なドロップ率: コマンドまたは設定ファイルで0%から100%のドロップ率を設定可能
  • 権限ベース: プラグイン機能の使用を権限で制御
  • 簡単な設定: シンプルなYAML設定ファイル
  • Minecraftサーバー: 1. 13以上 (Spigot/Paper)
  • Java: 17以上

1. 最新の `DropRateController-1. 0-shaded.jar` をリリースからダウンロード 2. JARファイルをサーバーの `plugins` フォルダに配置 3. サーバーを再起動するか `/reload` コマンドを使用 4. プラグインは `plugins/DropRateController` フォルダに `config.yml` ファイルを作成します

デフォルトの設定ファイル (`config.yml`) は以下のようになっています:

```yaml dropRate: 1. 0 messages: usage: "Usage: /dropchance >" get: "Current drop rate: %. 2f%%" set: "Drop rate updated to %. 2f%%" invalid: "Invalid value. Please provide a number between 0 and 100." range_error: "Please enter a number between 0 and 100." no_permission: "You do not have permission to use this command." ```

### 設定オプション

  • `dropRate`: ドロップ率のパーセンテージ (0. 0 から 100. 0)。デフォルトは 1. 0%
  • `messages.`: 各種プラグイン応答のカスタマイズ可能なメッセージ

### `/dropchance get` 現在のドロップ率を表示します。

権限: `dropratecontroller.use`

### `/dropchance set ` ドロップ率を指定したパーセンテージ (0-100) に設定します。

権限: `dropratecontroller.use`

例: - `/dropchance set 50` - ドロップ率を50%に設定 - `/dropchance set 0. 5` - ドロップ率を0. 5%に設定

| 権限 | 説明 | デフォルト | |------|------|-----------| | `dropratecontroller.use` | dropchanceコマンドへのアクセスを許可 | op |

  • Mobドロップ: プレイヤーがMobを倒した際、プラグインは設定されたドロップ率に基づいてドロップ条件が満たされているかチェックします。条件が満たされない場合、すべてのドロップがクリアされます。
  • ブロックドロップ: プレイヤーがブロックを破壊した際(権限がある場合)、プラグインは設定されたドロップ率に基づいてアイテムがドロップするかどうかを制御します。

## ソースからビルド

1. このリポジトリをクローン 2. Mavenがインストールされていることを確認 3. `mvn clean package` を実行 4. コンパイルされたJARは `target` フォルダにあります

このプロジェクトはオープンソースです。詳細についてはライセンスファイルを確認してください。

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
koirdsuzu
Version
1.0
Downloads
57
Endorsements
0
Category
bukkit
Created
12/21/2025
Updated
6/5/2025
Game Versions
1.13, 1.13.1, 1.13.2, 1.16, 1.16.1
Tags
cursed

🔧 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 DropRateController support?

The author lists 1.13, 1.13.1, 1.13.2, 1.16, 1.16.1, 1.16.2. Other versions may work but are untested by the author.

What is the latest version of DropRateController?

Version 1.0, published 2025-06-05 with 57 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More bukkit 👤 More by koirdsuzu 🔎 Similar Mods 🌐 Best bukkit (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods