AleMax
Members-
Posts
11 -
Joined
-
Last visited
Converted
-
Gender
Undisclosed
-
Personal Text
I am new!
AleMax's Achievements
Tree Puncher (2/8)
0
Reputation
-
[1.12] Custom Entity lagging while moving every once in a while
AleMax replied to AleMax's topic in Modder Support
Yes i know. I'm sorry, I think i have expressed myself too ambiguous. I looked at both sides independently and the problem persist between two calls on the same side. -
[1.12] Custom Entity lagging while moving every once in a while
AleMax replied to AleMax's topic in Modder Support
Yes, it actually happens on the Server Side, so it cannot be a syncing issue as well, but when it happens on the server side it does on the client on the exact same tick as well everytime. -
[1.12] Custom Entity lagging while moving every once in a while
AleMax replied to AleMax's topic in Modder Support
So well i did some debugging and if i did nothing wrong it just looks like that everything in the onUpdate()-Method gets set properly (like the position variables and stuff), but then the game deicides just randomly every few seconds that in the next onUpdate() call all those changes from the previous call are like reverted and didnt happen (like as the second call would take place before the first which is obviously not the case). This is extremly strange and i wonder how this is even possible, because i dont think i access the entity from somewhere else. Somenone know why this could happen? -
[1.12] Custom Entity lagging while moving every once in a while
AleMax replied to AleMax's topic in Modder Support
Jup i thought that but seriously, its probably the most basic it can get i guess. Well, thats the onUpdate()-Method of the entity: public void onUpdate() { this.prevPosX = this.posX; this.prevPosY = this.posY; this.prevPosZ = this.posZ; super.onUpdate(); speed = 0.1; this.motionZ = speed; this.move(MoverType.SELF, this.motionX, this.motionY, this.motionZ); } It doesnt really do anything special. I actually did overwrite the move function, but it does exactly the same thing in the end, and it cant really be becaus of this, i already tried with the original move function and the same lag happened. If the problem probably isn somewhere else the rest of my code is here but it is a real mess right now because i added a bunch of things which i didnt finished yet. (The entity i made should be EntityTrain) -
Hello, I've got a problem. I made a completely custom Entity, and got it to move smoothly, unfortunatly every few seconds it laggs (it ports ~1 block back and immediatly returns). When i accelerate (changing the speed every tick) the Entity, it will even lag more often and when i ride it then as well, it probably laggs two or tree times a second. I also noticed that the player riding the entity wont get ported back, the player just continues normally, so my guess is that this is only a render issue on the client side and probably desync is a issue. Someone knows what the problem could be?
-
[Solved] [1.12] "NoClassDefFoundError" when launching Server
AleMax replied to AleMax's topic in Modder Support
Incredible. Thank you! Everything is working now. -
[Solved] [1.12] "NoClassDefFoundError" when launching Server
AleMax replied to AleMax's topic in Modder Support
Thank you for the help! I went through my classes and checked for any client-only classes, and then put those in the proxy classes directly (and deleted this nonuse test item lol) The error log is now basicly reduced to half, but i still got the same error just with the IStateMapper class. The only classes which use any client only classes are the model and render classes now, should i remove them from there as well, I think that could get a bit difficult or am I doing something fundamentally wrong? I already saw the thing with the common proxy befor posting, i will probably change it after i got this error fixed ? I updated my Source code if you want to take a look at it. -
[Solved] [1.12] "NoClassDefFoundError" when launching Server
AleMax posted a topic in Modder Support
Hello everybody, I recently started making a small Mod for me and a friend which we can use on our server. So far everything is working out well when I test the Mod in an Single-Player environment, but when i started it as a Server, i got a crash and a NoClassDefFoundError referencing the ICustomModelLoader class. I know that this class is "Single-Player-only" so im wondering where exactly the Server tries to acces it. I looked through my code but couldnt exactly figure out where, I also googled for similar errors but havent found one close to this and thus didnt find good advice. I also think that i didnt use any !world.isRemote() so far, could it possibly be an error with this? I wanted to implement those later, but to be honest, i dont even exactly know when and when not i have to do this. The error message im getting is rather long as well, so I dont know wether I only have one error, which is causing all the others, or wether I have multiple ones I have to fix. If you want to check my source code you can do this here. If some code is familiar for you, this is propably because I just plainly copied a bit of tutorials, but like I said, I dont want to make a big mod or something, just for me and a friend. Any help and advice is welcomed. Thank you in advance, AleMax -
Actually, i did forgot to remove the semicolon. Now i did, and it works fine. Thank you
-
Uff, yeah, i missed a second ", but it dont fix the proplem. Maybe something changed at the log, so i post a new again: [23:48:10] [main/INFO] [GradleStart]: Extra: [] [23:48:10] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.8, --assetsDir, C:/Dokumente und Einstellungen/Alex/.gradle/caches/minecraft/assets, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [23:48:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [23:48:10] [main/INFO] [FML]: Forge Mod Loader version 8.99.124.1450 for Minecraft 1.8 loading [23:48:10] [main/INFO] [FML]: Java is Java HotSpot(TM) Client VM, version 1.7.0_60-ea, running on Windows XP:x86:5.1, installed at C:\Programme\Java\jre7 [23:48:10] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [23:48:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [23:48:10] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [23:48:10] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [23:48:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:48:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:48:11] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [23:48:14] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [23:48:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:48:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:48:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:48:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [23:48:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [23:48:15] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [23:48:16] [Client thread/INFO]: Setting user: Player88 [23:48:21] [Client thread/INFO]: LWJGL Version: 2.9.1 [23:48:22] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [23:48:22] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1450 Initialized [23:48:22] [Client thread/INFO] [FML]: Replaced 204 ore recipies [23:48:22] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [23:48:22] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [23:48:22] [Client thread/INFO] [FML]: Searching C:\Dokumente und Einstellungen\Alex\Desktop\Minecraft\CalexMod\Calex\eclipse\mods for mods [23:48:22] [Client thread/INFO] [calex]: Mod calex is missing the required element 'name'. Substituting calex [23:48:22] [Client thread/WARN] [calex]: Mod calex is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [23:48:24] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [23:48:25] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, calex] at CLIENT [23:48:25] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, calex] at SERVER [23:48:25] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:calex [23:48:26] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [23:48:26] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [23:48:26] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [23:48:26] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [23:48:26] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [23:48:26] [Client thread/INFO] [FML]: Applying holder lookups [23:48:26] [Client thread/INFO] [FML]: Holder lookups applied [23:48:26] [Client thread/INFO] [FML]: Injecting itemstacks [23:48:26] [Client thread/INFO] [FML]: Itemstack injection complete [23:48:26] [sound Library Loader/INFO]: Starting up SoundSystem... [23:48:27] [Thread-7/INFO]: Initializing LWJGL OpenAL [23:48:27] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:48:27] [Thread-7/INFO]: OpenAL initialized. [23:48:27] [sound Library Loader/INFO]: Sound engine started [23:48:32] [Client thread/INFO]: Created: 512x512 textures-atlas [23:48:34] [Client thread/INFO] [FML]: Injecting itemstacks [23:48:34] [Client thread/INFO] [FML]: Itemstack injection complete [23:48:35] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [23:48:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:calex [23:48:35] [Client thread/INFO]: SoundSystem shutting down... [23:48:35] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [23:48:35] [sound Library Loader/INFO]: Starting up SoundSystem... [23:48:35] [Thread-9/INFO]: Initializing LWJGL OpenAL [23:48:35] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:48:36] [Thread-9/INFO]: OpenAL initialized. [23:48:36] [sound Library Loader/INFO]: Sound engine started [23:48:40] [Client thread/ERROR] [FML]: Exception loading model calex:item/redstonesword with loader instance, skipping com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 5 column 6 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?] at com.google.gson.Gson.fromJson(Gson.java:741) ~[Gson.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:47) ~[ModelBlock.class:?] at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:269) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$900(ModelLoader.java:71) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:534) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:92) [ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadAnyModel(ModelLoader.java:201) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.getModel(ModelLoader.java:184) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:171) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:96) [ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:775) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:331) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:529) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:356) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60-ea] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60-ea] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60-ea] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60-ea] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: com.google.gson.stream.MalformedJsonException: Expected name at line 5 column 6 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:494) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:666) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] ... 28 more [23:48:41] [Client thread/INFO]: Created: 512x512 textures-atlas [23:48:41] [Client thread/ERROR] [FML]: Model definition for location calex:redstonesword#inventory not found
-
Hey everybody, i have a problem with swords on my mod. Ingame, the sword textures are purple/black blocks. It says it cant find the json file. I work after a youtube tutorial, but i simply cannot find the mistake i made. When i search for the problem, there are a few entries about this, but nothing helped me. My Main Mod File "Calex.java": (I deleted Crafting Recipes) package com.calex; import com.calex.items.ItemRedstone_Ball; import com.calex.items.ItemRedstone_Ingot; import com.calex.items.ItemRedstoneSword; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.Item.ToolMaterial; import net.minecraft.item.ItemStack; import net.minecraft.item.ItemSword; import net.minecraftforge.common.util.EnumHelper; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; @Mod(modid = Calex.MODID) public class Calex { public static final String MODID = "calex"; public static ToolMaterial redstoneTools = EnumHelper.addToolMaterial("redstoneTools", 2, 209, 9.0F, 2.0F, 16); public static Item redstone_ball = new ItemRedstone_Ball(); public static Item redstone_ingot = new ItemRedstone_Ingot(); public static ItemSword redstonesword = new ItemRedstoneSword(); @EventHandler public void preInit(FMLPreInitializationEvent event) { } @EventHandler public void Init(FMLInitializationEvent event) { GameRegistry.registerItem(redstone_ball, "redstone_ball"); GameRegistry.registerItem(redstone_ingot, "redstone_ingot"); GameRegistry.registerItem(redstonesword, "redstonesword"); Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(redstone_ball, 0, new ModelResourceLocation("calex:redstone_ball", "inventory")); Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(redstone_ingot, 0, new ModelResourceLocation("calex:redstone_ingot", "inventory")); Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(redstonesword, 0, new ModelResourceLocation("calex:redstonesword", "inventory")); } @EventHandler public void postInit(FMLPostInitializationEvent event) { } } My "redstonesword.json": { "parent": "builtin/generated", "textures": { "layer0": "calex:items/redstonesword; }, "display": { "thirdperson": { "rotation": [ 0, 90, -35 ], "translation": [ 0, 1.25, -3.5 ], "scale": [ 0.85, 0.85, 0.85 ] }, "firstperson": { "rotation": [ 0, -135, 25 ], "translation": [ 0, 4, 2 ], "scale": [ 1.7, 1.7, 1.7 ] } } } And the full log when i start the game: [23:28:58] [main/INFO] [GradleStart]: Extra: [] [23:28:58] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.8, --assetsDir, C:/Dokumente und Einstellungen/Alex/.gradle/caches/minecraft/assets, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [23:28:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [23:28:58] [main/INFO] [FML]: Forge Mod Loader version 8.99.124.1450 for Minecraft 1.8 loading [23:28:58] [main/INFO] [FML]: Java is Java HotSpot(TM) Client VM, version 1.7.0_60-ea, running on Windows XP:x86:5.1, installed at C:\Programme\Java\jre7 [23:28:58] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [23:28:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [23:28:58] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [23:28:58] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [23:28:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:28:59] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [23:29:02] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [23:29:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:29:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:29:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:29:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [23:29:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [23:29:03] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [23:29:04] [Client thread/INFO]: Setting user: Player439 [23:29:10] [Client thread/INFO]: LWJGL Version: 2.9.1 [23:29:11] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [23:29:11] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1450 Initialized [23:29:11] [Client thread/INFO] [FML]: Replaced 204 ore recipies [23:29:11] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [23:29:11] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [23:29:11] [Client thread/INFO] [FML]: Searching C:\Dokumente und Einstellungen\Alex\Desktop\Minecraft\CalexMod\Calex\eclipse\mods for mods [23:29:11] [Client thread/INFO] [calex]: Mod calex is missing the required element 'name'. Substituting calex [23:29:11] [Client thread/WARN] [calex]: Mod calex is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [23:29:14] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [23:29:14] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, calex] at CLIENT [23:29:14] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, calex] at SERVER [23:29:15] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:calex [23:29:15] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [23:29:15] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [23:29:15] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [23:29:15] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [23:29:15] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [23:29:15] [Client thread/INFO] [FML]: Applying holder lookups [23:29:15] [Client thread/INFO] [FML]: Holder lookups applied [23:29:15] [Client thread/INFO] [FML]: Injecting itemstacks [23:29:15] [Client thread/INFO] [FML]: Itemstack injection complete [23:29:16] [sound Library Loader/INFO]: Starting up SoundSystem... [23:29:16] [Thread-7/INFO]: Initializing LWJGL OpenAL [23:29:16] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:29:17] [Thread-7/INFO]: OpenAL initialized. [23:29:17] [sound Library Loader/INFO]: Sound engine started [23:29:23] [Client thread/INFO]: Created: 512x512 textures-atlas [23:29:25] [Client thread/INFO] [FML]: Injecting itemstacks [23:29:25] [Client thread/INFO] [FML]: Itemstack injection complete [23:29:26] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [23:29:26] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:calex [23:29:26] [Client thread/INFO]: SoundSystem shutting down... [23:29:26] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [23:29:26] [sound Library Loader/INFO]: Starting up SoundSystem... [23:29:26] [Thread-9/INFO]: Initializing LWJGL OpenAL [23:29:26] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:29:26] [Thread-9/INFO]: OpenAL initialized. [23:29:27] [sound Library Loader/INFO]: Sound engine started [23:29:32] [Client thread/ERROR] [FML]: Exception loading model calex:item/redstonesword with loader instance, skipping com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 6 column 7 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?] at com.google.gson.Gson.fromJson(Gson.java:741) ~[Gson.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:47) ~[ModelBlock.class:?] at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:269) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$900(ModelLoader.java:71) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:534) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:92) [ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadAnyModel(ModelLoader.java:201) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.getModel(ModelLoader.java:184) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:171) [ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:96) [ModelLoader.class:?] at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:775) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:331) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:529) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:356) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60-ea] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60-ea] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60-ea] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60-ea] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: com.google.gson.stream.MalformedJsonException: Unterminated object at line 6 column 7 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:480) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:666) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] ... 28 more [23:29:32] [Client thread/INFO]: Created: 512x512 textures-atlas [23:29:33] [Client thread/ERROR] [FML]: Model definition for location calex:redstonesword#inventory not found I hope maybe someone can help me Ahh, and the textures work on every other item.