#Is it impossible to remove Tinkers recipes?
35 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
it's in the server_scripts btw
You can find your KubeJS server log in /minecraft/logs/kubejs/server.log.
If you are on 1.18 or 1.16 it will be called server.txt.
Please send it if asked, as it contains helpful information.
when I get back home I'm gonna send it
Use TinkerJS
link?
this doesn't change the fact that the remove script doesn't work
thanks
or well I haven't tried but I would be surprised if it did
also that mod is 1.18 only
not 1.19
to help you further we really need this log
I'm at work rn
Paste version of server.log from @pulsar bison
?
[21:24:41] [ERROR] ! script.js#33: Tried to register event handler 'WorldgenEvents.remove' for invalid script type SERVER! Valid script types: [STARTUP]
this error might not be helping
@pulsar bison fix the error. worldgenevesnts shouldnt be at server_scripts folder
removed the world gen event from server_scripts and the recipe is still there and still works
entire script btw
PlayerEvents.advancement("bosses_of_mass_destruction:adventure/night_lich_defeat", event => {
event.server.runCommandSilent("/gamestage remove @a nightmare")
})
PlayerEvents.advancement("critters_and_cryptids:crittersand_cryptids", event => {
event.server.runCommandSilent("/enhancedcelestials setLunarEvent enhancedcelestials:super_blue_moon")
})
PlayerEvents.advancement("critters_and_cryptids:crittersand_cryptids", event => {
event.server.runCommandSilent("/time set midnight")
})
LootJS.modifiers((event) => {
event.addBlockLootModifier("minecraft:chest").removeLoot("minecraft:iron_ingot");
});
LootJS.modifiers((event) => {
event.addBlockLootModifier("minecraft:chest").removeLoot("minecraft:diamond");
});
LootJS.modifiers((event) => {
event.addBlockLootModifier("minecraft:chest").removeLoot("minecraft:torch");
});
LootJS.modifiers((event) => {
event.removeGlobalModifier("@useless_sword");
});
ServerEvents.recipes(event => {
event.remove({ id: 'tconstuct:smeltery/melting/clay/brick'})
});
