Posted May 7, 20196 yr So I've basically just started Minecraft modding, and everything went pretty well, I added an item called Ancient Gem, and it's there, but the texture isn't. There's just a purple-black missing texture with some text over it. Anyone has any advices?
May 7, 20196 yr 9 minutes ago, Crystalknight said: Anyone has any advices? You have shown None of your code No blockstates/model file No debug log So the best I can do is stab at the dark Have you registered the model for your idem? Do you have the model file in the right location? If you are using forge's blockstates for said item is the blockstates file correct?
May 7, 20196 yr Author Yeah sorry, I wasn't on the right computer sorry... There they are. Also, the gem is a plain material, so not a block, just like an emerald. Main.java RegistryHandler.java ItemBase.java ItemInit.java ancients_gem.json
May 7, 20196 yr Don't attach your files like that, use services like github. Just by the names of the files alone I can tell that you are using terrible practices though. Don't have an ItemBase class. There is already an ItemBase, it's called Item. Don't abuse inheritance. Don't use static initializers. All registry entries must be instantinated in the appropriate registry event. Don't use IHasModel, it is stupid since all items need models and it makes you write much more code than you would if you wouldn't have used it. Your model file is not a valid minecraft model file. https://minecraft.gamepedia.com/Model#Item_models
May 7, 20196 yr Author I understand, but I've started this like a day ago... So yeah I may use stupid practices, also not really familiar with this forum yet, I'm really sorry about that, but everyone has to start somewhere. But still, I don't know what to do just by this.
May 7, 20196 yr 10 minutes ago, Crystalknight said: But still, I don't know what to do just by this. Well, you would need to make your model file comply with the minecraft model json schematics, which I've linked.
May 7, 20196 yr Author Ok I've tried several variations and not a single has worked... Could you show me an example please?
May 7, 20196 yr Well, show what you have tried. 12 minutes ago, Crystalknight said: Could you show me an example please? I gave you a link. Scroll down a bit and there will be an example. It starts with a line in bold saying Simple example: 2D beds Edited May 7, 20196 yr by V0idWa1k3r
May 7, 20196 yr Author Yeah I did that, but still nothing I tried these too { "parent": "item/generated", "textures": { "layer0": "item/ancient_gem" } } { "parent": "item/generated", "textures": { "layer0": "bm:item/ancient_gem" } } Bm is my mod's id Also I did countless resource packs from scratches before, so I know how an item/block model look like Edited May 7, 20196 yr by Crystalknight
May 7, 20196 yr Author I've found this [22:21:32] [main/ERROR] [FML]: Exception loading model for variant bm:ancient_gem#inventory for item "bm:ancient_gem", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model bm:item/ancient_gem with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: java.io.FileNotFoundException: bm:models/item/ancient_gem.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more [22:21:32] [main/ERROR] [FML]: Exception loading model for variant bm:ancient_gem#inventory for item "bm:ancient_gem", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model bm:ancient_gem#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more
May 7, 20196 yr 9 minutes ago, Crystalknight said: FileNotFoundException: bm:models/item/ancient_gem.json
May 8, 20196 yr 4 hours ago, Crystalknight said: But it's there, like... it's just there It is not, as the error is present. Check your folders and directories and make sure they have the correct name. Consider uploading your mod to a GitHub repo so others can take a look and assist you in fixing your code. Moreover, a 2 character long mod id is likely to cause conflicts with other mods. Change the mod id to something longer. Some tips: Spoiler Modder Support: Spoiler 1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code. 2. Always post your code. 3. Never copy and paste code. You won't learn anything from doing that. 4. Quote Programming via Eclipse's hotfixes will get you nowhere 5. Learn to use your IDE, especially the debugger. 6. Quote The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it. Support & Bug Reports: Spoiler 1. Read the EAQ before asking for help. Remember to provide the appropriate log(s). 2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.
May 8, 20196 yr Make sure you’ve refreshed your assets folder if you use eclipse and make sure that you’re not accidentally referencing “item” when your models are actually in “items” About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
May 8, 20196 yr Post you entire log and a picture of your folder structure with the item model visible please Edited May 8, 20196 yr by Cadiboo About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
May 12, 20196 yr Author [12:41:47] [main/INFO] [GradleStart]: Extra: [] [12:41:48] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Martin/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [12:41:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [12:41:48] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [12:41:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [12:41:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [12:41:48] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading [12:41:48] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_211, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_211 [12:41:48] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory. [12:41:48] [main/ERROR] [FML]: Full: C:\Users\Martin\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar [12:41:48] [main/ERROR] [FML]: Trimmed: c:/users/martin/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/ [12:41:48] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [12:41:48] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs. 2019-05-12 12:41:50,508 main WARN Disabling terminal, you're running in an unsupported environment. [12:41:50] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin [12:41:50] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin [12:41:50] [main/INFO] [FML]: Searching C:\Users\Martin\Desktop\Java_Projects\BoiMod\run\.\mods for mods [12:41:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [12:41:50] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [12:41:50] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [12:41:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [12:41:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [12:41:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [12:41:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [12:41:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [12:41:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [12:41:53] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [12:41:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [12:41:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [12:41:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [12:41:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [12:41:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [12:41:54] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [12:41:55] [main/INFO] [minecraft/Minecraft]: Setting user: Player231 [12:42:00] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer: [12:42:00] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4 [12:42:03] [main/INFO] [FML]: -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_211, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 815812936 bytes (778 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.5.0 - Build 22.20.16.4815' Renderer: 'Intel(R) HD Graphics 620' [12:42:03] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized [12:42:03] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. [12:42:04] [main/INFO] [FML]: Replaced 1036 ore ingredients [12:42:04] [main/INFO] [FML]: Searching C:\Users\Martin\Desktop\Java_Projects\BoiMod\run\.\mods for mods [12:42:06] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 92377431 nanos [12:42:06] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load [12:42:07] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, bm] at CLIENT [12:42:07] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, bm] at SERVER [12:42:08] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Boi Mod [12:42:08] [main/INFO] [FML]: Processing ObjectHolder annotations [12:42:08] [main/INFO] [FML]: Found 1168 ObjectHolder annotations [12:42:08] [main/INFO] [FML]: Identifying ItemStackHolder annotations [12:42:08] [main/INFO] [FML]: Found 0 ItemStackHolder annotations [12:42:08] [main/INFO] [FML]: Configured a dormant chunk cache size of 0 [12:42:08] [main/INFO] [FML]: Applying holder lookups [12:42:08] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [12:42:08] [main/INFO] [FML]: Holder lookups applied [12:42:08] [main/INFO] [FML]: Applying holder lookups [12:42:08] [main/INFO] [FML]: Holder lookups applied [12:42:08] [main/INFO] [FML]: Applying holder lookups [12:42:08] [main/INFO] [FML]: Holder lookups applied [12:42:09] [main/INFO] [FML]: Applying holder lookups [12:42:09] [main/INFO] [FML]: Holder lookups applied [12:42:09] [main/INFO] [FML]: Injecting itemstacks [12:42:09] [main/INFO] [FML]: Itemstack injection complete [12:42:09] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null [12:42:22] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem... [12:42:23] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL [12:42:23] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [12:42:23] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized. [12:42:23] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started [12:42:35] [main/INFO] [FML]: Max texture size: 16384 [12:42:36] [main/INFO] [minecraft/TextureMap]: Created: 512x512 textures-atlas [12:42:37] [main/ERROR] [FML]: Exception loading model for variant bm:ancient_gem#inventory for item "bm:ancient_gem", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model bm:item/ancient_gem with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: java.io.FileNotFoundException: bm:models/item/ancient_gem.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more [12:42:37] [main/ERROR] [FML]: Exception loading model for variant bm:ancient_gem#inventory for item "bm:ancient_gem", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model bm:ancient_gem#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_211] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_211] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more [12:42:39] [main/INFO] [FML]: Applying holder lookups [12:42:39] [main/INFO] [FML]: Holder lookups applied [12:42:39] [main/INFO] [FML]: Injecting itemstacks [12:42:39] [main/INFO] [FML]: Itemstack injection complete [12:42:39] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [12:42:39] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer: [12:42:39] [main/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded [12:42:41] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id [12:43:03] [main/INFO] [minecraft/Minecraft]: Stopping! [12:43:03] [main/INFO] [minecraft/SoundManager]: SoundSystem shutting down... [12:43:03] [main/WARN] [minecraft/SoundManager]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release EDIT: I renamed "ancients_gem.json" to "ancient_gem.json", still doesn't work Edited May 12, 20196 yr by Crystalknight
May 12, 20196 yr Author Waa thank you really much! Now it's working. Also, I know it's not related to this topic, but now I have problems with my class "ToolAxe", you know like for me ToolSword, ToolHoe etc are fairly identical, but the axe is the different one.
May 12, 20196 yr First of all drop the IHasModel, it is stupid. All items need models, no exceptions, and IHasModel makes you write unnecessary code. Next of all stop using outdated tutorials. Thirdly never override methods manually. Use your IDE. Lastly this here is a syntax error which your IDE tells you. If you can't fix syntax errors then you need to learn java.
May 12, 20196 yr Author Listen, I understand that you're experienced and I trust you, but you can't just say to a really beginner like me, who make his first mod to do this or that tis casually, like drop the IHasModel, because it might be natural to you, but for me I just don't know how to. Also, I've got a fairly decent mount of Java knowledge, what I don't have is experience in modding, ok?
May 12, 20196 yr Here's what he's suggesting: //Registering models //What I do: I call the interface Modelable instead of IHasModel. for (Item item : ModItems.ITEMS) { if (Item instanceof Modelable) { ((Modelable) item).registerModels(); } } //What he's suggesting (because all items have registerItemRenderer) for (Item item : ModItems.ITEMS) { Main.proxy.registerItemRenderer(/*i forgot what goes in here*/); } //Making an item in ModItems //what I use: constructor specifies item's name and creative tab public static final Item FIRST_ITEM = new FirstItem("first_item", CreativeTabs.MATERIALS); //what forge lets you do: look at how long that is... public static final Item SECOND_ITEM = new Item().setUnlocalizedName("second_item").setRegistryName("second_item").setCreativeTab(CreativeTabs.MATERIALS); Edited May 12, 20196 yr by superminerJG I forgot to add something
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.