Skip to content

RevolvingMadness/Sculk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

05d1fa9 · Feb 15, 2024
Dec 22, 2023
Nov 27, 2023
Feb 15, 2024
Dec 17, 2023
Feb 15, 2024
Jan 18, 2024
Jan 23, 2024
Jan 18, 2024
Feb 15, 2024
Nov 27, 2023
Nov 27, 2023
Dec 22, 2023

Repository files navigation

Contributors Forks Stargazers Issues MIT License


Logo

Sculk

A programming language for Minecraft
Explore the docs »

Report Bug · Request Feature

Requirements

Sculk requires Fabric and the Fabric API.

Usage

One example of Sculk is the following.

// load.sk
events.onPlayerBreakBlock(function(player, block) {
    if (block == Blocks.get(minecraft:diamond_block)){
        return false; // cancel the event by returning false
    }

    return true;
});

For more examples, please refer to Examples

Contributing

If you have a suggestion and would like to make Sculk better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

License

Distributed under the Apache 2.0 License. See LICENSE for more information.

Inspiration

Sculk has been inspired from many projects listed below.