Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

DarkenMoon97

Members
  • Joined

  • Last visited

  1. Any idea what causes this? I can still use Avast while playing Minecraft with Minecraft Forge perfectly fine.
  2. Here is a new image of when it freezes, from a few days ago since this site keeps acting up.
  3. This is what it showed when I stalled. It was on my server client and I have no idea if this will help at all. P.S. Is the #minecraftforge IRC not around anymore?
  4. I'll have to give you more info tommorrow, I have been running around with VisualVM and I have not gotten a stall.
  5. I have been having random freezes with Minecraft Forge. I have also been using Optifine but it still happens without Optifine as well. What the issue is, is that Minecraft will randomly freeze, from 10 seconds to 10 minutes. When I look in the console nothing happens at all, it's perfectly normal. This issue has been happening since 1.2.5, happened in 1.3.2, 1.4.6/1.4.7, and now 1.5.1 and 1.5.2. I know it isn't my computer cause my friends have the same issues as well. Any ideas as to why this happens?
  6. He couldn't just say "google it"? I mean, a 5 day ban for saying sorry? dafuq
  7. ... Thanks for the help.. I guess.
  8. Oh silly me, I should of included the code. package net.minecraft.src; import net.minecraft.src.forge.*; public class BlockTitanium extends Block implements ITextureProvider { public BlockTitanium(int i, int j) { super(i, j, Material.rock); } public String getTextureFile() { return "/testmod/blocks/test sheet.png"; } } package net.minecraft.src; import net.minecraft.src.forge.*; public class mod_Testing extends BaseMod { public static final Block oreTitanium = new BlockTitanium(123, 0).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreTitanium"); public mod_Testing() { } public void load() { MinecraftForgeClient.preloadTexture("/testmod/blocks/test sheet.png"); ModLoader.registerBlock(oreTitanium); ModLoader.addName(oreTitanium, "Titanium Ore"); } public String getVersion() { return "1.0.0"; } }
  9. I am trying to make a very simple mod by just copying tutorials, and every time, I get this error message. 2012-08-03 09:16:25 [FINER] Pre-initializing C:\Users\*user*\Desktop\MCP 1.2.5 (2)\eclipse\Client\bin\net\minecraft\src 2012-08-03 09:16:25 [FINE] No MLProp configuration for mod_CamelOre found or required. No file written 2012-08-03 09:16:25 [sEVERE] The mod from file src has failed to load. This is likely a mod installation error. java.lang.Error: Unresolved compilation problem: Type mismatch: cannot convert from int to Material at net.minecraft.src.ModLoader.addOverride(ModLoader.java:156) at net.minecraft.src.mod_CamelOre.<clinit>(mod_CamelOre.java:5) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) at java.lang.reflect.Constructor.newInstance(Unknown Source) at java.lang.Class.newInstance0(Unknown Source) at java.lang.Class.newInstance(Unknown Source) at cpw.mods.fml.common.modloader.ModLoaderModContainer.preInit(ModLoaderModContainer.java:110) at cpw.mods.fml.common.Loader.preModInit(Loader.java:239) at cpw.mods.fml.common.Loader.loadMods(Loader.java:617) at cpw.mods.fml.client.FMLClientHandler.onPreLoad(FMLClientHandler.java:200) at net.minecraft.client.Minecraft.startGame(Minecraft.java:386) at net.minecraft.client.Minecraft.run(Minecraft.java:738) at java.lang.Thread.run(Unknown Source) 2012-08-03 09:16:25 [sEVERE] A critical error has occurred. cpw.mods.fml.common.LoaderException: java.lang.Error: Unresolved compilation problem: Type mismatch: cannot convert from int to Material at cpw.mods.fml.common.Loader.preModInit(Loader.java:244) at cpw.mods.fml.common.Loader.loadMods(Loader.java:617) at cpw.mods.fml.client.FMLClientHandler.onPreLoad(FMLClientHandler.java:200) at net.minecraft.client.Minecraft.startGame(Minecraft.java:386) at net.minecraft.client.Minecraft.run(Minecraft.java:738) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.Error: Unresolved compilation problem: Type mismatch: cannot convert from int to Material at net.minecraft.src.ModLoader.addOverride(ModLoader.java:156) at net.minecraft.src.mod_CamelOre.<clinit>(mod_CamelOre.java:5) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) at java.lang.reflect.Constructor.newInstance(Unknown Source) at java.lang.Class.newInstance0(Unknown Source) at java.lang.Class.newInstance(Unknown Source) at cpw.mods.fml.common.modloader.ModLoaderModContainer.preInit(ModLoaderModContainer.java:110) at cpw.mods.fml.common.Loader.preModInit(Loader.java:239) ... 5 more 2012-08-03 09:16:25 [sEVERE] 2 mods loaded Minecraft Forge 3.3.8.170 FML v2.2.106.176 Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5 mod_CamelOre : Loaded (src) mod_MinecraftForge : Loaded (src) 2012-08-03 09:16:25 [FINE] Beginning mod initialization 2012-08-03 09:16:25 [FINER] Initializing mod_CamelOre 2012-08-03 09:16:25 [sEVERE] A critical error has occurred. java.lang.NullPointerException at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356) at cpw.mods.fml.common.Loader.modInit(Loader.java:273) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628) at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223) at net.minecraft.client.Minecraft.startGame(Minecraft.java:429) at net.minecraft.client.Minecraft.run(Minecraft.java:738) at java.lang.Thread.run(Unknown Source) 2012-08-03 09:16:25 [sEVERE] 2 mods loaded Minecraft Forge 3.3.8.170 FML v2.2.106.176 Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5 mod_CamelOre : Loaded (src) mod_MinecraftForge : Loaded (src) 2 mods loaded Minecraft Forge 3.3.8.170 FML v2.2.106.176 Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5 mod_MinecraftForge : Initialized (src) mod_Testing : Loaded (src) Minecraft has crashed! ---------------------- Minecraft has stopped running because it encountered a problem. --- BEGIN ERROR REPORT 68a772fe -------- Generated 8/3/12 10:55 AM Minecraft: Minecraft 1.2.5 OS: Windows 7 (amd64) version 6.1 Java: 1.7.0_04-ea, Oracle Corporation VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation LWJGL: 2.8.4 OpenGL: AMD Radeon HD 6800 Series version 4.2.11733 Compatibility Profile Context, ATI Technologies Inc. java.lang.NullPointerException at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356) at cpw.mods.fml.common.Loader.modInit(Loader.java:273) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628) at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223) at net.minecraft.client.Minecraft.startGame(Minecraft.java:429) at net.minecraft.client.Minecraft.run(Minecraft.java:738) at java.lang.Thread.run(Unknown Source) --- END ERROR REPORT 552581fe ---------- Please keep in mind I know just about nothing about modding Minecraft.
  10. Could we possibly have a archive forum page? I really want the old forge and modloadermp so I can play with 1.7.3 and forge mods, just for the nostalgia. and maybe everyone else who wants to. Anyway, hope you guys have a copy of 1.7.3 forge and modloadermp, Cya.

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.