#Remove a "Automated Shapeless Crafting" Create mod recipe

6 messages · Page 1 of 1 (latest)

lethal saffron
#

Want to remove this recipe, however I don't know what kind of recipe it is.
Tried this:

event.remove({output: 'kubejs:infinity_catalyst', type: 'create:automatic_shapeless'})```
with no avail.
Is there a way to gain knowledge about what's the recipe ID is, since event.remove supports removing by recipe ID's?
bronze gullBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

cinder bronze
#

automated is just that, automatic, they don't have recipe ids you can mess with because it's basically just a wrapper to shapeless crafting. You can turn off automatic as a whole in create's config. Other option is to append _manual_only to your shapeless crafting recipe id

lethal saffron
#

How do you set the ID of a recipe in the event.custom way?

event.custom({
    type: 'create:crushing',
    ingredients: [
      Ingredient.of('minecraft:oak_sapling').toJson()
    ],
    results: [
      Item.of('minecraft:apple').toResultJson(),
      Item.of('minecraft:carrot').withChance(0.5).toResultJson()
    ],
    processingTime: 100
  })```
cinder bronze
#

event.custom({json}).id('mod:path')

lethal saffron
#

Thanks a lot!