Blackstone is a programming language designed to help create plots on the MCDiamondFire Minecraft server.
Discord DF Website For ease of use with Blackstone, we recommend downloading the Recode Mod.
You can install the compiler using the Cargo toolchain.
text
cargo install shulker
It will automatically handle building from source for you.
You can also install it through our Releases
page on the sidebar. During official releases, we will compile binaries for Windows & Linux.
Note that none of the bonus features are guaranteed to be implemented. We do think they would be useful, though.
None yet! Let us know if there's some cool ones you'd like to see in our Discord!
todo!()
All code must be inside an Event, Function, or Procedure. Here's some basic examples:
```rs playerEvent(Join) { //supports comments too! default.sendMessage("Hello world!"); }
func FunnyFunction { // variables must be manually scoped - local, game, or save var game.joke = "Among us"; // defaults to local var list = ["a", "b", "c"]; // default.sendMessage(...) == print(...) default.sendMessage(joke); } ```