Skip to content

Commands & Administration (26.1.2)

Administrative SystemDetail
Command EngineVanilla Minecraft /gamerule Brigadier Command System
Namespaceig: prefix for all rules
Permission LevelLevel 2 (OP / Singleplayer Cheats Enabled)
GUI AdministrationSupported via GameRules screen & ModMenu config
Absence PolicyZero 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 300

2. 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 200

3. 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 true

4. 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 -1

5. Hide Tooltip Text

mcfunction
# Hide durability multiplier info from item tooltips
/gamerule ig:dm_show_tooltip false

Official documentation & web portal for Dasik Igaijinn mods.