No Netherite +
🟡 Updated this yearPreview

🔍 Analysis
- 👍 0.1% endorsement rate
- 🏆 #355 of 1560 bukkit mods in this game by downloads
📋 About This Mod
# No Netherite + Have you ever wanted to disable netherite armor on your server but all the plugins aren't really what you are looking for? Well look no more! NoNetherite+ allows you to configure what parts to disable! **Compatibility:** Minecraft 26.x (Java 25) or 1.21.x (Java 21) on Paper/Spigot. Optional soft-depend: PlaceholderAPI. <details> <summary>Paper Configuration</summary> The plugin creates `plugins/NoNetheritePlus/config.yml` (and `limits.yml`) on first startup. After editing, run `/nonetherite reload` to apply changes. ```yml # NoNetheritePlus Configuration # Set to true to disable crafting of netherite items and enable refund system # Set to false to allow normal crafting # Netherite Armor disable_netherite_helmet: true disable_netherite_chestplate: true disable_netherite_leggings: true disable_netherite_boots: true disable_netherite_horse_armor: true # Netherite Tools disable_netherite_sword: false disable_netherite_pickaxe: false disable_netherite_axe: false disable_netherite_shovel: false disable_netherite_hoe: false disable_netherite_spear: false # General Settings refund_materials: true refund_message: "&cNetherite crafting is disabled for this item. Your materials have been refunded." disable_upgrade_templates: false # When false, netherite armor can still receive smithing-table trims even if crafting that armor is disabled disable_netherite_trims: false # Player-facing messages messages: blocked_craft: "&cNetherite crafting is disabled for this item. Your materials have been refunded." blocked_pickup: "&cYou cannot pick up this netherite item." stripped_on_join: "&cDisabled netherite items were removed from your inventory." blocked_equip: "&cEquipping this netherite armor is disabled." # Stronger enforcement (all default off — existing servers stay unchanged) enforcement: block_ancient_debris: false block_scrap_and_ingot_craft: false block_piglin_barter: false block_pickup: false strip_disabled_on_join: false block_equip_disabled: false convert_on_strip: false # Soft possession limit (also mirrored in limits.yml) limits: enabled: false max_netherite_items: 0 # Audit log of blocked actions audit: enabled: false file: audit.log # Periodic Netherite Purge # Removes all netherite items from online players on a timer periodic_purge: enabled: false interval_seconds: 60 # Statistics & Analytics statistics: enabled: true track_refunds: true track_blocked_crafts: true track_template_removals: true track_purged_items: true reset_on_reload: false log_to_file: false # Debug Mode debug: enabled: false log_loot_events: false log_craft_events: false log_config_changes: true verbose_messages: false # World-Specific Configurations worlds: world: world_nether: world_end: # If an item is not specified, the global config will be used. # Configuration Presets (auto-generated) presets: {} ``` ### Netherite Armor Set to `true` to block smithing that item and remove its recipe. Set to `false` to allow normal crafting. | Option | Default | Description | |--------|---------|-------------| | `disable_netherite_helmet` | `true` | Block netherite helmet crafting | | `disable_netherite_chestplate` | `true` | Block netherite chestplate crafting | | `disable_netherite_leggings` | `true` | Block netherite leggings crafting | | `disable_netherite_boots` | `true` | Block netherite boots crafting | | `disable_netherite_horse_armor` | `true` | Block netherite horse armor crafting | ### Netherite Tools Tools are allowed by default. Set to `true` to disable crafting for that item. | Option | Default | Description | |--------|---------|-------------| | `disable_netherite_sword` | `false` | Block netherite sword crafting | | `disable_netherite_pickaxe` | `false` | Block netherite pickaxe crafting | | `disable_netherite_axe` | `false` | Block netherite axe crafting | | `disable_netherite_shovel` | `false` | Block netherite shovel crafting | | `disable_netherite_hoe` | `false` | Block netherite hoe crafting | | `disable_netherite_spear` | `false` | Block netherite spear crafting | ### General Settings | Option | Default | Description | |--------|---------|-------------| | `refund_materials` | `true` | Refund the base item, ingot, and template when a blocked craft is attempted | | `refund_message` | (see config) | Legacy refund message (prefer `messages.blocked_craft`). Supports `&` color codes | | `disable_upgrade_templates` | `false` | Remove netherite upgrade smithing templates from generated loot | | `disable_netherite_trims` | `false` | Block armor trim application on netherite armor | ### Messages | Option | Description | |--------|-------------| | `messages.blocked_craft` | Shown when a smithing upgrade is blocked and refunded | | `messages.blocked_pickup` | Shown when pickup is blocked | | `messages.stripped_on_join` | Shown when disabled items are stripped on join | | `messages.blocked_equip` | Shown when equipping disabled armor
# No Netherite +
Have you ever wanted to disable netherite armor on your server but all the plugins aren't really what you are looking for? Well look no more! NoNetherite+ allows you to configure what parts to disable!
Compatibility: Minecraft 26.x (Java 25) or 1. 21.x (Java 21) on Paper/Spigot. Optional soft-depend: PlaceholderAPI.
Paper Configuration
The plugin creates `plugins/NoNetheritePlus/config.yml` (and `limits.yml`) on first startup. After editing, run `/nonetherite reload` to apply changes.
```yml # NoNetheritePlus Configuration # Set to true to disable crafting of netherite items and enable refund system # Set to false to allow normal crafting
# Netherite Armor disable_netherite_helmet: true disable_netherite_chestplate: true disable_netherite_leggings: true disable_netherite_boots: true disable_netherite_horse_armor: true
# Netherite Tools disable_netherite_sword: false disable_netherite_pickaxe: false disable_netherite_axe: false disable_netherite_shovel: false disable_netherite_hoe: false disable_netherite_spear: false
# General Settings refund_materials: true refund_message: "&cNetherite crafting is disabled for this item. Your materials have been refunded." disable_upgrade_templates: false # When false, netherite armor can still receive smithing-table trims even if crafting that armor is disabled disable_netherite_trims: false
# Player-facing messages messages: blocked_craft: "&cNetherite crafting is disabled for this item. Your materials have been refunded." blocked_pickup: "&cYou cannot pick up this netherite item." stripped_on_join: "&cDisabled netherite items were removed from your inventory." blocked_equip: "&cEquipping this netherite armor is disabled."
# Stronger enforcement (all default off — existing servers stay unchanged) enforcement: block_ancient_debris: false block_scrap_and_ingot_craft: false block_piglin_barter: false block_pickup: false strip_disabled_on_join: false block_equip_disabled: false convert_on_strip: false
# Soft possession limit (also mirrored in limits.yml) limits: enabled: false max_netherite_items: 0
# Audit log of blocked actions audit: enabled: false file: audit.log
# Periodic Netherite Purge # Removes all netherite items from online players on a timer periodic_purge: enabled: false interval_seconds: 60
# Statistics & Analytics statistics: enabled: true track_refunds: true track_blocked_crafts: true track_template_removals: true track_purged_items: true reset_on_reload: false log_to_file: false
# Debug Mode debug: enabled: false log_loot_events: false log_craft_events: false log_config_changes: true verbose_messages: false
# World-Specific Configurations worlds: world: world_nether: world_end: # If an item is not specified, the global config will be used.
# Configuration Presets (auto-generated) presets: {} ```
### Netherite Armor
Set to `true` to block smithing that item and remove its recipe. Set to `false` to allow normal crafting.
| Option | Default | Description | |--------|---------|-------------| | `disable_netherite_helmet` | `true` | Block netherite helmet crafting | | `disable_netherite_chestplate` | `true` | Block netherite chestplate crafting | | `disable_netherite_leggings` | `true` | Block netherite leggings crafting | | `disable_netherite_boots` | `true` | Block netherite boots crafting | | `disable_netherite_horse_armor` | `true` | Block netherite horse armor crafting |
### Netherite Tools
Tools are allowed by default. Set to `true` to disable crafting for that item.
| Option | Default | Description | |--------|---------|-------------| | `disable_netherite_sword` | `false` | Block netherite sword crafting | | `disable_netherite_pickaxe` | `false` | Block netherite pickaxe crafting | | `disable_netherite_axe` | `false` | Block netherite axe crafting | | `disable_netherite_shovel` | `false` | Block netherite shovel crafting | | `disable_netherite_hoe` | `false` | Block netherite hoe crafting | | `disable_netherite_spear` | `false` | Block netherite spear crafting |
### General Settings
| Option | Default | Description | |--------|---------|-------------| | `refund_materials` | `true` | Refund the base item, ingot, and template when a blocked craft is attempted | | `refund_message` | (see config) | Legacy refund message (prefer `messages.blocked_craft`). Supports `&` color codes | | `disable_upgrade_templates` | `false` | Remove netherite upgrade smithing templates from generated loot | | `disable_netherite_trims` | `false` | Block armor trim application on netherite armor |
### Messages
| Option | Description | |--------|-------------| | `messages.blocked_craft` | Shown when a smithing upgrade is blocked and refunded | | `messages.blocked_pickup` | Shown when pickup is blocked | | `messages.stripped_on_join` | Shown when disabled items are stripped on join | | `messages.blocked_equip` | Shown when equipping disabled armor
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- codingsushi
- Version
- 1.6.0+26.x.x
- Downloads
- 9,715
- Endorsements
- 7
- Category
- bukkit
- Created
- 12/12/2025
- Updated
- 7/19/2026
- Game Versions
- 26.1, 26.1.1, 26.1.2
- Tags
- equipment, game-mechanics, management
🔧 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 No Netherite + support?
The author lists 26.1, 26.1.1, 26.1.2. Other versions may work but are untested by the author.
What is the latest version of No Netherite +?
Version 1.6.0+26.x.x, published 2026-07-19 with 9,715 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await