Posted March 28, 20205 yr I don't know what is wrong with my code: My Item class: public class MobBallItem extends Item { public MobBallItem() { super(new Properties().maxStackSize(1)); setRegistryName(MobFighters.MODID, "mob_ball"); //MODID = "mobfighters" } } My Item registry: @Mod.EventBusSubscriber(modid = MobFighters.MODID, bus = Bus.MOD) //MODID = mobfighters public class Registry { @SubscribeEvent public static void registerItems(RegistryEvent.Register<Item> registry) { registry.getRegistry().register(Items.MOB_BALL); } } And the model path is: assets/mobfighters/models/item/mob_ball.json Maybe it's because I didn't register the model location. But the error message reads "...java.io.FileNotFoundException: mobfighters:models/item/mob_ball.json" I tried to register the model, but the documentation doesn't seem to be up-to-date, since it reads Quote ...(Items) must be registered to their models manually. This is done through ModelLoader.setCustomModelResourceLocation. This method takes the item, a metadata value, and a ModelResourceLocation, and registers a mapping[...] but the ModelLoader class doesn't contain the setCustomModelResourceLocation method anymore. I also skipped through a 20min long tutorial on items and nowhere does the guy register any models (or maybe I just missed it).
March 28, 20205 yr 1 hour ago, Keheck said: (Items.MOB_BALL); Show this. 1 hour ago, Keheck said: ...(Items) must be registered to their models manually. This is done through ModelLoader.setCustomModelResourceLocation. This is no longer true. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
March 28, 20205 yr Author 39 minutes ago, Draco18s said: This is no longer true. I know, I said this: 1 hour ago, Keheck said: I tried to register the model, but the documentation doesn't seem to be up-to-date, since it reads(...) 39 minutes ago, Draco18s said: 1 hour ago, Keheck said: (Items.MOB_BALL); Show this. There: public class Items { public static final MobBallItem MOB_BALL = new MobBallItem(); } If you meant that... Edited March 28, 20205 yr by Keheck
March 28, 20205 yr 1 hour ago, Keheck said: There: public class Items { public static final MobBallItem MOB_BALL = new MobBallItem(); } If you meant that... Problematic Code #14 Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
March 29, 20205 yr Author 10 hours ago, Draco18s said: Problematic Code #14 The model's still not showing. Still same error message Not that I expected much, the item itself was still being registered, just not the model Edited March 29, 20205 yr by Keheck
March 29, 20205 yr Please post your codebase as a github repository, it makes it much easier to read and see how things fit together. Also, please post complete logs, not just the lines you think are important. Spoiler tags (the eyeball button in the toolbar when creating a post) help make the thread not be 10 miles long.
March 29, 20205 yr Author I have opened a repository now. The current version is on the "WIP" branch. If you want to test the project yourself, however, it needs to be setup as if you just setup a clean project. I don't know how gradle behaves when you change systems like the IDE so I wanted to be sure. Oh, and here's the log. Edited March 29, 20205 yr by Keheck
March 29, 20205 yr Author 39 minutes ago, Ugdhar said: Also, please post complete logs Spoiler Do you mean debug.log? It's 10.000 lines are you sure?
March 29, 20205 yr Yup, if you can host it on an external paste site and post a link here that's probably best, otherwise use spoiler tags
March 29, 20205 yr Author 49 minutes ago, Ugdhar said: Yup, if you can host it on an external paste site and post a link here that's probably best, otherwise use spoiler tags I uploaded it to my github repo here.
March 29, 20205 yr So it looks like perhaps your folder structure in your resources is broken a little bit, instead of being assets/mobfighters/models/item you have assets.mobfighters/models/item
March 29, 20205 yr Author Ah ok. I thought since folders coming in sequence in IntelliJ are seperated by a dot I could just name them "foo.bar" and it would be fine. Silly me... Thanks for your help it's working now. Edited March 29, 20205 yr by Keheck
March 29, 20205 yr 3 minutes ago, Keheck said: Ah ok. I thought since folders coming in sequence in IntelliJ are seperated by a dot I could just name them "foo.bar" and it would be fine. Silly me... Thanks for your help it's working now. Yeah, didn't notice it at first until I saw on github that the folders are separated by a slash, so the one with the dot was considered a single folder name. Glad it helped!
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.