
Powerful in‑game scripting engine for Minecraft automation. VSCode‑style editor, 40+ high‑level commands, themes, debugging tools, and multi‑tasking — perfect for automating farms, utilities, and server‑side workflows.
In‑game scripting and automation framework with a built‑in VSCode‑style editor
Tired of repetitive tasks? Want to automate farming, building, or grinding? Kashub adds a powerful scripting layer to Minecraft with a beautiful built‑in code editor inspired by VSCode.
Unlike other automation mods that require external tools or complex setups, Kashub gives you everything in‑game:
Kif/else, for, while, simple control flow $PLAYER_HEALTH, $PLAYER_X, $PLAYER_Y, $PLAYER_ZKashub is designed to be server‑friendly:
v0.9.0-beta):This lets server owners decide how much automation is allowed on their server (or disable it entirely) while still letting players enjoy Kashub in singleplayer or private worlds.
mods folder K to open the editor
// Auto-heal when low HP
onEvent onDamage {
if ($PLAYER_HEALTH < 10) {
eat golden_apple
print "Emergency heal!"
}
}
// Tree farm automation
loop 100 {
lookAt nearest oak_log
mine
wait 500
}
// Auto-attack nearby mobs
onEvent onTick {
if (nearestEntity zombie < 5) {
attack entity zombie
}
}
// Mine only diamond ore
scanner start diamond_ore
loop {
if ($SCANNER_FOUND) {
pathTo $SCANNER_X $SCANNER_Y $SCANNER_Z
mine
}
wait 1000
}


This is a BETA release:
Please report issues on GitHub Issues.
MIT License – feel free to fork, contribute, and build ports for other loaders (with proper credit).
Made with ❤️ by KasperStudios
In‑game scripting and automation for power users and server owners