Simple Vein Mining

⭐ — (1 endorsements) 📥 2,744 downloads 📌 v2.1.1 📅 4/8/2024
🟠 Updated over a year ago

By Rhythmic · equipment

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 6/11/2025 📅 Created: 4/8/2024

🔍 Analysis

  • 👍 0.0% endorsement rate
  • 🏆 #42 of 84 equipment mods in this game by downloads

📋 About This Mod

# Simple Vein Mining A simple vein-miner plugin for paper and forks of paper servers. There's a lot of configuration options for better customization. ## Default Config ```yml # Which blocks should be affected by vein mining? allowed-blocks: - "minecraft:coal_ore" - "minecraft:coal_block" - "minecraft:deepslate_coal_ore" - "minecraft:copper_ore" - "minecraft:deepslate_copper_ore" - "minecraft:raw_copper_block" - "minecraft:diamond_ore" - "minecraft:deepslate_diamond_ore" - "minecraft:emerald_ore" - "minecraft:deepslate_emerald_ore" - "minecraft:gold_ore" - "minecraft:raw_gold_block" - "minecraft:deepslate_gold_ore" - "minecraft:iron_ore" - "minecraft:raw_iron_block" - "minecraft:deepslate_iron_ore" - "minecraft:lapis_ore" - "minecraft:deepslate_lapis_ore" - "minecraft:redstone_ore" - "minecraft:deepslate_redstone_ore" - "minecraft:nether_gold_ore" - "minecraft:nether_quartz_ore" - "minecraft:ancient_debris" # Should the block list be a blacklist instead of a whitelist? allowed-blocks-is-blacklist: false # Should only blocks of the same type be vein-mined together? For instance ## If a player mines iron and there's coal, should only the iron be mined? # same-type: true types: coal: - "minecraft:coal_ore" - "minecraft:coal_block" - "minecraft:deepslate_coal_ore" copper: - "minecraft:copper_ore" - "minecraft:deepslate_copper_ore" - "minecraft:raw_copper_block" diamond: - "minecraft:diamond_ore" - "minecraft:deepslate_diamond_ore" emerald: - "minecraft:emerald_ore" - "minecraft:deepslate_emerald_ore" gold: - "minecraft:gold_ore" - "minecraft:raw_gold_block" - "minecraft:deepslate_gold_ore" iron: - "minecraft:iron_ore" - "minecraft:raw_iron_block" - "minecraft:deepslate_iron_ore" lapis: - "minecraft:lapis_ore" - "minecraft:deepslate_lapis_ore" redstone: - "minecraft:redstone_ore" - "minecraft:deepslate_redstone_ore" # Should vein-mining work in creative mode works-in-creative: false # Should sound effects and particles play? run-effects: true # Should blocks that would normally drop xp still drop xp when vein-mined? drop-xp: true # Should mined blocks wear down the tool used? damage-tool: enabled: true prevent-breaking: true respect-unbreaking-enchant: true # Should players be required to use the proper tool for the block? # NOTE: proper tool does not necessarily mean effective tool, for instance, a pickaxe is a proper tool for dirt since it will still drop the item. # A shovel is not a proper tool for stone because it will not drop the item. require-proper-tool: true # Should a tool need a specific lore on it? require-lore: enabled: false lore: "<white>Vein Mining</white>" #max blocks to break in one pass. For reference, the largest ore blobs are 52 blocks in size max-blocks-to-break: 64 # Ignore claim protections? ignore-protections: false ``` ## Permissions and commands | Permission | Command | Default | Description | |---------------------|-------------|---------|-----------------------------------------------------------| | `veinmining.mining` | N/A | op | Allows the player to use the vein mining functionality | | `veinmining.reload` | `/vmreload` | op | Allows the player to reload the plugin | | `veinmining.toggle` | `/vmtoggle` | op | Allows player to toggle vein mining off/on for themselves |

# Simple Vein Mining

A simple vein-miner plugin for paper and forks of paper servers. There's a lot of configuration options for better customization.

## Default Config ```yml # Which blocks should be affected by vein mining? allowed-blocks: - "minecraft:coal_ore" - "minecraft:coal_block" - "minecraft:deepslate_coal_ore" - "minecraft:copper_ore" - "minecraft:deepslate_copper_ore" - "minecraft:raw_copper_block" - "minecraft:diamond_ore" - "minecraft:deepslate_diamond_ore" - "minecraft:emerald_ore" - "minecraft:deepslate_emerald_ore" - "minecraft:gold_ore" - "minecraft:raw_gold_block" - "minecraft:deepslate_gold_ore" - "minecraft:iron_ore" - "minecraft:raw_iron_block" - "minecraft:deepslate_iron_ore" - "minecraft:lapis_ore" - "minecraft:deepslate_lapis_ore" - "minecraft:redstone_ore" - "minecraft:deepslate_redstone_ore" - "minecraft:nether_gold_ore" - "minecraft:nether_quartz_ore" - "minecraft:ancient_debris" # Should the block list be a blacklist instead of a whitelist? allowed-blocks-is-blacklist: false # Should only blocks of the same type be vein-mined together? For instance ## If a player mines iron and there's coal, should only the iron be mined? # same-type: true types: coal: - "minecraft:coal_ore" - "minecraft:coal_block" - "minecraft:deepslate_coal_ore" copper: - "minecraft:copper_ore" - "minecraft:deepslate_copper_ore" - "minecraft:raw_copper_block" diamond: - "minecraft:diamond_ore" - "minecraft:deepslate_diamond_ore" emerald: - "minecraft:emerald_ore" - "minecraft:deepslate_emerald_ore" gold: - "minecraft:gold_ore" - "minecraft:raw_gold_block" - "minecraft:deepslate_gold_ore" iron: - "minecraft:iron_ore" - "minecraft:raw_iron_block" - "minecraft:deepslate_iron_ore" lapis: - "minecraft:lapis_ore" - "minecraft:deepslate_lapis_ore" redstone: - "minecraft:redstone_ore" - "minecraft:deepslate_redstone_ore" # Should vein-mining work in creative mode works-in-creative: false # Should sound effects and particles play? run-effects: true # Should blocks that would normally drop xp still drop xp when vein-mined? drop-xp: true # Should mined blocks wear down the tool used? damage-tool: enabled: true prevent-breaking: true respect-unbreaking-enchant: true # Should players be required to use the proper tool for the block? # NOTE: proper tool does not necessarily mean effective tool, for instance, a pickaxe is a proper tool for dirt since it will still drop the item. # A shovel is not a proper tool for stone because it will not drop the item. require-proper-tool: true # Should a tool need a specific lore on it? require-lore: enabled: false lore: "Vein Mining" #max blocks to break in one pass. For reference, the largest ore blobs are 52 blocks in size max-blocks-to-break: 64 # Ignore claim protections? ignore-protections: false ``` ## Permissions and commands

| Permission | Command | Default | Description | |---------------------|-------------|---------|-----------------------------------------------------------| | `veinmining.mining` | N/A | op | Allows the player to use the vein mining functionality | | `veinmining.reload` | `/vmreload` | op | Allows the player to reload the plugin | | `veinmining.toggle` | `/vmtoggle` | op | Allows player to toggle vein mining off/on for themselves |

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
Rhythmic
Version
2.1.1
Downloads
2,744
Endorsements
1
Category
equipment
Created
4/8/2024
Updated
6/11/2025
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
equipment, game-mechanics, 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 Simple Vein Mining 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 Simple Vein Mining?

Version 2.1.1, published 2025-06-11 with 2,744 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

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