Compatibility
Minecraft: Java Edition
1.19.2–1.19.4
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 5 months ago
Updated 5 months ago
🎮 Heldables
Heldables is a lightweight and easy-to-use Minecraft Forge mod that allows you to automate key presses with a single macro key. Perfect for holding down keys like Z
for skills in mods like Tensura Reincarnated! 🚀
✨ Features
- Macro Key: Press the
.
(period) key to toggle holding a specified key (e.g.,Z
). - Customizable: Easily change the macro key and the key to be held in the code.
- Lightweight: Minimal performance impact, designed for smooth gameplay.
- Forge Compatibility: Built for Minecraft Forge 1.19.2.
📥 Installation
- Java Version: Ensure you have Java 17 or higher installed.
- Download the
.jar
file from the Files section. - Place the file in your
.minecraft/mods/
folder. - Launch Minecraft with the Forge profile.
🎮 Usage
-
Default Keybindings:
- Macro Key:
.
(period) to toggle holding the specified key. - Held Key:
Z
(customizable in the code).
- Macro Key:
-
How It Works:
- Press the
.
key to start holding theZ
key. - Press the
.
key again to stop holding theZ
key.
- Press the
🛠️ Customization
To change the macro key or the held key, modify the following lines in the code:
private static final KeyMapping MACRO_KEY = new KeyMapping("key.heldables.macro", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_PERIOD, "key.categories.heldables");
InputConstants.Key key = InputConstants.Type.KEYSYM.getOrCreate(GLFW.GLFW_KEY_Z);