Autokey has been archived. Autokey will not receive any further updates unless the author decides to unarchive the project.
Compatibility
Minecraft: Java Edition
1.20.4–1.20.6
1.20.1–1.20.2
1.19–1.19.2
1.18.2
1.17.1
Platforms
Fabric
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed MIT
Published 2 years ago
Updated 5 months ago
Autokey is a free and open-source fabric mod for Minecraft that aims to provide a simple and easy-to-understand scripting interface.
This mod allows you to write and use scripts or macros that can press keys, send chat messages, do calculations and much more!
📥 Installation
Just drop the mod and the Fabric API into your mods folder.
Press B
to open the main menu.
📝 Scripts
You can code your own scripts or download some from the snippets section of this project on GitLab.
Suggestions
GUI
Example projects
Chat calculator
Code:
parts = split(message, " ")
firstNumber = getArrayElementAt(parts, 1)
operator = getArrayElementAt(parts, 2)
secondNumber = getArrayElementAt(parts, 3)
result = "invalid"
if (operator == "+")
{
result = parseDouble(firstNumber) + parseDouble(secondNumber)
}
if (operator == "-")
{
result = parseDouble(firstNumber) - parseDouble(secondNumber)
}
if (operator == "*")
{
result = parseDouble(firstNumber) * parseDouble(secondNumber)
}
if (operator == "/")
{
result = parseDouble(firstNumber) / parseDouble(secondNumber)
}
print(firstNumber _ " " _ operator _ " " _ secondNumber _ " = " _ toString(result))