Compatibility
Minecraft: Java Edition
1.21–1.21.1
1.20.5–1.20.6
1.20–1.20.2
Platforms
Fabric
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed MIT
Published last year
Updated 2 months ago
ClientCommands
Adds a couple client utilities in the form of commands.
Curent tools
All commands are subcommands of /client
Command | Description | Example |
---|---|---|
give <item> [amount] |
Creative only (alias: /cive )Gives the player any itemstack, with any NBT. Vanilla syntax. |
give apple{display:{Name:'{"text":"abc"}'}} 1 |
rename <name> [customName] |
Creative only Renames the item the player is currently holding. Simple syntax for quick renaming of items. Set customName to true to mimic anvil rename behavior. |
rename "Cool Sword" false |
rename json <name> |
Same as above, but accepts any valid text component(s). | rename json {"text":"Cool Sword","color":"gold"} |
enchant add <enchantment> <level> |
Creative only Puts the desired enchantment on the player's currently held item. Does not have the limitations the vanilla command has. |
enchant add minecraft:depth_strider 10 |
enchant clear |
Creative only Clears all enchantments on held item. |
enchant clear |
enchant remove <enchantment> |
Creative only Removes enchantment from player's currently held item. |
enchant remove minecraft:depth_strider |
modifier list |
Lists attribute modifiers on player's currently held item. | modifier list |
modifier add <attribute> <operation> <value> <slot> |
Creative only Add attribute modifier to held item. |
modifier add minecraft:generic.armor_toughness add_multiplied_base 2 armor |
modifier remove <uuid> |
Creative only Remove attribute modifier from held item. |
modifier remove bae7d9d5-6221-45e3-9d14-4956229557f2 |
modifier modify <uuid> <attribute|operation|value|slot|> <value> |
Creative only Lists attribute modifiers on player's currently held item. |
modifier modify bae7d9d5-6221-45e3-9d14-4956229557f2 slot hand |