Welcome to the official repository for verified Kashub scripts. This collection powers the in-game marketplace for the Kashub Mod.
If you want your script to be accessible to all users directly inside the mod, you are in the right place!
The repository is organized into two main directories:
manifests/: Contains metadata files (.json) describing each script.scripts/: Contains the actual source code files (.kh).
root/
βββ manifests/
β βββ auto_miner.json
βββ scripts/
βββ auto_miner_v1.kh
We welcome contributions from the community! To add your script to the marketplace, follow these steps:
- Fork this repository.
- Add your script file (
.kh) to thescripts/folder. - Create a manifest file (
.json) in themanifests/folder (see format below). - Submit a Pull Request.
Your JSON file in manifests/ must follow this structure:
{
"name": "example script",
"description": "Write a 'hello world!' in chat for player",
"author": "kasperenok",
"version": "1.0.0",
"script_file": "example.kh",
"category": "utility",
"min_mod_version": "0.8.0"
}
script_file: Must match the filename in thescripts/folder exactly.category: Suggested values:utility,pvp,building,fun.
All submissions are manually reviewed to ensure safety and quality.
- Scripts containing malicious code or harmful actions will be rejected.
- Ensure your code is clean and readable.