Commands & Administration (26.2)
| Administrative System | Detail |
|---|---|
| Command Engine | Vanilla Minecraft /gamerule Brigadier Command System |
| Namespace | ig: prefix for all rules |
| Permission Level | Level 2 (OP / Singleplayer Cheats Enabled) |
| GUI Administration | Supported via GameRules screen & ModMenu config |
| Absence Policy | Zero custom Brigadier command subtrees by design |
⚡ In-Game Administration Workflow
Durability Multiplier relies entirely on vanilla /gamerule commands. No custom commands (such as /durability set or /durability reload) are added, ensuring 100% native compatibility with vanilla command blocks, functions, permissions, and datapacks.
Common Administrative Tasks
1. Configure Standard Survival Buffs
mcfunction
# Double all items globally (200% durability - Default)
/gamerule ig:dm_percent_global 200
# Give mining tools a 5x (500%) lifespan
/gamerule ig:dm_percent_tools 500
# Give weapons a 3x (300%) lifespan
/gamerule ig:dm_percent_weapons 3002. Configure Combat & PvP Server Settings
mcfunction
# Keep armor at vanilla durability (100%) to prevent overly tanky players
/gamerule ig:dm_percent_armor 100
# Give weapons 2x (200%) durability
/gamerule ig:dm_percent_swords 200
/gamerule ig:dm_percent_bows 2003. Enable Creative-Style Survival (Unbreakable Elytra & Tools)
mcfunction
# Unbreakable Elytra for limitless exploration
/gamerule ig:dm_infinity_elytra true
# Unbreakable Tools for building mega-projects
/gamerule ig:dm_infinity_tools true4. Configure Dynamic Modded Items
mcfunction
# Give a custom modded drill 400% durability
/gamerule ig:percent_techmod_titanium_drill 400
# Make a modded staff unbreakable
/gamerule ig:infinity_magicmod_staff_of_fire true
# Set a modded dagger to Single-Use using the -1 sentinel
/gamerule ig:percent_customweapons_glass_dagger -15. Hide Tooltip Text
mcfunction
# Hide durability multiplier info from item tooltips
/gamerule ig:dm_show_tooltip false