Heldables
Heldables is a lightweight and user-friendly Minecraft Forge mod that enables you to automate key presses using just one macro key. Perfect for holding down keys like Z, which is especially helpful when using abilities in mods such as Tensura Reincarnated!
Main Features
- Macro Key: Press the
.(period) key to toggle holding a selected key (e.g.,Z). - Customizable Settings: Easily adjust the macro key or the key to be held directly in the code.
- Minimal Performance Impact: Lightweight design ensures smooth gameplay with no noticeable effect on performance.
- Forge Compatibility: Specifically built for Minecraft Forge version 1.19.2.
Installation Guide
- Download the
.jarfile from the Files section. - Place it in the
.minecraft/mods/folder. - Launch Minecraft using the Forge profile.
How to Use
Default Keybindings
- Macro Key:
.(period) to toggle holding the specified key. - Held Key:
Z(can be modified in the code).
How It Works
- Press the
.key to start holdingZ. - Press
.again to stop holdingZ.
Customization
To change the macro key or the key to be held, 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);