Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
kashub
ModMIT

kashub

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.

64
Downloads
3
Followers
3 months ago
Updated
📦
6
Versions
game-mechanicsutilityfabric
Download Latestvv0.9.0-betaView on Modrinth

📖About kashub

🎮 Kashub – In‑Game Scripting Engine for Minecraft

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.

⚡ Why Kashub?

Unlike other automation mods that require external tools or complex setups, Kashub gives you everything in‑game:

  • No external editors needed – Open the editor with K
  • Easy to learn – KHScript with Lua/JavaScript‑inspired syntax
  • Beautiful UI – 10+ professional editor themes
  • Multiplayer‑proven – Used on real servers in real scenarios
  • Open source – MIT License, fully transparent

🔥 Key Features

Built‑in Code Editor

  • Syntax highlighting for KHScript
  • Auto‑completion (Ctrl+Space)
  • 10+ themes – Dracula, One Dark Pro, Tokyo Night, Cyberpunk, and more
  • Search & script browser – Find and manage scripts quickly
  • Keybind support – Launch scripts with hotkeys

Scripting Engine

  • 44+ commands – Movement, interaction, basic combat logic, inventory, world utilities
  • Event system – React to damage, ticks, chat, deaths and more
  • Variables & logic – if/else, for, while, simple control flow
  • Environment variables – e.g. $PLAYER_HEALTH, $PLAYER_X, $PLAYER_Y, $PLAYER_Z

Developer Tools

  • Logging system – Track script execution and debug output
  • Task manager – Run multiple scripts at the same time
  • Clear error handling – Helpful error messages instead of silent failures

🛡 Fair‑Play & Server Control

Kashub is designed to be server‑friendly:

  • Planned server‑authoritative control (will be in update v0.9.0-beta):
    • Server‑side config that can override client settings
    • Ability to disable the editor on specific servers
    • Ability to block specific commands / namespaces from running on the client
  • The client respects server decisions and does not try to bypass them

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.

📚 Quick Start

  1. Install Fabric 1.21.1 and Fabric API
  2. Drop Kashub into your mods folder
  3. Launch Minecraft and press K to open the editor

Script editor

  1. Write your first script:
// Auto-heal when low HP
onEvent onDamage {
  if ($PLAYER_HEALTH < 10) {
    eat golden_apple
    print "Emergency heal!"
  }
}
  1. Press F5 to run!

💡 Example Scripts

Auto‑Farm

// Tree farm automation
loop 100 {
    lookAt nearest oak_log
    mine
    wait 500
}

Auto‑Combat (PvE‑style)

// Auto-attack nearby mobs
onEvent onTick {
    if (nearestEntity zombie < 5) {
        attack entity zombie
    }
}

Smart Mining

// Mine only diamond ore
scanner start diamond_ore
loop {
    if ($SCANNER_FOUND) {
        pathTo $SCANNER_X $SCANNER_Y $SCANNER_Z
        mine
    }
    wait 1000
}

🎨 Customization

Settings

📚 In‑Game Docs

Docs

🛠 Technical Details

  • Language: KHScript (custom scripting language)
  • Commands: 44+ built‑in automation commands
  • Loader: Fabric 1.21.1
  • Dependencies: Fabric API
  • License: MIT

⚠ Beta Notice

This is a BETA release:

  • Core features are stable and usable
  • Some edge cases may still exist
  • Feedback and bug reports are very welcome

Please report issues on GitHub Issues.

🔗 Links

  • GitHub: https://github.com/KasperStudios/Kashub
  • Documentation: In‑game via the “Docs” button (all commands listed)
  • Discord: KasHub Community

📜 License

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

👥 Team & Contributors

kasperenok
kasperenokOwner

⚙️ Compatibility

Environment
💻 Client-side
Loaders
fabric
Minecraft Versions
1.21.1

🔗 Links

Modrinth Page