Jump to content

pop1040

Members
  • Posts

    15
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

pop1040's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Fixed, The problem is the logger isn't properly initiated in ChickenBones multipart on certain operating systems. added some code that checks ChickenBones multipart's logger is properly initiated and gives it a copy of the default if it isn't initiated. Insistently this means that my mod might fix forge multipart on operating systems which it is normally incompatible with. Added the following code right before the register part function call: import codechicken.multipart.package$; //Essential imports import codechicken.multipart.handler.MultipartProxy$; //Init function in class public void init(){ if(package$.MODULE$.logger()==null){ FMLLog.getLogger().warn("NULL LOGGER FOUND IN MULTIPART, FIXING (probably a glitch with your operating system)"); MultipartProxy$.MODULE$.logger_$eq(FMLLog.getLogger()); } MultiPartRegistry.registerParts(this, data); }
  2. So I've been trying to make ChickenBones multipart working for quite some time. I followed an old tutorial made by a guy who goes by whov for setting up the enviroment with code chicken core and ChickenBones multipart. I also followed his tutorial for a simple multipart. The problem is a null pointer exception that happens when I try to register my multiparts in the multipart registry, and since I don't know scala, I can't tell whats wrong. I think it might be my dev envrioment but no bets on that. Clues/useful tidbits: The tutorial called for CodeChickenCore to be put in the mods folder and linked in eclipse but this prevented the game from launching as two instances of the mod are loaded so I only linked it and this loads the mod fine with the exception of this crash when I use forge multipart The tutorial was old but for 1.7.x Error occurs whether I'm using IPartFactory2 or not Error occurs on MultiPartRegistry.registerParts(this, data); Errored line is logger.debug("Registered multipart: "+s) in MultiPartRegistry (line 127) Before I rebuilt my development environment the first occurrence of the crash caused the built-in minecraft multipart mod to have the same crash regardless of what I did as well I did nothing to the scala installation and installing the scala IDE plugin for eclipse and using the right-click option "configure->add scala nature" since then has not made a differance Crash report: [18:47:51] [main/INFO] [GradleStart]: Extra: [] [18:47:51] [main/INFO] [GradleStart]: Found and added coremod: codechicken.core.launch.CodeChickenCorePlugin [18:47:51] [main/INFO] [GradleStart]: Found and added coremod: codechicken.core.launch.DepLoader [18:47:51] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Thomas/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [18:47:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [18:47:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [18:47:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [18:47:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [18:47:51] [main/INFO] [FML]: Forge Mod Loader version 7.99.30.1492 for Minecraft 1.7.10 loading [18:47:51] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_25 [18:47:51] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [18:47:51] [main/INFO] [FML]: Found a command line coremod : codechicken.core.launch.CodeChickenCorePlugin [18:47:52] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [18:47:52] [main/INFO] [FML]: Found a command line coremod : codechicken.core.launch.DepLoader [18:47:52] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [18:47:52] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.DepLoader [18:47:52] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.nei.asm.NEICorePlugin [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [18:47:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:47:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:52] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [18:47:55] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:47:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [18:47:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:47:57] [main/INFO] [GradleStart]: Remapping AccessTransformer rules... [18:47:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [18:47:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [18:47:57] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [18:48:00] [main/INFO]: Setting user: Player15 [18:48:05] [Client thread/INFO]: LWJGL Version: 2.9.1 [18:48:07] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Don't do that. Time: 7/21/15 6:48 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.8.0_25, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 864935504 bytes (824 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.2.0' Renderer: 'GeForce GTX 660M/PCIe/SSE2' [18:48:08] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [18:48:08] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1492 Initialized [18:48:08] [Client thread/INFO] [FML]: Replaced 183 ore recipies [18:48:08] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [18:48:08] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [18:48:08] [Client thread/INFO] [FML]: Searching C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\mods for mods [18:48:08] [Client thread/INFO] [FML]: Also searching C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\mods\1.7.10 for mods [18:48:18] [Client thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345 [18:48:18] [Client thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345 [18:48:18] [Client thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.345 [18:48:18] [Client thread/INFO] [FML]: Forge Mod Loader has identified 11 mods to load [18:48:19] [Client thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-dev.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [18:48:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, ForgeMicroblock, ForgeMultipart, McMultipart, Railcraft] at CLIENT [18:48:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, ForgeMicroblock, ForgeMultipart, McMultipart, Railcraft] at SERVER [18:48:22] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Advanced Components, FMLFileResourcePack:Gun Mod, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin, FMLFileResourcePack:Railcraft [18:48:22] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [18:48:22] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [18:48:22] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [18:48:22] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [18:48:22] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [18:48:23] [Client thread/INFO] [FML]: registering converter [18:48:23] [Client thread/INFO] [FML]: registering parts [18:48:29] [Client thread/INFO] [Railcraft]: Module disabled: ModuleIC2, IC2 not detected [18:48:29] [Client thread/INFO] [Railcraft]: Module disabled: ModuleThaumcraft, Thaumcraft not detected [18:48:33] [Client thread/INFO] [FML]: Applying holder lookups [18:48:33] [Client thread/INFO] [FML]: Holder lookups applied [18:48:33] [Client thread/INFO] [FML]: Injecting itemstacks [18:48:33] [Client thread/INFO] [FML]: Itemstack injection complete [18:48:33] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue [18:48:33] [Client thread/ERROR] [FML]: States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCH FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) UCH Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) UCH CodeChickenCore{1.0.7.46} [CodeChicken Core] (minecraft.jar) UCH NotEnoughItems{1.0.5.111} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.111-dev.jar) UCE advancedcomponents{0.1} [Advanced Components] (bin) UCH pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) UCH ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) UCH McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) UCH Railcraft{9.6.1.0} [Railcraft] (Railcraft_1.7.10-9.6.1.0-dev.jar) UCH ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) [18:48:33] [Client thread/ERROR] [FML]: The following problems were captured during this phase [18:48:33] [Client thread/ERROR] [FML]: Caught exception from advancedcomponents java.lang.NullPointerException at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?] at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?] at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33) ~[scala-library-2.11.1.jar:?] at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35) ~[scala-library-2.11.1.jar:?] at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?] at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?] at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala) ~[ForgeMultipart-1.7.10-1.2.0.345-dev.jar:?] at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32) ~[bin/:?] at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290) ~[bin/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) ~[forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?] at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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 net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [18:48:33] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Shall we play a game? Time: 7/21/15 6:48 PM Description: Initializing game java.lang.NullPointerException: Initializing game at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127) at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123) at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33) at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35) at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123) at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108) at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala) at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32) at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) 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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) at net.minecraft.client.Minecraft.run(Minecraft.java:942) at net.minecraft.client.main.Main.main(Main.java:164) 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(Unknown Source) at GradleStart.main(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:127) at codechicken.multipart.MultiPartRegistry$$anonfun$registerParts$2.apply(MultiPartRegistry.scala:123) at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33) at scala.collection.mutable.WrappedArray.foreach(WrappedArray.scala:35) at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:123) at codechicken.multipart.MultiPartRegistry$.registerParts(MultiPartRegistry.scala:108) at codechicken.multipart.MultiPartRegistry.registerParts(MultiPartRegistry.scala) at net.pop1040.advancedcomponents.microblock.PartFactory.init(PartFactory.java:32) at net.pop1040.advancedcomponents.AdvancedComponents.preInit(AdvancedComponents.java:290) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) 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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:942) at net.minecraft.client.main.Main.main(Main.java:164) 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(Unknown Source) at GradleStart.main(Unknown Source) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.8.0_25, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 742665120 bytes (708 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 11 mods loaded, 11 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCH FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) UCH Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar) UCH CodeChickenCore{1.0.7.46} [CodeChicken Core] (minecraft.jar) UCH NotEnoughItems{1.0.5.111} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.111-dev.jar) UCE advancedcomponents{0.1} [Advanced Components] (bin) UCH pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) UCH ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) UCH McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) UCH Railcraft{9.6.1.0} [Railcraft] (Railcraft_1.7.10-9.6.1.0-dev.jar) UCH ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-dev.jar) GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.2.0' Renderer: 'GeForce GTX 660M/PCIe/SSE2' Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: GeForce GTX 660M/PCIe/SSE2 GL version 4.2.0, NVIDIA Corporation GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [18:48:34] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Thomas\Desktop\Forge1.7.10 latest\eclipse\.\crash-reports\crash-2015-07-21_18.48.33-client.txt Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Part Factory: package net.pop1040.advancedcomponents.microblock; import java.util.Arrays; import net.minecraft.block.Block; import net.minecraft.init.Blocks; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.world.World; import net.pop1040.advancedcomponents.AdvancedComponents; import codechicken.lib.data.MCDataInput; import codechicken.lib.vec.BlockCoord; import codechicken.multipart.MultiPartRegistry; import codechicken.multipart.MultiPartRegistry.IPartConverter; import codechicken.multipart.MultiPartRegistry.IPartFactory; import codechicken.multipart.MultiPartRegistry.IPartFactory2; import codechicken.multipart.TMultiPart; import cpw.mods.fml.common.FMLLog; public class PartFactory implements IPartFactory2, IPartConverter { public PartFactory() { } public PartFactory init(){ FMLLog.getLogger().info("registering converter"); MultiPartRegistry.registerConverter(this); FMLLog.getLogger().info("registering parts"); String[] data = new String[1]; data[0]="ac_conduit"; //MultiPartRegistry.registerParts(this, new String[]{"ac_conduit"}); //Apparently not an array issue //this made it load but crash/not work when I attemted to use the multipart I added //try{ MultiPartRegistry.registerParts(this, data); //}catch(NullPointerException e){ // e.printStackTrace(); // FMLLog.getLogger().error("Caused by"); // if(e.getCause()!=null)e.getCause().printStackTrace(); //} //MultiPartRegistry.partList. return this; } @Override public Iterable<Block> blockTypes() { return Arrays.asList(AdvancedComponents.conduit); } @Override public TMultiPart convert(World world, BlockCoord pos) { Block b = world.getBlock(pos.x, pos.y, pos.z); int meta = world.getBlockMetadata(pos.x, pos.y, pos.z); FMLLog.getLogger().info("convert request at " + pos.x + " " + pos.y + " " + pos.z + " meta " + meta + " block " + b); if(b == AdvancedComponents.conduit)return new ConduitPart(meta); return null; } public TMultiPart createPart(String name) { FMLLog.getLogger().info("create part request (name " + name + ")"); if(name.equals("ac_conduit"))return new ConduitPart(); return null; } @Override public TMultiPart createPart(String arg0, NBTTagCompound arg1) { return createPart(arg0); } @Override public TMultiPart createPart(String arg0, MCDataInput arg1) { return createPart(arg0); } }
  3. sure, I'll do it that way but I should have asked for this back in 1.6 when I started my mod (I didn't because forge for 1.6 was not being updated due to 1.7 being out). Would it be possible to have this in forge for 1.8? FOV got one and its in the same boat.
  4. That value is the settings value and would be save as the user's settings. It would be by far from optimal, Imagine doing the same with FOV rather than using the Hook. A hook is preferable.
  5. One of the items in my mod allows the user to zoom in at a location which I did using the FOV hook. However, I have noticed that there is no hook for the mouse sensitivity. It is simply hard coded to directly use the value of the sensitivity slider and I can't override that without changing the value of the slider (which is not optimal), overriding the whole entityRendere class, overriding the gameSettings class, or using ASM. Note; I am using minecraft 1.7.10, this would be of no use to me in forge for 1.8. The troublesome code where it would be nice to have a hook added: net.minecraft.client.renderer.EntityRenderer.java this.mc.mcProfiler.startSection("mouse"); if (this.mc.inGameHasFocus && flag) { this.mc.mouseHelper.mouseXYChange(); float f1 = this.mc.gameSettings.mouseSensitivity * 0.6F + 0.2F; //Right here. Note the direct access to the variable float f2 = f1 * f1 * f1 * 8.0F; float f3 = (float)this.mc.mouseHelper.deltaX * f2; float f4 = (float)this.mc.mouseHelper.deltaY * f2; byte b0 = 1; if (this.mc.gameSettings.invertMouse) { b0 = -1; } if (this.mc.gameSettings.smoothCamera) { this.smoothCamYaw += f3; this.smoothCamPitch += f4; float f5 = p_78480_1_ - this.smoothCamPartialTicks; this.smoothCamPartialTicks = p_78480_1_; f3 = this.smoothCamFilterX * f5; f4 = this.smoothCamFilterY * f5; this.mc.thePlayer.setAngles(f3, f4 * (float)b0); } else { this.mc.thePlayer.setAngles(f3, f4 * (float)b0); } } this.mc.mcProfiler.endSection(); BTW: If anyone knows a good way to do this without a new code or ASM, I would be happy to here it. I should mention I did try overriding the instance of the mouseHelper class with my own that undid the math of the sensitivity code and used my own modifications but the use of integers rendered it a useless change due to it being impossible to move the perspective below certain mouse speeds.
  6. *bump* btw: I do have everything I need installed, that's not the problem.
  7. *ahem* http://i1049.photobucket.com/albums/s382/pop1040/build_path_001_zps9jgeqz7u.png[/img]
  8. So I've been trying to add forge multipart to my development environment but I haven't had the best of luck. I have a dev environment running with code chicken core, code chicken lib and NEI loaded in the mods folder (the "<Dev enviroment>\eclipse\mods\" one, code chicken lib was in the 1.7.10 subfolder) and linked in eclipse with sources (apart from code chicken lib which I don't have a source for). When I tried to add forge multipart however, it crashed and I have no idea why (I should mention that I do have the scalla jars installed, I'm pretty sure it isn't that). Error code: [19:52:11] [main/INFO] [GradleStart]: Extra: [] [19:52:11] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Thomas/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker] [19:52:11] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [19:52:11] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [19:52:11] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [19:52:11] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [19:52:11] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1277 for Minecraft 1.7.10 loading [19:52:11] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_25, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_25 [19:52:11] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [19:52:12] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [19:52:12] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [19:52:12] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.DepLoader [19:52:12] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.nei.asm.NEICorePlugin [19:52:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:52:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:52:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:12] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [19:52:15] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:52:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [19:52:16] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [19:52:16] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [19:52:16] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [19:52:21] [main/INFO]: Setting user: Player421 [19:52:26] [Client thread/INFO]: LWJGL Version: 2.9.1 [19:52:28] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [19:52:28] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1277 Initialized [19:52:28] [Client thread/INFO] [FML]: Replaced 183 ore recipies [19:52:29] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [19:52:29] [Client thread/INFO] [FML]: Searching C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\mods for mods [19:52:29] [Client thread/INFO] [FML]: Also searching C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\mods\1.7.10 for mods [19:52:33] [Client thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320 [19:52:33] [Client thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320 [19:52:33] [Client thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.1.320 [19:52:33] [Client thread/INFO] [FML]: Forge Mod Loader has identified 11 mods to load [19:52:33] [Client thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.1.99-dev.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [19:52:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, UniversalElectricity, ForgeMicroblock, ForgeMultipart, McMultipart] at CLIENT [19:52:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, advancedcomponents, pop1040gunmod, UniversalElectricity, ForgeMicroblock, ForgeMultipart, McMultipart] at SERVER [19:52:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Advanced Components, FMLFileResourcePack:Gun Mod, FMLFileResourcePack:Universal Electricity, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin [19:52:35] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [19:52:35] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [19:52:35] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [19:52:36] [Client thread/ERROR] [ForgeMicroblock]: Skipping event FMLPreInitializationEvent and marking errored mod ForgeMicroblock since required dependency ForgeMultipart has errored [19:52:36] [Client thread/INFO] [FML]: Applying holder lookups [19:52:36] [Client thread/INFO] [FML]: Holder lookups applied [19:52:36] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue [19:52:36] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1277} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1277} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized NotEnoughItems{1.0.3.74} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.74-dev.jar) Unloaded->Constructed->Pre-initialized advancedcomponents{0.1} [Advanced Components] (bin) Unloaded->Constructed->Pre-initialized pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) Unloaded->Constructed->Pre-initialized UniversalElectricity{@MAJOR@.@MINOR@.@REVIS@} [universal Electricity] (universal-electricity-4.0.0.88-dev.jar) Unloaded->Constructed->Pre-initialized ForgeMultipart{1.1.1.320} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored McMultipart{1.1.1.320} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Pre-initialized ForgeMicroblock{1.1.1.320} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored [19:52:36] [Client thread/ERROR] [FML]: The following problems were captured during this phase [19:52:36] [Client thread/ERROR] [FML]: Caught exception from ForgeMultipart java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart at codechicken.multipart.handler.MultipartProxy_serverImpl.preInit(proxies.scala:35) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?] at codechicken.multipart.handler.MultipartMod$.preInit(MultipartMod.scala:16) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?] at codechicken.multipart.handler.MultipartMod.preInit(MultipartMod.scala) ~[ForgeMultipart-1.7.10-1.1.1.320-dev.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1277.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25] 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/:?] Caused by: java.lang.ClassNotFoundException: codechicken.multipart.TileMultipart at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.11.jar:?] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] ... 42 more Caused by: java.lang.NoClassDefFoundError: codechicken/lib/world/IChunkLoadTile at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_25] at java.lang.ClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25] at java.security.SecureClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25] at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.11.jar:?] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] ... 42 more Caused by: java.lang.ClassNotFoundException: codechicken.lib.world.IChunkLoadTile at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101) ~[launchwrapper-1.11.jar:?] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_25] at java.lang.ClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25] at java.security.SecureClassLoader.defineClass(Unknown Source) ~[?:1.8.0_25] at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.11.jar:?] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25] ... 42 more [19:52:37] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // My bad. Time: 1/24/15 7:52 PM Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart at cpw.mods.fml.common.LoadController.transition(LoadController.java:162) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:515) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) 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) Caused by: java.lang.NoClassDefFoundError: codechicken/multipart/TileMultipart at codechicken.multipart.handler.MultipartProxy_serverImpl.preInit(proxies.scala:35) at codechicken.multipart.handler.MultipartMod$.preInit(MultipartMod.scala:16) at codechicken.multipart.handler.MultipartMod.preInit(MultipartMod.scala) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) ... 12 more Caused by: java.lang.ClassNotFoundException: codechicken.multipart.TileMultipart at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 42 more Caused by: java.lang.NoClassDefFoundError: codechicken/lib/world/IChunkLoadTile at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ... 44 more Caused by: java.lang.ClassNotFoundException: codechicken.lib.world.IChunkLoadTile at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 48 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.8.0_25, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 828665264 bytes (790 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.85.1277 Minecraft Forge 10.13.2.1277 11 mods loaded, 11 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1277} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1277} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized NotEnoughItems{1.0.3.74} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.74-dev.jar) Unloaded->Constructed->Pre-initialized advancedcomponents{0.1} [Advanced Components] (bin) Unloaded->Constructed->Pre-initialized pop1040gunmod{0.1} [pop1040's Gun Mod] (bin) Unloaded->Constructed->Pre-initialized UniversalElectricity{@MAJOR@.@MINOR@.@REVIS@} [universal Electricity] (universal-electricity-4.0.0.88-dev.jar) Unloaded->Constructed->Pre-initialized ForgeMultipart{1.1.1.320} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored McMultipart{1.1.1.320} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Pre-initialized ForgeMicroblock{1.1.1.320} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.1.320-dev.jar) Unloaded->Constructed->Errored [19:52:37] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Thomas\Desktop\Forge1.7.10 dev\eclipse\.\crash-reports\crash-2015-01-24_19.52.37-client.txt Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release EDIT: found the answer, for some reason my copy of code chicken lib was missing the chickenbones.lib.world.IChunkLoadTile class as well as many others. Just manually downloaded it and didn't attach a source (not sure if that was part of the problem and since it worked, no point messing with it)
  9. In my mod, I have an item that has a custom model which I have managed to get to render when held and in 3'd person. My issue is that I can't seem to get it to render the model in my inventory or when the item is thrown. I know it can be done as the rocket launcher from ICBM renders in full 3D and so does some items from mine factory reloaded. Does anyone know how to do this/has done this before?
  10. you could always take a quick look into the code with a java decompiler and see what he did although from the one time I looked in the ICBM jar for some texture information, I think he has it obfuscated. I suppose one could always try and ask him how he did it.
  11. I was just thinking if there is an item in any forge mod that renders in full 3D when in your inventory and I realized that the rocket launcher from ICBM does. So at least we know it is possible.
  12. Thanks for trying anyways. I think there might be a way since there is a switch statement which has the option for rendering in an inventory. @Override public boolean handleRenderType(ItemStack item, ItemRenderType type) { switch(type){ case EQUIPPED: return true; case ENTITY: return false; case FIRST_PERSON_MAP: break; case INVENTORY: return false; default: return false; } return false; } trouble is it always crashes when I set it to true and add the same render code into the second switch statement for inventory. I wonder if you could trick it into thinking its a block for rendering and use the block code for a custom model. Anyone have any ideas? Thanks.
  13. In my mod I have an item that has a full 3D model which renders when held with a custom model and in third person with a custom model. For some reason, I can't seem to get it to use that model when viewing the item in an inventory or when the item is thrown. Anyone know a good way to make this work?
  14. since redpower doesn't have a crash report place, I'll post this here (at least I think its redpower and not forge but it could be ether) The game crashed when a seed entered a in-line sort-machine. The sorting machine was in manual redstone control mode and the color code mode where unknown items where colored a specific color. This only happend when a stack of flax seeds entered it (they where not sorted inside it, could happen when other unsorted items are put through). I think its a render bug with colored flax seeds in pnematic tubes, probably wrong.
  15. I don't know what mod caused this or if it was even a glitch with a mod and not just forge so I am posting this here It happened when I broke a auto-crafting table however the crash report had nothing to do with buildcraft and had more to do with chunk loading. Should I post this on the buildcraft forums? Crash report: ---- Minecraft Crash Report ---- // I bet Cylons wouldn't have this problem. Time: 1/5/13 6:05 PM Description: Exception in world tick java.lang.IndexOutOfBoundsException: Index: 45, Size: 45 at java.util.ArrayList.rangeCheck(Unknown Source) at java.util.ArrayList.get(Unknown Source) at rq.a(SourceFile:88) at rq.a(SourceFile:277) at ayh.a(NetClientHandler.java:1138) at df.a(SourceFile:45) at cf.b(MemoryConnection.java:80) at ayh.d(NetClientHandler.java:240) at ayp.b(WorldClient.java:92) at net.minecraft.client.Minecraft.l(Minecraft.java:1872) at net.minecraft.client.Minecraft.J(Minecraft.java:846) at net.minecraft.client.Minecraft.run(Minecraft.java:771) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at java.util.ArrayList.rangeCheck(Unknown Source) at java.util.ArrayList.get(Unknown Source) at rq.a(SourceFile:88) at rq.a(SourceFile:277) at ayh.a(NetClientHandler.java:1138) at df.a(SourceFile:45) at cf.b(MemoryConnection.java:80) at ayh.d(NetClientHandler.java:240) -- Affected level -- Details: Level name: MpServer All players: 1 total; [ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]] Chunk stats: MultiplayerChunkCache: 441 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (385,4,-1498), Chunk: (at 1,0,6 in 24,-94; contains blocks 384,0,-1504 to 399,255,-1489), Region: (0,-3; contains chunks 0,-96 to 31,-65, blocks 0,0,-1536 to 511,255,-1025) Level time: 887466 game time, 1780021 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false Forced entities: 2 total; [EntityBlock['unknown'/18553, l='MpServer', x=400.25, y=55.00, z=-1597.75], ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]] Retry entities: 0 total; [] Stacktrace: at ayp.a(WorldClient.java:440) at net.minecraft.client.Minecraft.l(Minecraft.java:1885) at net.minecraft.client.Minecraft.J(Minecraft.java:846) at net.minecraft.client.Minecraft.run(Minecraft.java:771) at java.lang.Thread.run(Unknown Source) -- Affected level -- Details: Level name: MpServer All players: 1 total; [ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]] Chunk stats: MultiplayerChunkCache: 441 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (385,4,-1498), Chunk: (at 1,0,6 in 24,-94; contains blocks 384,0,-1504 to 399,255,-1489), Region: (0,-3; contains chunks 0,-96 to 31,-65, blocks 0,0,-1536 to 511,255,-1025) Level time: 887466 game time, 1780021 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false Forced entities: 2 total; [EntityBlock['unknown'/18553, l='MpServer', x=400.25, y=55.00, z=-1597.75], ays['pop1040'/18347, l='MpServer', x=344.48, y=58.10, z=-1572.30]] Retry entities: 0 total; [] -- System Details -- Details: Minecraft Version: 1.4.6 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_07, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 220049208 bytes (209 MB) / 688652288 bytes (656 MB) up to 3817799680 bytes (3640 MB) JVM Flags: 2 total; -Xms512m -Xmx4096m AABB Pool Size: 47 (2632 bytes; 0 MB) allocated, 17 (952 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v7.25 FML v4.6.12.511 Minecraft Forge 6.5.0.473 39 mods loaded, 39 mods active mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available mod_Audiotori [mod_Audiotori] (Audiotori_r3__1_4_6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Core [buildCraft] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Builders [bC Builders] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Energy [bC Energy] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Factory [bC Factory] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Transport [bC Transport] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available BuildCraft|Silicon [bC Silicon] (buildcraft-A-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available ChickenChunks [ChickenChunks] (ChickenChunks 1.2.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available IC2 [industrialCraft 2] (industrialcraft-2_1.112.170-lf.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available CompactSolars [Compact Solar Arrays] (compactsolars-universal-1.4.6-3.2.0.21.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available ComputerCraft [ComputerCraft] (ComputerCraft1.48.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available CCTurtle [ComputerCraft Turtles] (ComputerCraft1.48.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available ExtrabiomesXL [ExtrabiomesXL] (ExtrabiomesXL-universal-1.4.6-3.7.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available Forestry [Forestry for Minecraft] (forestry-A-1.6.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.4.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available IronChest [iron Chest] (ironchest-universal-1.4.6-4.5.1.199.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available MiscPeripherals [MiscPeripherals] (miscperipherals-2.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available ModularForceFieldSystem [Modular ForceField System V2] (ModularForceFieldSystemV2.2.8.2.13.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available NEIPlugins [NEI Plugins] (NEIPlugins-1.0.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available ObsidiPlates [Obsidian Pressure Plates] (obsidiplates-universal-1.2.0.3.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available Railcraft [Railcraft] (Railcraft_1.4.6-6.12.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerCore [RedPower] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerBase [RP Base] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerMachine [RP Machine] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerCompat [RP Compat] (RedPowerCompat-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerWiring [RP Wiring] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerLogic [RP Logic] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerLighting [RP Lighting] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerWorld [RP World] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available RedPowerControl [RP Control] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available mod_SmartMoving [smart Moving] (Smart Moving Client for ModLoader.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available mod_SmartRender [smart Render] (Smart Moving Client for ModLoader.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available SoulShards [soul Shards] (SoulShards-v1.14-universal.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available StevesCarts [steve's Carts] (StevesCarts2.0.0.a40.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available LWJGL: 2.4.2 OpenGL: AMD Radeon HD 7670M GL version 4.2.11411 Compatibility Profile Context, ATI Technologies Inc. Is Modded: Definitely; Client brand changed to 'forge,fml' Type: Client (map_client.txt) Texture Pack: default.zip Profiler Position: N/A (disabled) Vec3 Pool Size: 110 (6160 bytes; 0 MB) allocated, 21 (1176 bytes; 0 MB) used
×
×
  • Create New...

Important Information

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