Compatibility
Minecraft: Java Edition
1.21.5
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 2 months ago
Updated 2 months ago
KEYITEM
A minecraft mod that allows you to map keybinds to slash commands, allowing you to easily run commands.
Editing Keymap
Go to your .minecraft/config
folder, and edit the keymaps.json
file. You can see that each keybind is in the
following format:
"Slash_Command": {
"modifierKey": 342,
"primaryKey": 72
},
Slash_Command
can be any command without the/
symbol. For example,give @s minecraft:ender_pearl
modifierKey
can bealt
,ctrl
or any other key, remember that it will only accept keycode.primaryKey
is the letter keycode that is part of the alphabet.
"give @s minecraft:ender_pearl": {
"modifierKey": 342,
"primaryKey": 85
},