promotional bannermobile promotional banner

Sculk Lang

A programming language for Minecraft datapacks.

Contributors Forks Stargazers Issues MIT License

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.

The Sculk Lang Team

profile avatar
  • 1
    Projects
  • 31
    Downloads

More from RevolvingMadness