A high level framework for the Bolt scripting language.
Project description
ReaperMC
A high level framework for the Bolt scripting language.
Introduction
Reaper is a framework for the Bolt scripting language. It features complex yet optimized, high level yet simple to use functions.
The goal of this project is to reduce the time developers waste. The aim is to enable developers in creating things faster while focusing on the important bits.
For further info about the project, check here.
Installation
pip install reapermc
Getting started
This package is designed to be used within .bolt
scripts, inside a bolt enabled project. I will never officially .mcfunction
files.
To enable Reaper inside your project, you will need to add reapermc
to your require
list inside the beet config file.
require:
- bolt
- reapermc
Modules named <namespace>:main
will automatically be the entrypoint.
To use Reaper's functions, you'll need to import them. (This won't be necessary in the future).
# my_project:main
from reapermc:api import sleep, set_time, tag
def become_wizard():
tellraw @s 'You will become a wizard...'
with sleep(40):
set_time(13000)
tag('wizardman')
tellraw @s 'You are now a wizard!'
Documentation
The documentation for this project can be found here.
License - MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.