KubeJS REI Runtime

Quick rating

Community listing page, reviews here may not be monitored by the author.

KubeJS REI Runtime

No reviews yet

Allows KubeJS to hide and show items from REI dynamically

Mod Loaders
Minecraft

About

Description

KubeJS currently has the ability to show and hide items from JEI dynamically, but not from REI. This addon adds the ability to do that.

All the methods shown below only will work on the client (so all these methods will only work in client_scripts). 

REIRuntime.showItem(item)

 - Shows the given item in REI

REIRuntime.showItems([item, item, ...])

 - Shows the given items in REI

REIRuntime.hideItem(item)

 - Hides the given item in REI

REIRuntime.hideItems([item, item, ...])

 - Hides the given items in REI

KubeJS REI Runtime lets you show/hide items in REI dynamically, it provides these methods by default:

// in client_scripts

REIRuntime.showItem(item); // shows an item in REI
REIRuntime.showItems([item, item, ...]); // shows items in REI
REIRuntime.hideItem(item); // hides an item in REI
REIRuntime.hideItems([item, item, ...]); // hides items in REI