Requirements
- Java 21 or newer. Paper 1.21+ requires it.
- 2 GB RAM minimum; start the server with
java -Xmx2G -jar paper.jar nogui. - About 1 GB free disk for Paper, Rune, and a starter world.
install
One command sets up Paper, drops the Rune plugin into plugins/, and bootstraps the scripts directory.
curl -fsSL https://runemc.dev/install.sh | bashjava -Xmx2G -jar paper.jar nogui.While the one-line installer is being finalized, you can install Rune by hand:
plugins/ directory.plugins/Rune/scripts/ on first load.Confirm Rune loaded by running plugins in the server console. You should see Rune in the list.
Scaffold a TypeScript Rune in plugins/Rune/scripts/<name>/:
rune new-script --name helloThat writes rune.jsonc and an index.ts with a working event listener. Reload from the server console with rune reload. Live Bukkit references survive the reload, so iteration is fast: edit, save, reload, see the change in-game.