Jump to content

larsgerrits

Members
  • Posts

    3462
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by larsgerrits

  1. Disable the loading screen as described in the EAQ.
  2. Does your server have enough RAM to support 4GB?
  3. Report it to the authors of the mod.
  4. 1) WARNING: coremods are present: LoadingPlugin (Quark-r1.0-56.jar) ShetiPhian-ASM (shetiphiancore-1.10.0-3.3.1.jar) LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar) EnderCorePlugin (EnderCore-1.10.2-0.4.1.58-beta.jar) ItemPatchingLoader (ItemPhysic Full 1.3.4 mc1.10.2.jar) LoadingPlugin (ResourceLoader-MC1.9.4-1.5.1.jar) NWRTweak (redstonepaste-mc1.9.4-1.7.4.jar) FMLPlugin (InventoryTweaks-1.61-58.jar) LoadingHook (Mekanism-1.10.2-9.2.0.292.jar) CreativePatchingLoader (CreativeCore v1.6.6 mc1.10.2.jar) Contact their authors BEFORE contacting forge 2) java.lang.RuntimeException: Error while interacting with block minecraft:stone_pressure_plate[powered=true] with 1xitem.actuallyadditions.itemSolidifiedExperience@0. Method:GENERIC_CLICK Button:RIGHT_CLICK at com.rwtema.extrautils2.tile.TileUse.operate(TileUse.java:303) Seems like an issue between Actually Additions and Extra Utilties 2.
  5. 1.7.10 is no longer supported by Forge.
  6. Post your Container code.
  7. This topic has been moved to Support & Bug Reports. [iurl]http://www.minecraftforge.net/forum/index.php?topic=43758.0[/iurl]
  8. Caused by: java.lang.OutOfMemoryError: Java heap space Assign more RAM to Minecraft, 500MB is not enough.
  9. Go to Project Settings and set/add the JDK.
  10. World#isRemote is true on the client and false on the server. So you want: if !remote do stuff
  11. What else would I mean with overriding? Once on the client and once on the server side. Check if your on the server side, than do your code.
  12. Your implementation should have an empty constructor.
  13. To clarify: when you create an ItemStack from a Block , it will get the corresponding ItemBlock . Since BlockDoor doesn't have a corresponding ItemBlock , it will create an ItemStack with a null Item . To fix this, you should probably use Block#getPickBlock(...) .
  14. Quick question I have seen you do this but what do the "::" mean is it the same as using "#"? That is pretty much what it means. The :: is actually an operator added in Java 8 to reference methods so they can be used for various things e.g. passing a Function as a parameter of a method. Probably not the best explanation, but this is what I know of them.
  15. Then what is this? public void registerEventHandler() { GameRegistry.registerTileEntity(TileEntityCheeseBoard.class, Reference.MODID + "TileEntityCheeseBoard"); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityCheeseBoard.class, new RenderCheeseBoard()); MinecraftForge.EVENT_BUS.register(new CheeseClientHandler()); }
  16. There's an overloaded method of EntityRegistry#registerModEntity which takes 2 integers: the primary and the secondary color.
  17. It'd be useful to post the crash report so we can actually help you...
  18. Holy mother of crash reports. Please use a spoiler next time (did it for you this time)! 1.7.10 is no longer supported by Forge.
  19. It is actually the line above which shows what mod is erroring: [20:42:49] [main/TRACE] [FML/]: Registering transformer li.cil.oc.common.asm.ClassTransformer The crash is caused by the class li.cil.oc.common.asm.ClassTransformer . Usually, you can figure out what class that mod is from by looking at the name. In this case, it was a bit harded, but because the only coremod loaded: [20:42:48] [main/DEBUG] [FML/]: Enabling runtime deobfuscation [20:42:48] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [20:42:48] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [20:42:48] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [20:42:48] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [20:42:48] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [20:42:48] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [20:42:48] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\blank\Documents\Curse\Minecraft\Instances\test [20:42:48] [main/DEBUG] [FML/]: Discovering coremods [20:42:48] [main/DEBUG] [FML/]: Examining for coremod candidacy OpenComputers-MC1.10.2-1.6.0.4.jar [20:42:48] [main/TRACE] [FML/]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.10.2-1.6.0.4.jar, it will be examined later for regular @Mod instances [20:42:48] [main/DEBUG] [FML/]: Instantiating coremod class TransformerLoader [20:42:48] [main/DEBUG] [FML/]: The coremod li.cil.oc.common.launch.TransformerLoader requested minecraft version 1.10.2 and minecraft is 1.10.2. It will be loaded. [20:42:48] [main/DEBUG] [FML/]: Enqueued coremod TransformerLoader which was not Forge is Open Computers, that has to be the crashing one.
  20. 1.7.10 is no longer supported by Forge.
  21. This is an issue with OpenComputers, report it to their author if you're using the latest version of the mod and the latest version of Forge.
  22. 1.7.10 is no longer supported by Forge.
  23. Well, only if you want red wool and blue wool to be considered the same... You have to check both the Item and the metadata.
  24. You have to create that folder manually.
×
×
  • Create New...

Important Information

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