Arcane Rig
Adds an extra equipment inventory which lets mod developpers register extra slots for the player to equip specific items in it
Описание
Arcane Rig - это расширяемая структура оборудования для модов Hytale, позволяющая разработчикам определять новые оснащаемые слоты со встроенной устойчивостью, валидацией и интеграцией окон.
Он также предоставляет игрокам графический интерфейс для оснащения и оснащения предметов из него.
Разработчики Mod
Шаги установки (WIP)
Регистрация слота
В этом установка Метод вашего плагина:
ArcaneRigPlugin.onApiReady (api -> {)
SlotDescriptor слот = SlotDescriptor.builder("ToolPickaxe")
.displayName ("Пикакс")
.canEquip(stack -> stack.getItemId().contains("Pickaxe"))
.build();
api.registerSlot(slot)
}
Показать оригинальное описание (English)
Arcane Rig is an extensible equipment framework for Hytale mods, allowing developers to define new equippable slots with built-in persistence, validation, and window integration.
It also provides to players a GUI to equip and unequip items from it.
Mod developers
Installation steps (WIP)
Registering a slot
In the setup method of your plugin:
ArcaneRigPlugin.onApiReady(api -> {
SlotDescriptor slot = SlotDescriptor.builder("ToolPickaxe")
.displayName("Pickaxe")
.canEquip(stack -> stack.getItemId().contains("Pickaxe"))
.build();
api.registerSlot(slot)
});
Последние версии
ArcaneRig-1.0.0.jar
Информация
Авторы:
Категории:
Версии игры:
Создан: 26.01.2026