Crates.io | shulkerscript |
lib.rs | shulkerscript |
version | 0.1.0 |
source | src |
created_at | 2024-10-01 10:02:46.573413 |
updated_at | 2024-10-01 10:02:46.573413 |
description | Shulkerscript language implementation with compiler |
homepage | https://shulkerscript.hoelting.dev/ |
repository | https://github.com/moritz-hoelting/shulkerscript-lang |
max_upload_size | |
id | 1392685 |
size | 269,235 |
Shulkerscript is a simple, easy-to-use scripting language for Minecraft datapacks. It is designed to be easy to learn and use, while still being powerful enough to create complex scripts, while not being hindered by Minecraft command limitations.
Add the following to your dependencies in Cargo.toml
:
[dependencies]
shulkerscript = "0.1.0"
A VS Code extension is available here to provide syntax highlighting and snippets for Shulkerscript files.
#[load]
fn load() {
/say Loaded!
hello();
}
fn hello() {
/say Hello, world!
}
as("@a") { // execute as all players
/say Hello,
/say world!
}
Chained execute blocks are also supported:
as("@a"), at("@s") { // execute as all players at the executing entity
/setblock ~ ~ ~ minecraft:diamond_block
}
if("@s[tag=foo]" && "block ~ ~-1 ~ minecraft:stone") { // if the executing entity has the tag "foo" and is standing on stone
/tag @s remove foo
/say Hello, foo!
} else {
/say Hello, world!
}
Unlike in mcfunction
files, the actions in the conditional blocks are atomic, meaning that once the condition is fullfilled the actions are executed even after the condition is no longer fullfilled (in this case the "foo" tag has been removed).
run lua() {
-- Lua code goes here
return "Hello, Lua!";
};
The full grammar can be found here.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Note that this repository only contains the parser and transpiler to a secondary representation. The compilation to a Minecraft datapack is located in the shulkerbox repository. Please indicate if pull requests for this repository require pull requests for the shulkerbox repository