Jump to content

Ron_Parker

Members
  • Posts

    29
  • Joined

  • Last visited

Everything posted by Ron_Parker

  1. I need to make a loot table that drops 2 items but still works with silk touch. I tried adding another item to the loot table and the loot table stopped working. Can someone please help, here's the loot table: { "type": "minecraft:block", "pools": [ { "rolls": 1, "entries": [ { "type": "minecraft:alternatives", "children": [ { "type": "minecraft:item", "conditions": [ { "condition": "minecraft:match_tool", "predicate": { "enchantments": [ { "enchantment": "minecraft:silk_touch", "levels": { "min": 1 } } ] } } ], "name": "coolores:cool_ore" }, { "type": "minecraft:item", "functions": [ { "function": "minecraft:set_count", "count": { "min": 3.0, "max": 5.0, "type": "minecraft:uniform" } }, { "function": "minecraft:apply_bonus", "enchantment": "minecraft:fortune", "formula": "minecraft:uniform_bonus_count", "parameters": { "bonusMultiplier": 1 } }, { "function": "minecraft:explosion_decay" } ], "name": "coolores:cool_dust" }, { "type": "minecraft:item", "name": "coolores:cool_essence" } ] } ] } ] } Thanks in advance!
  2. I finished my mod a few hours ago and it was working fine. I left and came back and then this happens when I try to run it: Exception in thread "main" [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:116) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:63) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.Launcher.run(Launcher.java:75) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.Launcher.main(Launcher.java:65) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:102) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: Caused by: java.net.MalformedURLException: no protocol: [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:610) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:507) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:456) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at net.minecraftforge.fml.loading.StringUtils.toURL(StringUtils.java:47) [23:55:39] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: ... 31 more
  3. Hello, I'm new to Minecraft modding and I've been looking for hours on how to edit vanilla mob loot tables. I want to add an item to the vanilla passive mobs that has a chance of dropping 1 to 3 of the item. Does anyone know the best way to do this? Thanks in advance, Ron ❤️
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.