
many231
Members-
Posts
48 -
Joined
-
Last visited
Everything posted by many231
-
Thank you
-
Is shapeless recipes same as 1.7.10? or different, and what is the name for bone meal in forge, is there even bone meal in minecraft's code? I can't find it.
-
Give me an example thing you made in that, that is 3d I can't get it to work. DO I even need the techne model?
-
Do I have to render it, I want it to render in 3D, the inventory texture doesn't have to be 3D, I want it to hold the model I made for it in techne not with json I know how to do that, json are the space in which the texture/model may take up, I want it to render it as 3D
-
I know that I should look at that but do I need to use a techne model or no?
-
But IDK what of my rotation/size and if I have separate pieces in the model not just 1 thing, also can I just import the model and use Resource location?
-
Yes a custom model in first, third, and dropped, and when you hold it it has a 3D model, I looked at like the anvil item model but I don't know how to translate that into my shape I want.
-
Hey does anyone know the code for making 3D model items in 1.8, I haven't found a up-to-date, and do I need to use a TurboModelThingy or can I use java?
-
Items class: package com.many231.deer.init; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.item.ItemFood; import com.many231.deer.DeerMod; import com.many231.deer.items.Cooked_Venison; import com.many231.deer.items.Venison; public class Items { public static Item Venison; public static ItemFood Cooked_Venison; public static void init() { Venison = new Venison(); Cooked_Venison = new Cooked_Venison(); } } Main Class: @Mod(modid="deer", version="1.0") public class DeerMod { public static final String MODID = "deer"; public static final String VERSION = "1.0"; @Mod.EventHandler public void preInit(FMLPreInitializationEvent evnt) { Items.init(); Item Venison = null; Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Venison, 0, new ModelResourceLocation("deer:Venison", "inventory")); EntityRegistry.registerGlobalEntityID(EntityDeer.class, "Deer", EntityRegistry.findGlobalUniqueEntityId(), 7031082, 0); EntityRegistry.addSpawn(EntityDeer.class, 5, 5, 10, EnumCreatureType.CREATURE, new BiomeGenBase[] { BiomeGenBase.birchForest }); EntityRegistry.addSpawn(EntityDeer.class, 5, 5, 10, EnumCreatureType.CREATURE, new BiomeGenBase[] { BiomeGenBase.extremeHills }); EntityRegistry.addSpawn(EntityDeer.class, 5, 5, 10, EnumCreatureType.CREATURE, new BiomeGenBase[] { BiomeGenBase.forest }); EntityRegistry.addSpawn(EntityDeer.class, 5, 5, 10, EnumCreatureType.CREATURE, new BiomeGenBase[] { BiomeGenBase.plains }); EntityRegistry.addSpawn(EntityDeer.class, 5, 5, 10, EnumCreatureType.CREATURE, new BiomeGenBase[] { BiomeGenBase.taiga }); } @Mod.EventHandler public void init(FMLInitializationEvent event) { if (event.getSide().isClient()) { RenderingRegistry.registerEntityRenderingHandler(EntityDeer.class, new RenderDeer()); } } }
-
Ok I know you have to mesh the model but I have tried everything if I put it in my main mod file it says I need a variable or constant. If I put it in my Items class then it errors. Mesh line: Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Venison, 0, new ModelResourceLocation("deer:Venison", "inventory")); where do I put it and is it right to use the init() way to make items?
-
How do I do that?
-
I am trying to make a mod in FML with items and I have the json class and texture but the texture won't load. json code: { "parent": "builtin/generated", "textures": { "layer0": "deer:textures/items/Venison" }, "display": { "thirdperson": { "rotation": [ -90, 0, 0 ], "translation": [ 0, 1, -3 ], "scale": [ 0.55, 0.55, 0.55 ] }, "firstperson": { "rotation": [ 0, -135, 25 ], "translation": [ 0, 4, 2 ], "scale": [ 1.7, 1.7, 1.7 ] } } } This is located at assets/deer/models/item json name: Venison.json Texture Name: Venison.png Located at: assets/deer/textures/items The texture still doesn't load, please help!
-
I still get a crash? <spoiler> [17:26:02] [main/INFO] [GradleStart]: Extra: [] [17:26:02] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.8, --assetsDir, C:/Users/Manny/.gradle/caches/minecraft/assets, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker] [17:26:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:26:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:26:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [17:26:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [17:26:02] [main/INFO] [FML]: Forge Mod Loader version 8.0.9.1016 for Minecraft 1.8 loading [17:26:02] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_67, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 [17:26:03] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [17:26:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [17:26:03] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [17:26:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:26:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:26:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:26:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:26:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:26:03] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [17:26:07] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [17:26:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:26:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [17:26:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [17:26:08] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [17:26:11] [Client thread/INFO]: Setting user: Player372 [17:26:11] [Client thread/INFO]: (Session ID is token:FML:Player372) [17:26:19] [Client thread/INFO]: LWJGL Version: 2.9.1 [17:26:22] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [17:26:22] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [17:26:22] [Client thread/INFO] [FML]: Searching C:\Users\Manny\Desktop\Forge-1.8\eclipse\mods for mods [17:26:23] [Client thread/INFO] [deer]: Mod deer is missing the required element 'name'. Substituting deer [17:26:30] [Client thread/INFO] [FML]: Forge Mod Loader has identified 3 mods to load [17:26:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, deer] at CLIENT [17:26:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, deer] at SERVER [17:26:32] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:deer [17:26:32] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [17:26:32] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [17:26:33] [Client thread/INFO] [FML]: Applying holder lookups [17:26:33] [Client thread/INFO] [FML]: Holder lookups applied [17:26:33] [sound Library Loader/INFO]: Starting up SoundSystem... [17:26:34] [Thread-7/INFO]: Initializing LWJGL OpenAL [17:26:34] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [17:26:35] [Thread-7/INFO]: OpenAL initialized. [17:26:35] [sound Library Loader/INFO]: Sound engine started [17:26:43] [Client thread/INFO]: Created: 512x512 textures-atlas [17:26:46] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [17:26:46] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{8.0.9.1016} [Forge Mod Loader] (fmlSrc-1.8-8.0.9.1016-1.8.jar) Unloaded->Constructed->Pre-initialized->Initialized deer{1.0} [deer] (bin) Unloaded->Constructed->Pre-initialized->Errored [17:26:46] [Client thread/ERROR] [FML]: The following problems were captured during this phase [17:26:46] [Client thread/ERROR] [FML]: Caught exception from deer java.lang.NullPointerException at com.many231.deer.ModelDeer.<init>(ModelDeer.java:102) ~[bin/:?] at com.many231.deer.RenderDeer.<init>(RenderDeer.java:15) ~[bin/:?] at com.many231.deer.DeerMod.init(DeerMod.java:29) ~[bin/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515) ~[fmlSrc-1.8-8.0.9.1016-1.8.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[fmlSrc-1.8-8.0.9.1016-1.8.jar:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[fmlSrc-1.8-8.0.9.1016-1.8.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:691) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:283) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:486) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:326) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] 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(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [17:26:47] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:func_179870_a:568]: ---- Minecraft Crash Report ---- // But it works on my machine. Time: 11/28/14 5:26 PM Description: Initializing game java.lang.NullPointerException: Initializing game at com.many231.deer.ModelDeer.<init>(ModelDeer.java:102) at com.many231.deer.RenderDeer.<init>(RenderDeer.java:15) at com.many231.deer.DeerMod.init(DeerMod.java:29) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:691) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:283) at net.minecraft.client.Minecraft.startGame(Minecraft.java:486) at net.minecraft.client.Minecraft.run(Minecraft.java:326) at net.minecraft.client.main.Main.main(Main.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.many231.deer.ModelDeer.<init>(ModelDeer.java:102) at com.many231.deer.RenderDeer.<init>(RenderDeer.java:15) at com.many231.deer.DeerMod.init(DeerMod.java:29) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:691) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:283) at net.minecraft.client.Minecraft.startGame(Minecraft.java:486) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:326) at net.minecraft.client.main.Main.main(Main.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_67, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 879793696 bytes (839 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.10 FML v8.0.9.1016 3 mods loaded, 3 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{8.0.9.1016} [Forge Mod Loader] (fmlSrc-1.8-8.0.9.1016-1.8.jar) Unloaded->Constructed->Pre-initialized->Initialized deer{1.0} [deer] (bin) Unloaded->Constructed->Pre-initialized->Errored Launched Version: 1.8 LWJGL: 2.9.1 OpenGL: Intel® HD Graphics GL version 3.1.0 - Build 8.15.10.2712, Intel GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: No Is Modded: Definitely; Client brand changed to 'fml' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) [17:26:47] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:func_179870_a:568]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Manny\Desktop\Forge-1.8\eclipse\.\crash-reports\crash-2014-11-28_17.26.46-client.txt AL lib: (EE) alc_cleanup: 1 device not closed </spoiler>
-
When I put my mob model in eclipse (no errors I did everything right) this is my code: Help!
-
Hi, so I have an error in code for my render class for my mob. The error is The constructor RenderLiving(EntityRenderer, ModelMob, float) is undefined Please help if you can!