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
DropRateController
PluginMIT

DropRateController

Plugin to change item drop rate アイテムのドロップ率を変えるプラグイン

14
Downloads
0
Followers
10 months ago
Updated
📦
1
Versions
cursedbukkitpaperpurpurspigot
Download Latestv1.0View on Modrinth

📖About DropRateController

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:

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) は以下のようになっています:

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

👥 Team & Contributors

koirdsuzu
koirdsuzuOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitpaperpurpurspigot
Minecraft Versions
1.131.13.11.13.21.161.16.11.16.21.16.31.16.4+24 more

🔗 Links

Modrinth Page