Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

Powered Thingies :: Item Liquefier

Importing

script.zs
import mods.poweredthingies.Tweaker.itemLiquefierTweaker as ilt;

Listing Keys, Removing Recipes by Key, Clearing

script.zs
ilt().logKeys()
ilt().removeRecipe('liquid:fluid_lava') // check <logKeys> output for valid keys
ilt().clear()

Adding Recipe

Signature
script.zs
addRecipe(input: IItemStack, output: ILiquidStack)
Example
script.zs
ilt().addRecipe(<minecraft:bucket>, <liquid:lava> * 125);

Notes

All of these actions will get cached and ran after the default registry for this machine has finished registering all recipes (including the ones from the custom jsons).