
MantleJS
Активный0.0
Установок
0
Последнее обновление
4 недели назад
Версии
1.20.1
Клиент и сервер
Forge
Оптимизация игры
MantleJS
A KubeJS addon for Mantle things.
Current contents
- Custom Mantle books
Bug report
Report bugs on GitHub.
Tutorials
See GitHub.
An example to create a Mantle book.
// Script type: STARTUP
MantleJSEvents.bookRegistry(event => {
// Create the book here
event.create("test")
// Specify the book repository
.addBookRepository("kubejs:book/test");
});
StartupEvents.registry('item', event => {
// Create a book item
event.create("test_book", "mantle:book")
// Set the book data
.setBookData("test");
});