#Remove everything except 1 item

19 messages · Page 1 of 1 (latest)

quaint forge
#

I want to remove everything in the mod except 1 thing

scenic hearthBOT
#

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

proven temple
quaint forge
#

ya i just scrolled thru the wiki hehe

#

thanks

quaint forge
#
ServerEvents.recipes(event => {
    event.remove({not:{mod:'createsifter'}, output:'createsifter:string_mesh'})
    event.recipes.createsifterSifting([Item.of('minecraft:iron_nugget').withChance(0.25), Item.of('create:zinc_nugget').withChance(0.2)], ['minecraft:gravel', 'createsifter:string_mesh'])
})
#

no error in logs

#

but not removing recipes any help?

proven temple
#

event.remove({not:{mod:'createsifter'}, output:'createsifter:string_mesh'})
Are you sure it is right?

#

Is there any "createsifter:string_mesh" recipes not provided by "createsifter" mod?

quaint forge
#

nein only that mod provides it

#

oh i could just not: the string mesh?

#

or wait

#

taht deletes everthing except string mesh hmm

proven temple
#

If you want to nuke all sifitng recipes just:

event.remove({type: 'createsifter:sifting'})

quaint forge
#

true but i also want to remove the crafting of all except the string mesh

#

okay so reversing works lmao

#
event.remove({not:{output:'createsifter:string_mesh'}, mod:'createsifter' })