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.

DELTA_12

Members
  • Joined

  • Last visited

Everything posted by DELTA_12

  1. Hi, i need help woth those thing for my dimension: 1. It generates dirt pockets in ground like in overworld, wich i dont want (only stone, moon sand and ores) 2. Is there some way to change sun and moon texture for it? 3. Is there a way to set it for just night? 4. How i can add my own structure sthat will generate there (like craters) 5 Is there a way to set custom light value at night(/day)
  2. If you mean me, i did but it only eliminates sunlight but sky is still visible. Yeah and im asking to CHANGE that texture not just make it invisible
  3. Thanks man!!!!
  4. If there any way to change moon and sun texture? Wuppy has those for 1.3 but it doesn´t works on 1.5 anymore. It would be really annoying that you can see Moon from Moon
  5. Byte? IDs should be bytes? my IDs are ints (like in vannilla game) so i tried to change them to bytes ut it throws ArrayOutOfBounds Exception. Here´s my code: BlockNormal.java package skyinf; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; public class BlockNormal extends Block { public BlockNormal(int id, Material material) { super(id, material); } } BaseMod.java: package skyinf; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.world.biome.BiomeGenBase; import net.minecraftforge.common.DimensionManager; import net.minecraftforge.common.EnumHelper; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.Mod.PostInit; import cpw.mods.fml.common.Mod.PreInit; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid = "SkyInfinity", name = "Sky Infinity", version = "0.0.1") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class ModBase { // The instance of your mod that Forge uses. @Instance("SkyInfinity") public static ModBase instance; // Says where the client and server 'proxy' code is loaded. @SidedProxy(clientSide = "skyinf.ClientProxy", serverSide = "skyinf.CommonProxy") public static CommonProxy proxy; public static int dimension = 20; // DEFINITIONS =========================================== public static Block moonSand; public static Block debugPortal; public static Block shipHull; public static Item reCloth; public static Item pLSS; public static Item airBottle; public static Item sSH; public static Item sST; public static Item sSL; public static Item sSB; public static Item debug; public static EnumArmorMaterial armorSpaceSuit = EnumHelper.addArmorMaterial("SPACESUIT", 10, new int[] { 1, 1, 1, 1 }, 0); public static BiomeGenBase moonBiome; @PreInit public void preInit(FMLPreInitializationEvent event) { // Stub Method } @Init public void load(FMLInitializationEvent event) { proxy.registerRenderers(); moonBiome = new BiomeGenMoon(53).setBiomeName("Moon Biome").setDisableRain(); moonSand = new BlockNormal(500, Material.sand).setHardness(0.2F).setStepSound(Block.soundSandFootstep).setUnlocalizedName("siMoonSand").setCreativeTab(CreativeTabs.tabBlock); debugPortal = new BlockDPortal(509, Material.portal).setUnlocalizedName("siDebugPortal").setCreativeTab(CreativeTabs.tabMisc); shipHull = new BlockNormal(510, Material.iron).setCreativeTab(CreativeTabs.tabBlock).setUnlocalizedName("siShipHull").setResistance(0.7F); reCloth = new ItemNormal(501).setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("siReCloth"); airBottle = new ItemNormal(502).setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("siAirBottle"); pLSS = new ItemNormal(503).setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("siPLSS"); sSH = new SpaceSuit(504, armorSpaceSuit, proxy.addArmor(armorSpaceSuit.name()), 0, "spacesuit_1" ).setCreativeTab(CreativeTabs.tabTools).setUnlocalizedName("siSSH"); sST = new SpaceSuit(505, armorSpaceSuit, proxy.addArmor(armorSpaceSuit.name()), 1, "spacesuit_1" ).setCreativeTab(CreativeTabs.tabTools).setUnlocalizedName("siSST"); sSL = new SpaceSuit(506, armorSpaceSuit, proxy.addArmor(armorSpaceSuit.name()), 2, "spacesuit_2" ).setCreativeTab(CreativeTabs.tabTools).setUnlocalizedName("siSSL"); sSB = new SpaceSuit(507, armorSpaceSuit, proxy.addArmor(armorSpaceSuit.name()), 3, "spacesuit_1" ).setCreativeTab(CreativeTabs.tabTools).setUnlocalizedName("siSSB"); debug = new ItemDebug(508).setCreativeTab(CreativeTabs.tabMisc); //Crafting recipes GameRegistry.addRecipe(new ItemStack(reCloth), " x ", "xyx", " x ",'x', (new ItemStack(Block.cloth)), 'y', (new ItemStack(Item.ingotIron))); GameRegistry.addRecipe(new ItemStack(pLSS), "xyx", "xcx", "xzx",'x', (new ItemStack(Item.ingotIron)), 'y', (new ItemStack(airBottle)), 'c', (new ItemStack(reCloth)), 'z', (new ItemStack(Item.redstone))); GameRegistry.addRecipe(new ItemStack(airBottle), "x", "x", 'x', (new ItemStack(Item.ingotIron))); GameRegistry.addRecipe(new ItemStack(sST), "x x", "xyx", "xxx", 'x', (new ItemStack(reCloth)), 'y', (new ItemStack(pLSS))); GameRegistry.addRecipe(new ItemStack(sSH), "xxx", "xyx", 'x', (new ItemStack(reCloth)), 'y', (new ItemStack(Block.thinGlass))); GameRegistry.addRecipe(new ItemStack(sSL), "xxx", "x x","x x", 'x', (new ItemStack(reCloth))); GameRegistry.addRecipe(new ItemStack(sSB), "x x", "x x", 'x', (new ItemStack(reCloth))); //Block registry GameRegistry.registerBlock(moonSand); GameRegistry.registerBlock(debugPortal); GameRegistry.registerBlock(shipHull); //Lang Registry LanguageRegistry.addName(moonSand, "Moon Sand"); LanguageRegistry.addName(debugPortal, "Debug Portal Block"); LanguageRegistry.addName(reCloth, "Reinforced Cloth"); LanguageRegistry.addName(pLSS, "Portable Life Support System"); LanguageRegistry.addName(airBottle, "Air Bottle"); LanguageRegistry.addName(sSH, "Space Suit Helmet"); LanguageRegistry.addName(sST, "Space Suit Torso"); LanguageRegistry.addName(sSL, "Space Suit Legs"); LanguageRegistry.addName(sSB, "Space Suit Boots"); LanguageRegistry.addName(shipHull, "Space Ship Hull"); //MOON DIMENOON DimensionManager.registerProviderType(dimension, WorldProviderMoon.class, false); DimensionManager.registerDimension(dimension, dimension); } @PostInit public void postInit(FMLPostInitializationEvent event) { } // Stub Method } BiomeGenMoon: package skyinf; import net.minecraft.block.Block; import net.minecraft.world.biome.BiomeGenBase; public class BiomeGenMoon extends BiomeGenBase { public BiomeGenMoon(int par1) { super(par1); this.spawnableCreatureList.clear(); this.topBlock = (byte)500; this.fillerBlock = (byte)Block.stone.blockID; } }
  6. I too recognized that null icon error but im not registreing it
  7. Yeah, im getting this error too when generating my dimension with that same block on top. please help me it makes me crazy
  8. You can do it like this: Lines marked with #: those you should add your file: package illusi0n.CreativeBlocks; import java.util.Random; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.registry.LanguageRegistry; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; public class GemOreBlock extends Block { Random r = new Random(); //# Declares a random number generator public GemOreBlock(int par1, String texture) { super(par1, Material.rock); setCreativeTab(CreativeTabs.tabBlock); //place in creative tabs } //drops when broken with pickaxe public int idDropped(int par1, Random par2Random, int par3) { public int rNum = r.nextInt(5) //# sets rNum variable to random nuber of 0-5 generated by random generator declared above if (rNum == 0) //# Those are cases of number: 0-3 - gems (replace [item_1/2/3/4] with return [item_1]; // YourModBaseFile.YourItem 4 - coal 5 - null (total nothing) if (rNum == 1) return [item_2]; if (rNum == 2) return [item_3]; if (rNum == 3) return [item_4]; if (rNum == 4) return Item.coal; if (rNum == 5) return null; } public int quantityDropped(Random random) { return 1; }
  9. Yes! i found that error, it was creating a nether portal except of my portal. I canged it and now worls like charm. But anyway how to get thereby other way(i know its possible because it was in the old moon mod)
  10. hmm okay here is the full log when creating that superflat world: 2013-06-09 20:13:43 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.21.725 for Minecraft 1.5.2 loading 2013-06-09 20:13:43 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) Client VM, version 1.7.0_21, running on Windows 7:x86:6.1, installed at C:\Program Files (x86)\Java\jre7 2013-06-09 20:13:43 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-06-09 20:13:44 [iNFO] [sTDOUT] 229 recipes 2013-06-09 20:13:44 [iNFO] [sTDOUT] 27 achievements 2013-06-09 20:13:45 [iNFO] [Minecraft-Client] Setting user: Player91 2013-06-09 20:13:45 [iNFO] [sTDOUT] (Session ID is -) 2013-06-09 20:13:45 [iNFO] [sTDERR] Client asked for parameter: server 2013-06-09 20:13:45 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2 2013-06-09 20:13:45 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-06-09 20:13:45 [iNFO] [sTDOUT] MinecraftForge v7.8.0.725 Initialized 2013-06-09 20:13:45 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.725 Initialized 2013-06-09 20:13:45 [iNFO] [sTDOUT] Replaced 85 ore recipies 2013-06-09 20:13:45 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-06-09 20:13:45 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Dropbox\WS\Minecraft\Projects\SkyInfinity\2\forge\mcp\jars\config\logging.properties 2013-06-09 20:13:45 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-06-09 20:13:45 [iNFO] [ForgeModLoader] Searching C:\Dropbox\WS\Minecraft\Projects\SkyInfinity\2\forge\mcp\jars\mods for mods 2013-06-09 20:13:46 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-06-09 20:13:46 [iNFO] [mcp] Activating mod mcp 2013-06-09 20:13:46 [iNFO] [FML] Activating mod FML 2013-06-09 20:13:46 [iNFO] [Forge] Activating mod Forge 2013-06-09 20:13:46 [iNFO] [skyInfinity] Activating mod SkyInfinity 2013-06-09 20:13:46 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-06-09 20:13:46 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-06-09 20:13:47 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-06-09 20:13:47 [iNFO] [sTDOUT] 2013-06-09 20:13:47 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-06-09 20:13:47 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-06-09 20:13:47 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-06-09 20:13:47 [iNFO] [sTDOUT] OpenAL initialized. 2013-06-09 20:13:47 [iNFO] [sTDOUT] 2013-06-09 20:13:48 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled 2013-06-09 20:13:48 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-06-09 20:13:48 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-06-09 20:13:49 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-06-09 20:13:49 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-06-09 20:13:49 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods 2013-06-09 20:13:50 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://s3.amazonaws.com/MinecraftResources/ 2013-06-09 20:13:50 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.util.ThreadDownloadResources.run(ThreadDownloadResources.java:57) 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-06-09 20:13:50 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-06-09 20:13:50 [iNFO] [sTDERR] java.lang.RuntimeException: Don't register null! 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureMap.registerIcon(TextureMap.java:229) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.item.Item.registerIcons(Item.java:732) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureMap.refreshTextures(TextureMap.java:85) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextureMaps(RenderEngine.java:522) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextures(RenderEngine.java:433) 2013-06-09 20:13:50 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.onInitializationComplete(FMLClientHandler.java:258) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:479) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) 2013-06-09 20:13:50 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733) 2013-06-09 20:13:50 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2013-06-09 20:13:50 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/null.png, but that file does not exist. Ignoring. 2013-06-09 20:13:51 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-06-09 20:13:51 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-06-09 20:14:13 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2 2013-06-09 20:14:13 [iNFO] [Minecraft-Server] Generating keypair 2013-06-09 20:14:13 [iNFO] [Minecraft-Server] Converting map! 2013-06-09 20:14:13 [iNFO] [Minecraft-Server] Scanning folders... 2013-06-09 20:14:13 [iNFO] [Minecraft-Server] Total conversion count is 0 2013-06-09 20:14:19 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2e1990) 2013-06-09 20:14:19 [WARNING] [Minecraft-Server] Unable to find spawn biome 2013-06-09 20:14:24 [iNFO] [ForgeModLoader] Loading dimension 20 (New World) (net.minecraft.server.integrated.IntegratedServer@2e1990) 2013-06-09 20:14:24 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2e1990) 2013-06-09 20:14:24 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2e1990) 2013-06-09 20:14:24 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-06-09 20:14:25 [iNFO] [Minecraft-Server] Preparing spawn area: 17% 2013-06-09 20:14:26 [iNFO] [Minecraft-Server] Preparing spawn area: 34% 2013-06-09 20:14:27 [iNFO] [Minecraft-Server] Preparing spawn area: 53% 2013-06-09 20:14:28 [iNFO] [Minecraft-Server] Preparing spawn area: 74% 2013-06-09 20:14:29 [iNFO] [Minecraft-Server] Preparing spawn area: 94% 2013-06-09 20:14:29 [iNFO] [sTDERR] java.lang.NullPointerException 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.world.World.getTopSolidOrLiquidBlock(World.java:2002) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.world.WorldProvider.getRandomizedSpawnPoint(WorldProvider.java:389) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:167) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:675) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469) 2013-06-09 20:14:29 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-09 20:14:29 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NullPointerException java.lang.NullPointerException at net.minecraft.world.World.getTopSolidOrLiquidBlock(World.java:2002) at net.minecraft.world.WorldProvider.getRandomizedSpawnPoint(WorldProvider.java:389) at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:167) at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:675) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-09 20:14:29 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Dropbox\WS\Minecraft\Projects\SkyInfinity\2\forge\mcp\jars\.\crash-reports\crash-2013-06-09_20.14.29-server.txt 2013-06-09 20:14:29 [iNFO] [Minecraft-Server] Stopping server 2013-06-09 20:14:29 [iNFO] [Minecraft-Server] Saving players 2013-06-09 20:14:29 [iNFO] [Minecraft-Server] Saving worlds 2013-06-09 20:14:29 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-09 20:14:30 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-09 20:14:30 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-09 20:14:30 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Moon 2013-06-09 20:14:36 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-06-09 20:14:36 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-06-09 20:14:36 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-06-09 20:14:36 [iNFO] [ForgeModLoader] Unloading dimension 20 2013-06-09 20:14:36 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from SERVER_STARTED to SERVER_STOPPED. Loading cannot continue 2013-06-09 20:14:36 [sEVERE] [ForgeModLoader] mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available FML{5.2.21.725} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available Forge{7.8.0.725} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available SkyInfinity{0.0.1} [sky Infinity] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available 2013-06-09 20:14:36 [sEVERE] [ForgeModLoader] The ForgeModLoader state engine has become corrupted. Probably, a state was missed by and invalid modification to a base classForgeModLoader depends on. This is a critical error and not recoverable. Investigate any modifications to base classes outside ofForgeModLoader, especially Optifine, to see if there are fixes available. 2013-06-09 20:14:36 [iNFO] [sTDERR] Exception in thread "Server thread" java.lang.RuntimeException: The ForgeModLoader state engine is invalid 2013-06-09 20:14:36 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:139) 2013-06-09 20:14:36 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.serverStopped(Loader.java:801) 2013-06-09 20:14:36 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:468) 2013-06-09 20:14:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:531) 2013-06-09 20:14:36 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-09 20:14:39 [iNFO] [Minecraft-Client] Stopping! 2013-06-09 20:14:39 [iNFO] [sTDOUT] 2013-06-09 20:14:39 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-06-09 20:14:40 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-06-09 20:14:40 [iNFO] [sTDOUT] EDIT: I can join that world when opening minecrfat again but it has no layer with my block, just dirt and bedrock
  11. OK , i made it work somehow but when i enetr portal and i get to my dimension (i can really see the world) it teleports me back after like 0.2 second AND it teleports me to hell (?). Any ideas? EDIT: Anyway, is there a way to get to that dim without portal? like roght clicking with an item or block?
  12. Im getting this error when: -trying to make superflat world with top layer of my new block -tryig to send a chat message to player -trying to set block on right click
  13. Yeah that Wuppy´s tutorial hepls a bit but its way outdated; i´m getting A LOT of errors and i dot heva idea what to do with them
  14. Im trying to make a block that will check if there are blocks near that block, something like when portal checs if there is obsidian case.
  15. Yeah but i dnt know how minecraft creates the end
  16. Hi im makig a space mod and i wan to make moon dimension. how can i do this?
  17. WARNING!!! 674 Lines of code below!!! [spoiler=MOreBase.java] package mOre; import net.minecraft.block.Block; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraftforge.client.MinecraftForgeClient; import net.minecraftforge.common.EnumHelper; import net.minecraftforge.oredict.OreDictionary; import cpw.mods.fml.client.registry.RenderingRegistry; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.Mod.PostInit; import cpw.mods.fml.common.Mod.PreInit; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid = "mOre", name = "mOre Mod", version = "DEV") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class MOreBase { @Instance("MOreBase") public static MOreBase instance; @SidedProxy(clientSide = "mOre.ClientProxy", serverSide = "mOre.CommonProxy") public static CommonProxy proxy; //BLOCKS public static Block oreTitanium; public static Block oreCopper; public static Block oreTin; public static Block orePlatinum; public static Block oreCobalt; public static Block oreNickel; public static Block oreUranium; public static Block oreSulphur; public static Block oreRuby; public static Block oreSapphire; public static Block oreLead; public static Block oreBCoal; public static Block oreOil; public static Block oreGeode; public static Block oreIridium; public static Block oreBauxite; public static Block blockPlexiglass; public static Block oreSilver; public static Block oreLimestone; //ITEMS public static Item ingotTitanium; public static Item ingotCopper; public static Item ingotTin; public static Item ingotNickel; public static Item ingotCobalt; public static Item ingotPlatinum; public static Item ingotLead; public static Item ingotSteel; public static Item ingotBronze; public static Item gemRuby; public static Item gemSapphire; public static Item ingotIridium; public static Item containerUranium; public static Item dustSulphur; public static Item itemBCoal; public static Item mixBronze; public static Item gemQuartz; public static Item gemAmethyst; public static Item gemChalcedony; public static Item gemJasper; public static Item itemAcid; public static Item containerEmpty; public static Item itemMagnet; public static Item mixFerro; public static Item ingotFerro; public static Item itemOilbottle; public static Item itemOilbottleFull; public static Item ingotAluminium; public static Item itemResinpipe; public static Item itemResinp = itemResinpipe; public static Item itemResinbottle; public static Item itemPlastictemplate; public static Item itemPlastictemplateFilled; public static Item itemPlastictemplateBaked; public static Item itemPlastic; public static Item ingotSilver; public static Item jackhammer; public static Item swordTitanium; public static Item spadeTitanium; public static Item pickaxeTitanium; public static Item axeTitanium; public static Item hoeTitanium; public static Item swordCopper; public static Item spadeCopper; public static Item pickaxeCopper; public static Item axeCopper; public static Item hoeCopper; public static Item swordBronze; public static Item spadeBronze; public static Item pickaxeBronze; public static Item axeBronze; public static Item hoeBronze; public static Item swordPlatinum; public static Item spadePlatinum; public static Item pickaxePlatinum; public static Item axePlatinum; public static Item hoePlatinum; public static Item swordSteel; public static Item spadeSteel; public static Item pickaxeSteel; public static Item axeSteel; public static Item hoeSteel; public static Item swordEmerald; public static Item spadeEmerald; public static Item pickaxeEmerald; public static Item axeEmerald; public static Item hoeEmerald; public static Item swordRuby; public static Item spadeRuby; public static Item pickaxeRuby; public static Item axeRuby; public static Item hoeRuby; public static Item swordSapphire; public static Item spadeSapphire; public static Item pickaxeSapphire; public static Item axeSapphire; public static Item hoeSapphire; public static Item swordIridium; public static Item spadeIridium; public static Item pickaxeIridium; public static Item axeIridium; public static Item hoeIridium; public static Item swordAluminium; public static Item spadeAluminium; public static Item pickaxeAluminium; public static Item axeAluminium; public static Item hoeAluminium; public static Item pbucketEmpty; public static Item pbucketWater; public static Item swordSilver; public static Item helmetTitanium, legsTitanium, torsoTitanium, bootsTitanium; public static Item helmetBronze, legsBronze, torsoBronze, bootsBronze; public static Item helmetSteel, legsSteel, torsoSteel, bootsSteel; public static Item helmetRuby, legsRuby, torsoRuby, bootsRuby; public static Item helmetEmerald, legsEmerald, torsoEmerald, bootsEmerald; public static Item helmetSapphire, legsSapphire, torsoSapphire, bootsSapphire; public static Item helmetAluminium, legsAluminium, torsoAluminium, bootsAluminium; public MOreWorldGen worldGen = new MOreWorldGen(); public MOreFuelHandler fuelHandler = new MOreFuelHandler(); static EnumArmorMaterial armorTITANIUM = EnumHelper.addArmorMaterial("TITANIUM", 29, new int[] {3, 7, 5, 2}, 9); static EnumArmorMaterial armorBRONZE = EnumHelper.addArmorMaterial("BRONZE", 13, new int[] {2, 5, 3, 1}, 10); static EnumArmorMaterial armorSTEEL = EnumHelper.addArmorMaterial("STEEL", 23, new int[] {2, 7, 5, 1}, 9); static EnumArmorMaterial armorRUBY = EnumHelper.addArmorMaterial("RUBY", 30, new int[] {3, 7, 6, 3}, 10); static EnumArmorMaterial armorEM = EnumHelper.addArmorMaterial("EM", 30, new int[] {3, 7, 6, 3}, 10); static EnumArmorMaterial armorSAPPHIRE = EnumHelper.addArmorMaterial("SAPPHIRE", 30, new int[] {3, 7, 6, 3}, 10); static EnumArmorMaterial armorALUMINIUM = EnumHelper.addArmorMaterial("ALUMINIUM", 14, new int[] {2, 5, 3, 2}, 10); @PreInit public void preInit(FMLPreInitializationEvent event) { } @Init public void init(FMLInitializationEvent event) { MinecraftForgeClient.preloadTexture("/mOre/terrain.png"); MinecraftForgeClient.preloadTexture("/mOre/gui/items.png"); //ITEMS ingotTitanium = (new MOreItem(930)).setIconIndex(0).setItemName("ingotTitanium").setCreativeTab(CreativeTabs.tabMaterials); ingotCopper = (new MOreItem(931)).setIconIndex(1).setItemName("ingotCopper").setCreativeTab(CreativeTabs.tabMaterials); ingotTin = (new MOreItem(932)).setIconIndex(2).setItemName("ingotTin").setCreativeTab(CreativeTabs.tabMaterials); ingotNickel = (new MOreItem(933)).setIconIndex(3).setItemName("ingotNickel").setCreativeTab(CreativeTabs.tabMaterials); ingotCobalt = (new MOreItem(934)).setIconIndex(4).setItemName("ingotCobalt").setCreativeTab(CreativeTabs.tabMaterials); ingotPlatinum = (new MOreItem(935)).setIconIndex(5).setItemName("ingotPlatinum").setCreativeTab(CreativeTabs.tabMaterials); ingotLead = (new MOreItem(936)).setIconIndex(6).setItemName("ingotLead").setCreativeTab(CreativeTabs.tabMaterials); ingotSteel = (new MOreItem(937)).setIconIndex(7).setItemName("ingotSteel").setCreativeTab(CreativeTabs.tabMaterials); ingotBronze = (new MOreItem(938)).setIconIndex(.setItemName("ingotBronze").setCreativeTab(CreativeTabs.tabMaterials); gemRuby = (new MOreItem(939)).setIconIndex(9).setItemName("gemRuby").setCreativeTab(CreativeTabs.tabMaterials); gemSapphire = (new MOreItem(940)).setIconIndex(10).setItemName("gemSapphire").setCreativeTab(CreativeTabs.tabMaterials); ingotIridium = (new MOreItem(942)).setIconIndex(11).setItemName("ingotIridium").setCreativeTab(CreativeTabs.tabMaterials); containerUranium = (new MOreItem(952)).setIconIndex(12).setItemName("containerUranium").setCreativeTab(CreativeTabs.tabMaterials).setContainerItem(containerEmpty); dustSulphur = (new MOreItem(944)).setIconIndex(13).setItemName("dustSulphur").setCreativeTab(CreativeTabs.tabMaterials); itemBCoal = (new MOreItem(945)).setIconIndex(14).setItemName("itemBCoal").setCreativeTab(CreativeTabs.tabMaterials); mixBronze = (new MOreItem(946)).setIconIndex(15).setItemName("mixBronze").setCreativeTab(CreativeTabs.tabMaterials); gemQuartz = (new MOreItem(947)).setIconIndex(16).setItemName("gemQuartz").setCreativeTab(CreativeTabs.tabMaterials); gemAmethyst = (new MOreItem(948)).setIconIndex(17).setItemName("gemAmethyst").setCreativeTab(CreativeTabs.tabMaterials); gemChalcedony = (new MOreItem(949)).setIconIndex(18).setItemName("gemChalcedony").setCreativeTab(CreativeTabs.tabMaterials); gemJasper = (new MOreItem(950)).setIconIndex(19).setItemName("gemJasper").setCreativeTab(CreativeTabs.tabMaterials); itemAcid = (new MOreItem(951)).setIconIndex(20).setItemName("itemAcid").setCreativeTab(CreativeTabs.tabMaterials); containerEmpty = (new MOreItem(943)).setIconIndex(21).setItemName("containerEmpty").setCreativeTab(CreativeTabs.tabMaterials); itemMagnet = (new MOreItem(953)).setIconIndex(22).setItemName("itemMagnet").setCreativeTab(CreativeTabs.tabMaterials); mixFerro = (new MOreItem(954)).setIconIndex(23).setItemName("mixFerro").setCreativeTab(CreativeTabs.tabMaterials); ingotFerro = (new MOreItem(955)).setIconIndex(24).setItemName("ingotFerro").setCreativeTab(CreativeTabs.tabMaterials); itemOilbottle = (new MOreItemContainerOil(956, 0)).setIconIndex(25).setItemName("itemOilbottle").setCreativeTab(CreativeTabs.tabMaterials); itemOilbottleFull = (new MOreItem(957)).setIconIndex(26).setItemName("itemOilbottleFull").setCreativeTab(CreativeTabs.tabMaterials).setContainerItem(itemOilbottle); ingotAluminium = (new MOreItem(958)).setIconIndex(27).setItemName("ingotAluminium").setCreativeTab(CreativeTabs.tabMaterials); itemResinpipe = (new MOreItemDamage(959)).setIconIndex(28).setItemName("itemResinpipe").setCreativeTab(CreativeTabs.tabMaterials).setMaxDamage(1000).setMaxStackSize(1); itemResinbottle = (new MOreItem(960)).setIconIndex(29).setItemName("itemResinbottle").setCreativeTab(CreativeTabs.tabMaterials).setContainerItem(Item.glassBottle); itemPlastictemplate = (new MOreItem(961)).setIconIndex(30).setItemName("itemPlastictemplate").setCreativeTab(CreativeTabs.tabMaterials); itemPlastictemplateFilled = (new MOreItem(962)).setIconIndex(31).setItemName("itemPlastictemplateFilled").setCreativeTab(CreativeTabs.tabMaterials); itemPlastictemplateBaked = (new MOreItem(963)).setIconIndex(32).setItemName("itemPlastictemplateBaked").setCreativeTab(CreativeTabs.tabMaterials).setContainerItem(itemPlastictemplate); itemPlastic = (new MOreItem(964)).setIconIndex(33).setItemName("itemPlastic").setCreativeTab(CreativeTabs.tabMaterials); ingotSilver = (new MOreItem(965)).setIconIndex(34).setItemName("ingotSilver").setCreativeTab(CreativeTabs.tabMaterials); swordTitanium = new MOreToolSword(967, MOreEnumToolMaterial.TITANIUM).setIconIndex(36).setItemName("swordTitanium").setCreativeTab(CreativeTabs.tabCombat); spadeTitanium = new MOreToolSpade(968, MOreEnumToolMaterial.TITANIUM).setIconIndex(37).setItemName("spadeTitanium").setCreativeTab(CreativeTabs.tabTools); pickaxeTitanium = new MOreToolPickaxe(969, MOreEnumToolMaterial.TITANIUM).setIconIndex(38).setItemName("pickaxeTitanium").setCreativeTab(CreativeTabs.tabTools); axeTitanium = new MOreToolAxe(970, MOreEnumToolMaterial.TITANIUM).setIconIndex(39).setItemName("axeTitanium").setCreativeTab(CreativeTabs.tabTools); hoeTitanium = new MOreToolHoe(971, MOreEnumToolMaterial.TITANIUM).setIconIndex(40).setItemName("hoeTitanium").setCreativeTab(CreativeTabs.tabTools); swordCopper = new MOreToolSword(972, MOreEnumToolMaterial.COPPER).setIconIndex(41).setItemName("swordCopper").setCreativeTab(CreativeTabs.tabCombat); spadeCopper = new MOreToolSpade(973, MOreEnumToolMaterial.COPPER).setIconIndex(42).setItemName("spadeCopper").setCreativeTab(CreativeTabs.tabTools); pickaxeCopper = new MOreToolPickaxe(974, MOreEnumToolMaterial.COPPER).setIconIndex(43).setItemName("pickaxeCopper").setCreativeTab(CreativeTabs.tabTools); axeCopper = new MOreToolAxe(975, MOreEnumToolMaterial.COPPER).setIconIndex(44).setItemName("axeCopper").setCreativeTab(CreativeTabs.tabTools); hoeCopper = new MOreToolHoe(976, MOreEnumToolMaterial.COPPER).setIconIndex(45).setItemName("hoeCopper").setCreativeTab(CreativeTabs.tabTools); swordBronze = new MOreToolSword(977, MOreEnumToolMaterial.BRONZE).setIconIndex(46).setItemName("swordBronze").setCreativeTab(CreativeTabs.tabCombat); spadeBronze = new MOreToolSpade(978, MOreEnumToolMaterial.BRONZE).setIconIndex(47).setItemName("spadeBronze").setCreativeTab(CreativeTabs.tabTools); pickaxeBronze = new MOreToolPickaxe(979, MOreEnumToolMaterial.BRONZE).setIconIndex(48).setItemName("pickaxeBronze").setCreativeTab(CreativeTabs.tabTools); axeBronze = new MOreToolAxe(980, MOreEnumToolMaterial.BRONZE).setIconIndex(49).setItemName("axeBronze").setCreativeTab(CreativeTabs.tabTools); hoeBronze = new MOreToolHoe(981, MOreEnumToolMaterial.BRONZE).setIconIndex(50).setItemName("hoeBronze").setCreativeTab(CreativeTabs.tabTools); swordPlatinum = new MOreToolSword(982, MOreEnumToolMaterial.PLATINUM).setIconIndex(51).setItemName("swordPlatinum").setCreativeTab(CreativeTabs.tabCombat); spadePlatinum = new MOreToolSpade(983, MOreEnumToolMaterial.PLATINUM).setIconIndex(52).setItemName("spadePlatinum").setCreativeTab(CreativeTabs.tabTools); pickaxePlatinum = new MOreToolPickaxe(984, MOreEnumToolMaterial.PLATINUM).setIconIndex(53).setItemName("pickaxePlatinum").setCreativeTab(CreativeTabs.tabTools); axePlatinum = new MOreToolAxe(985, MOreEnumToolMaterial.PLATINUM).setIconIndex(54).setItemName("axePlatinum").setCreativeTab(CreativeTabs.tabTools); hoePlatinum = new MOreToolHoe(986, MOreEnumToolMaterial.PLATINUM).setIconIndex(55).setItemName("hoePlatinum").setCreativeTab(CreativeTabs.tabTools); swordSteel = new MOreToolSword(987, MOreEnumToolMaterial.STEEL).setIconIndex(56).setItemName("swordSteel").setCreativeTab(CreativeTabs.tabCombat); spadeSteel = new MOreToolSpade(988, MOreEnumToolMaterial.STEEL).setIconIndex(57).setItemName("spadeSteel").setCreativeTab(CreativeTabs.tabTools); pickaxeSteel = new MOreToolPickaxe(989, MOreEnumToolMaterial.STEEL).setIconIndex(58).setItemName("pickaxeSteel").setCreativeTab(CreativeTabs.tabTools); axeSteel = new MOreToolAxe(990, MOreEnumToolMaterial.STEEL).setIconIndex(59).setItemName("axeSteel").setCreativeTab(CreativeTabs.tabTools); hoeSteel = new MOreToolHoe(991, MOreEnumToolMaterial.STEEL).setIconIndex(60).setItemName("hoeSteel").setCreativeTab(CreativeTabs.tabTools); swordEmerald = new MOreToolSword(992, MOreEnumToolMaterial.EM).setIconIndex(61).setItemName("swordEmerald").setCreativeTab(CreativeTabs.tabCombat); spadeEmerald = new MOreToolSpade(993, MOreEnumToolMaterial.EM).setIconIndex(62).setItemName("spadeEmerald").setCreativeTab(CreativeTabs.tabTools); pickaxeEmerald = new MOreToolPickaxe(994, MOreEnumToolMaterial.EM).setIconIndex(63).setItemName("pickaxeEmerald").setCreativeTab(CreativeTabs.tabTools); axeEmerald = new MOreToolAxe(995, MOreEnumToolMaterial.EM).setIconIndex(64).setItemName("axeEmerald").setCreativeTab(CreativeTabs.tabTools); hoeEmerald = new MOreToolHoe(996, MOreEnumToolMaterial.EM).setIconIndex(65).setItemName("hoeEmerald").setCreativeTab(CreativeTabs.tabTools); swordRuby = new MOreToolSword(997, MOreEnumToolMaterial.RUBY).setIconIndex(66).setItemName("swordRuby").setCreativeTab(CreativeTabs.tabCombat); spadeRuby = new MOreToolSpade(998, MOreEnumToolMaterial.RUBY).setIconIndex(67).setItemName("spadeRuby").setCreativeTab(CreativeTabs.tabTools); pickaxeRuby = new MOreToolPickaxe(999, MOreEnumToolMaterial.RUBY).setIconIndex(68).setItemName("pickaxeRuby").setCreativeTab(CreativeTabs.tabTools); axeRuby = new MOreToolAxe(1000, MOreEnumToolMaterial.RUBY).setIconIndex(69).setItemName("axeRuby").setCreativeTab(CreativeTabs.tabTools); hoeRuby = new MOreToolHoe(1001, MOreEnumToolMaterial.RUBY).setIconIndex(70).setItemName("hoeRuby").setCreativeTab(CreativeTabs.tabTools); swordSapphire = new MOreToolSword(1002, MOreEnumToolMaterial.SAPPHIRE).setIconIndex(71).setItemName("swordSapphire").setCreativeTab(CreativeTabs.tabCombat); spadeSapphire = new MOreToolSpade(1003, MOreEnumToolMaterial.SAPPHIRE).setIconIndex(72).setItemName("spadeSapphire").setCreativeTab(CreativeTabs.tabTools); pickaxeSapphire = new MOreToolPickaxe(1004, MOreEnumToolMaterial.SAPPHIRE).setIconIndex(73).setItemName("pickaxeSapphire").setCreativeTab(CreativeTabs.tabTools); axeSapphire = new MOreToolAxe(1005, MOreEnumToolMaterial.SAPPHIRE).setIconIndex(74).setItemName("axeSapphire").setCreativeTab(CreativeTabs.tabTools); hoeSapphire = new MOreToolHoe(1006, MOreEnumToolMaterial.SAPPHIRE).setIconIndex(75).setItemName("hoeSapphire").setCreativeTab(CreativeTabs.tabTools); swordIridium = new MOreToolSword(1007, MOreEnumToolMaterial.IRIDIUM).setIconIndex(76).setItemName("swordIridium").setCreativeTab(CreativeTabs.tabCombat); spadeIridium = new MOreToolSpade(1008, MOreEnumToolMaterial.IRIDIUM).setIconIndex(77).setItemName("spadeIridium").setCreativeTab(CreativeTabs.tabTools); pickaxeIridium = new MOreToolPickaxe(1009, MOreEnumToolMaterial.IRIDIUM).setIconIndex(78).setItemName("pickaxeIridium").setCreativeTab(CreativeTabs.tabTools); axeIridium = new MOreToolAxe(1010, MOreEnumToolMaterial.IRIDIUM).setIconIndex(79).setItemName("axeIridium").setCreativeTab(CreativeTabs.tabTools); hoeIridium = new MOreToolHoe(1011, MOreEnumToolMaterial.IRIDIUM).setIconIndex(80).setItemName("hoeIridium").setCreativeTab(CreativeTabs.tabTools); swordAluminium = new MOreToolSword(1012, MOreEnumToolMaterial.ALUMINIUM).setIconIndex(81).setItemName("swordAluminium").setCreativeTab(CreativeTabs.tabCombat); spadeAluminium = new MOreToolSpade(1013, MOreEnumToolMaterial.ALUMINIUM).setIconIndex(82).setItemName("spadeAluminium").setCreativeTab(CreativeTabs.tabTools); pickaxeAluminium = new MOreToolPickaxe(1014, MOreEnumToolMaterial.ALUMINIUM).setIconIndex(83).setItemName("pickaxeAluminium").setCreativeTab(CreativeTabs.tabTools); axeAluminium = new MOreToolAxe(1015, MOreEnumToolMaterial.ALUMINIUM).setIconIndex(84).setItemName("axeAluminium").setCreativeTab(CreativeTabs.tabTools); hoeAluminium = new MOreToolHoe(1016, MOreEnumToolMaterial.ALUMINIUM).setIconIndex(85).setItemName("hoeAluminium").setCreativeTab(CreativeTabs.tabTools); pbucketEmpty = new MOreItemBucket(1017, 0).setIconIndex(86).setItemName("pbucketEmpty").setCreativeTab(CreativeTabs.tabMisc); pbucketWater = new MOreItemBucket(1018, Block.waterMoving.blockID).setIconIndex(87).setItemName("pbucketWater").setCreativeTab(CreativeTabs.tabMisc); helmetTitanium = new MOreArmor(1019, armorTITANIUM, 20, 0, "titanium").setIconIndex(88).setItemName("helmetTitanium").setCreativeTab(CreativeTabs.tabCombat); torsoTitanium = new MOreArmor(1020, armorTITANIUM, 20, 1, "titanium").setIconIndex(89).setItemName("torsoTitanium").setCreativeTab(CreativeTabs.tabCombat); legsTitanium = new MOreArmor(1021, armorTITANIUM, 20, 2, "titanium").setIconIndex(90).setItemName("legsTitanium").setCreativeTab(CreativeTabs.tabCombat); bootsTitanium = new MOreArmor(1022, armorTITANIUM, 20, 3, "titanium").setIconIndex(91).setItemName("bootsTitanium").setCreativeTab(CreativeTabs.tabCombat); helmetBronze = new MOreArmor(1023, armorBRONZE, 21, 0, "bronze").setIconIndex(92).setItemName("helmetBronze").setCreativeTab(CreativeTabs.tabCombat); torsoBronze = new MOreArmor(1024, armorBRONZE, 21, 1, "bronze").setIconIndex(93).setItemName("torsoBronze").setCreativeTab(CreativeTabs.tabCombat); legsBronze = new MOreArmor(1025, armorBRONZE, 21, 2, "bronze").setIconIndex(94).setItemName("legsBronze").setCreativeTab(CreativeTabs.tabCombat); bootsBronze = new MOreArmor(1026, armorBRONZE, 21, 3, "bronze").setIconIndex(95).setItemName("bootsBronze").setCreativeTab(CreativeTabs.tabCombat); helmetSteel = new MOreArmor(1027, armorSTEEL, 22, 0, "steel").setIconIndex(96).setItemName("helmetSteel").setCreativeTab(CreativeTabs.tabCombat); torsoSteel = new MOreArmor(1028, armorSTEEL, 22, 1, "steel").setIconIndex(97).setItemName("torsoSteel").setCreativeTab(CreativeTabs.tabCombat); legsSteel = new MOreArmor(1029, armorSTEEL, 22, 2, "steel").setIconIndex(98).setItemName("legsSteel").setCreativeTab(CreativeTabs.tabCombat); bootsSteel = new MOreArmor(1030, armorSTEEL, 22, 3, "steel").setIconIndex(99).setItemName("bootsSteel").setCreativeTab(CreativeTabs.tabCombat); helmetRuby = new MOreArmor(1031, armorRUBY, 23, 0, "ruby").setIconIndex(100).setItemName("helmetRuby").setCreativeTab(CreativeTabs.tabCombat); torsoRuby = new MOreArmor(1032, armorRUBY, 23, 1, "ruby").setIconIndex(101).setItemName("torsoRuby").setCreativeTab(CreativeTabs.tabCombat); legsRuby = new MOreArmor(1033, armorRUBY, 23, 2, "ruby").setIconIndex(102).setItemName("legsRuby").setCreativeTab(CreativeTabs.tabCombat); bootsRuby = new MOreArmor(1034, armorRUBY, 23, 3, "ruby").setIconIndex(103).setItemName("bootsRuby").setCreativeTab(CreativeTabs.tabCombat); helmetEmerald = new MOreArmor(1035, armorEM, 24, 0, "emerald").setIconIndex(104).setItemName("helmetEmerald").setCreativeTab(CreativeTabs.tabCombat); torsoEmerald = new MOreArmor(1036, armorEM, 24, 1, "emerald").setIconIndex(105).setItemName("torsoEmerald").setCreativeTab(CreativeTabs.tabCombat); legsEmerald = new MOreArmor(1037, armorEM, 24, 2, "emerald").setIconIndex(106).setItemName("legsEmerald").setCreativeTab(CreativeTabs.tabCombat); bootsEmerald = new MOreArmor(1038, armorEM, 24, 3, "emerald").setIconIndex(107).setItemName("bootsEmerald").setCreativeTab(CreativeTabs.tabCombat); helmetSapphire = new MOreArmor(1039, armorSAPPHIRE, 25, 0, "sapphire").setIconIndex(108).setItemName("helmetSapphire").setCreativeTab(CreativeTabs.tabCombat); torsoSapphire = new MOreArmor(1040, armorSAPPHIRE, 25, 1, "sapphire").setIconIndex(109).setItemName("torsoSapphire").setCreativeTab(CreativeTabs.tabCombat); legsSapphire = new MOreArmor(1041, armorSAPPHIRE, 25, 2, "sapphire").setIconIndex(110).setItemName("legsSapphire").setCreativeTab(CreativeTabs.tabCombat); bootsSapphire = new MOreArmor(1042, armorSAPPHIRE, 25, 3, "sapphire").setIconIndex(111).setItemName("bootsSapphire").setCreativeTab(CreativeTabs.tabCombat); helmetAluminium = new MOreArmor(1043, armorALUMINIUM, 26, 0, "aluminium").setIconIndex(112).setItemName("helmetAluminium").setCreativeTab(CreativeTabs.tabCombat); torsoAluminium = new MOreArmor(1044, armorALUMINIUM, 26, 1, "aluminium").setIconIndex(113).setItemName("torsoAluminium").setCreativeTab(CreativeTabs.tabCombat); legsAluminium = new MOreArmor(1045, armorALUMINIUM, 26, 2, "aluminium").setIconIndex(114).setItemName("legsAluminium").setCreativeTab(CreativeTabs.tabCombat); bootsAluminium = new MOreArmor(1046, armorALUMINIUM, 26, 3, "aluminium").setIconIndex(115).setItemName("bootsAluminium").setCreativeTab(CreativeTabs.tabCombat); //BLOCKS oreTitanium = new MOreBlockOre(911, 0).setHardness(4F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreTitanium").setCreativeTab(CreativeTabs.tabBlock); oreCopper = new MOreBlockOre(912, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreCopper").setCreativeTab(CreativeTabs.tabBlock); oreTin = new MOreBlockOre(913, 2).setHardness(2F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreTin").setCreativeTab(CreativeTabs.tabBlock); orePlatinum = new MOreBlockOre(914, 3).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("orePlatinum").setCreativeTab(CreativeTabs.tabBlock); oreCobalt = new MOreBlockOre(915, 4).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreCobalt").setCreativeTab(CreativeTabs.tabBlock); oreNickel = new MOreBlockOre(916, 5).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreNickel").setCreativeTab(CreativeTabs.tabBlock); oreUranium = new MOreBlockOre(917, 6).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreUranium").setCreativeTab(CreativeTabs.tabBlock); oreSulphur = new MoreBlockSpecialOre(918, 7, dustSulphur, 3).setHardness(2F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreSulphur").setCreativeTab(CreativeTabs.tabBlock); oreRuby = new MoreBlockSpecialOre(919, 8, gemRuby, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreRuby").setCreativeTab(CreativeTabs.tabBlock); oreSapphire = new MoreBlockSpecialOre(920, 9, gemSapphire, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreSapphire").setCreativeTab(CreativeTabs.tabBlock); oreLead = new MOreBlockOre(921, 10).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLead").setCreativeTab(CreativeTabs.tabBlock); oreBCoal = new MoreBlockSpecialOre(922, 11, itemBCoal, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreBCoal").setCreativeTab(CreativeTabs.tabBlock); oreOil = new MOreSpecialOre1(923, 12).setHardness(1F).setResistance(4F).setStepSound(Block.soundStoneFootstep).setBlockName("oreOil").setCreativeTab(CreativeTabs.tabBlock); oreGeode = new MOreBlockGeode(924, 13).setHardness(2F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreGeode").setCreativeTab(CreativeTabs.tabBlock); oreIridium = new MOreBlockOre(925, 14).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreIridium").setCreativeTab(CreativeTabs.tabBlock); oreBauxite = new MOreBlockOre(926, 15).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreBauxite").setCreativeTab(CreativeTabs.tabBlock); blockPlexiglass = new MOreBlockTransparent(927, 16).setHardness(2F).setResistance(3F).setStepSound(Block.soundGlassFootstep).setBlockName("blockPlexiglass").setCreativeTab(CreativeTabs.tabBlock); oreSilver = new MOreBlockOre(928, 17).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreSilver").setCreativeTab(CreativeTabs.tabBlock); oreLimestone = new MOreBlockOre(929, 18).setHardness(1F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLimestone").setCreativeTab(CreativeTabs.tabBlock); RenderingRegistry.addNewArmourRendererPrefix("titanium"); LanguageRegistry.addName(ingotTitanium, "Titanium Ingot"); LanguageRegistry.addName(ingotCopper, "Copper Ingot"); LanguageRegistry.addName(ingotTin, "Tin Ingot"); LanguageRegistry.addName(ingotNickel, "Nickel Ingot"); LanguageRegistry.addName(ingotCobalt, "Cobalt Ingot"); LanguageRegistry.addName(ingotPlatinum, "Platinum Ingot"); LanguageRegistry.addName(ingotLead, "Lead Ingot"); LanguageRegistry.addName(ingotSteel, "Steel Ingot"); LanguageRegistry.addName(ingotBronze, "Bronze Ingot"); LanguageRegistry.addName(ingotIridium, "Idirium Ingot"); LanguageRegistry.addName(gemRuby, "Ruby"); LanguageRegistry.addName(gemSapphire, "Sapphire"); LanguageRegistry.addName(gemQuartz, "Quartz Shard"); LanguageRegistry.addName(gemAmethyst, "Amethyst Shard"); LanguageRegistry.addName(gemChalcedony, "Chalcedony Shard"); LanguageRegistry.addName(gemJasper, "Jasper Shard"); LanguageRegistry.addName(itemOilbottle, "Oil Bottle"); LanguageRegistry.addName(itemOilbottleFull, "Filled Oil Bottle"); LanguageRegistry.addName(containerUranium, "Uranium Container"); LanguageRegistry.addName(itemBCoal, "Brown Coal"); LanguageRegistry.addName(itemAcid, "Sulphuric Acid"); LanguageRegistry.addName(dustSulphur, "Sulphur Dust"); LanguageRegistry.addName(mixBronze, "Bronze Alloy Mix"); LanguageRegistry.addName(containerEmpty, "Empty Container"); LanguageRegistry.addName(itemMagnet, "Magnet"); LanguageRegistry.addName(mixFerro, "Ferromagnecic Alloy Mix"); LanguageRegistry.addName(ingotFerro, "Ferromagnecic Alloy Ingot"); LanguageRegistry.addName(ingotAluminium, "Aluminium Ingot"); LanguageRegistry.addName(itemResinpipe, "Resin Extraction Pipe"); LanguageRegistry.addName(itemResinbottle, "Bottle of Resin"); LanguageRegistry.addName(itemPlastictemplate, "Plastic Template"); LanguageRegistry.addName(itemPlastictemplateFilled, "Filled Plastic Template"); LanguageRegistry.addName(itemPlastictemplateBaked, "Baked Plastic Template"); LanguageRegistry.addName(itemPlastic, "Plastic"); LanguageRegistry.addName(ingotSilver, "Silver Ingot"); LanguageRegistry.addName(swordTitanium, "Titanium Sword"); LanguageRegistry.addName(spadeTitanium, "Titanium Shovel"); LanguageRegistry.addName(pickaxeTitanium, "Titanium Pickaxe"); LanguageRegistry.addName(axeTitanium, "Titanium Axe"); LanguageRegistry.addName(hoeTitanium, "Titanium Hoe"); LanguageRegistry.addName(swordCopper, "Copper Sword"); LanguageRegistry.addName(spadeCopper, "Copper Shovel"); LanguageRegistry.addName(pickaxeCopper, "Copper Pickaxe"); LanguageRegistry.addName(axeCopper, "Copper Axe"); LanguageRegistry.addName(hoeCopper, "Copper Hoe"); LanguageRegistry.addName(swordBronze, "Bronze Sword"); LanguageRegistry.addName(spadeBronze, "Bronze Shovel"); LanguageRegistry.addName(pickaxeBronze, "Bronze Pickaxe"); LanguageRegistry.addName(axeBronze, "Bronze Axe"); LanguageRegistry.addName(hoeBronze, "Bronze Hoe"); LanguageRegistry.addName(swordPlatinum, "Platinum Sword"); LanguageRegistry.addName(spadePlatinum, "Platinum Shovel"); LanguageRegistry.addName(pickaxePlatinum, "Platinum Pickaxe"); LanguageRegistry.addName(axePlatinum, "Platinum Axe"); LanguageRegistry.addName(hoePlatinum, "Platinum Hoe"); LanguageRegistry.addName(swordSteel, "Steel Sword"); LanguageRegistry.addName(spadeSteel, "Steel Shovel"); LanguageRegistry.addName(pickaxeSteel, "Steel Pickaxe"); LanguageRegistry.addName(axeSteel, "Steel Axe"); LanguageRegistry.addName(hoeSteel, "Steel Hoe"); LanguageRegistry.addName(swordEmerald, "Emerald Sword"); LanguageRegistry.addName(spadeEmerald, "Emerald Shovel"); LanguageRegistry.addName(pickaxeEmerald, "Emerald Pickaxe"); LanguageRegistry.addName(axeEmerald, "Emerald Axe"); LanguageRegistry.addName(hoeEmerald, "Emerald Hoe"); LanguageRegistry.addName(swordRuby, "Ruby Sword"); LanguageRegistry.addName(spadeRuby, "Ruby Shovel"); LanguageRegistry.addName(pickaxeRuby, "Ruby Pickaxe"); LanguageRegistry.addName(axeRuby, "Ruby Axe"); LanguageRegistry.addName(hoeRuby, "Ruby Hoe"); LanguageRegistry.addName(swordSapphire, "Sapphire Sword"); LanguageRegistry.addName(spadeSapphire, "Sapphire Shovel"); LanguageRegistry.addName(pickaxeSapphire, "Sapphire Pickaxe"); LanguageRegistry.addName(axeSapphire, "Sapphire Axe"); LanguageRegistry.addName(hoeSapphire, "Sapphire Hoe"); LanguageRegistry.addName(swordIridium, "Iridium Sword"); LanguageRegistry.addName(spadeIridium, "Iridium Shovel"); LanguageRegistry.addName(pickaxeIridium, "Iridium Pickaxe"); LanguageRegistry.addName(axeIridium, "Iridium Axe"); LanguageRegistry.addName(hoeIridium, "Iridium Hoe"); LanguageRegistry.addName(swordAluminium, "Aluminium Sword"); LanguageRegistry.addName(spadeAluminium, "Aluminium Shovel"); LanguageRegistry.addName(pickaxeAluminium, "Aluminium Pickaxe"); LanguageRegistry.addName(axeAluminium, "Aluminium Axe"); LanguageRegistry.addName(hoeAluminium, "Aluminium Hoe"); LanguageRegistry.addName(pbucketEmpty, "Empty Plastic Bucket"); LanguageRegistry.addName(pbucketWater, "Plastic Bucket of Water"); LanguageRegistry.addName(helmetTitanium, "Titanium Helmet"); LanguageRegistry.addName(torsoTitanium, "Titanium Chestplate"); LanguageRegistry.addName(legsTitanium, "Titanium Leggings"); LanguageRegistry.addName(bootsTitanium, "Titanium Boots"); LanguageRegistry.addName(helmetBronze, "Bronze Helmet"); LanguageRegistry.addName(torsoBronze, "Bronze Chestplate"); LanguageRegistry.addName(legsBronze, "Bronze Leggings"); LanguageRegistry.addName(bootsBronze, "Bronze Boots"); LanguageRegistry.addName(helmetSteel, "Steel Helmet"); LanguageRegistry.addName(torsoSteel, "Steel Chestplate"); LanguageRegistry.addName(legsSteel, "Steel Leggings"); LanguageRegistry.addName(bootsSteel, "Steel Boots"); LanguageRegistry.addName(helmetRuby, "Ruby Helmet"); LanguageRegistry.addName(torsoRuby, "Ruby Chestplate"); LanguageRegistry.addName(legsRuby, "Ruby Leggings"); LanguageRegistry.addName(bootsRuby, "Ruby Boots"); LanguageRegistry.addName(helmetEmerald, "Emerald Helmet"); LanguageRegistry.addName(torsoEmerald, "Emerald Chestplate"); LanguageRegistry.addName(legsEmerald, "Emerald Leggings"); LanguageRegistry.addName(bootsEmerald, "Emerald Boots"); LanguageRegistry.addName(helmetSapphire, "Sapphire Helmet"); LanguageRegistry.addName(torsoSapphire, "Sapphire Chestplate"); LanguageRegistry.addName(legsSapphire, "Sapphire Leggings"); LanguageRegistry.addName(bootsSapphire, "Sapphire Boots"); LanguageRegistry.addName(helmetAluminium, "Aluminium Helmet"); LanguageRegistry.addName(torsoAluminium, "Aluminium Chestplate"); LanguageRegistry.addName(legsAluminium, "Aluminium Leggings"); LanguageRegistry.addName(bootsAluminium, "Aluminium Boots"); // Recipes GameRegistry.addRecipe(new ItemStack(mixFerro, 1), new Object[] {" A ", " B ", " C ", 'A', ingotCobalt, 'B', ingotNickel, 'X', Item.ingotIron}); GameRegistry.addRecipe(new ItemStack(mixBronze, 1), new Object[] {"A", "X", "A", 'X', ingotTin, 'A', ingotCopper}); GameRegistry.addRecipe(new ItemStack(itemOilbottle, 5), new Object[] {"BAB", "B B", "BBB", 'A', Item.ingotIron, 'B', Block.thinGlass, }); GameRegistry.addShapelessRecipe(new ItemStack(itemAcid, 1), Item.potion, dustSulphur); GameRegistry.addShapelessRecipe(new ItemStack(Item.gunpowder, 15),dustSulphur,dustSulphur,dustSulphur,dustSulphur,dustSulphur,dustSulphur,dustSulphur,dustSulphur, Item.coal); GameRegistry.addRecipe(new ItemStack(containerEmpty, 1), new Object[] {"BAB", "AXA", "CAC", 'X', Block.thinGlass, 'A', ingotSteel, 'B', itemMagnet, 'C', ingotLead}); GameRegistry.addRecipe(new ItemStack(containerEmpty, 1), new Object[] {"CAC", "AXA", "BAB", 'X', Block.thinGlass, 'A', ingotSteel, 'B', itemMagnet, 'C', ingotLead}); GameRegistry.addShapelessRecipe(new ItemStack(containerUranium, 1), itemAcid, oreUranium, containerEmpty); GameRegistry.addRecipe(new ItemStack(itemMagnet, 1), new Object[] {" ", " X ", "X X", 'X', ingotFerro}); GameRegistry.addRecipe(new ItemStack(itemMagnet, 1), new Object[] {" X ", "X X", " ", 'X', ingotFerro}); GameRegistry.addRecipe(new ItemStack(itemResinpipe, 1), new Object[] {"XX ", " X ", " X ", 'X', ingotAluminium}); GameRegistry.addShapelessRecipe(new ItemStack(itemResinbottle, 1), new ItemStack(itemResinpipe, 1, -1), Block.wood, Item.glassBottle); GameRegistry.addShapelessRecipe(new ItemStack(itemPlastictemplate, 1), itemResinbottle, Block.sand); GameRegistry.addShapelessRecipe(new ItemStack(itemPlastictemplateFilled, 1), itemOilbottleFull, itemPlastictemplate); GameRegistry.addShapelessRecipe(new ItemStack(itemPlastic, 5), itemPlastictemplateBaked); GameRegistry.addRecipe(new ItemStack(blockPlexiglass, 1), new Object[] {" XX", " XX", " ", 'X', itemPlastic}); GameRegistry.addRecipe(new ItemStack(blockPlexiglass, 1), new Object[] {"XX ", "XX ", " ", 'X', itemPlastic}); GameRegistry.addRecipe(new ItemStack(blockPlexiglass, 1), new Object[] {" ", " XX", " XX", 'X', itemPlastic}); GameRegistry.addRecipe(new ItemStack(blockPlexiglass, 1), new Object[] {" ", "XX ", "XX ", 'X', itemPlastic}); GameRegistry.addRecipe(new ItemStack(swordTitanium, 1), new Object[] {" A ", " A ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeTitanium, 1), new Object[] {" A ", " B ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeTitanium, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeTitanium, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeTitanium, 1), new Object[] {" AA", " BA", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeTitanium, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeTitanium, 1), new Object[] {" AA", " B ", " B ", 'A', ingotTitanium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordCopper, 1), new Object[] {" A ", " A ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeCopper, 1), new Object[] {" A ", " B ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeCopper, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeCopper, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeCopper, 1), new Object[] {" AA", " BA", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeCopper, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeCopper, 1), new Object[] {" AA", " B ", " B ", 'A', ingotCopper, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordBronze, 1), new Object[] {" A ", " A ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeBronze, 1), new Object[] {" A ", " B ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeBronze, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeBronze, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeBronze, 1), new Object[] {" AA", " BA", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeBronze, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeBronze, 1), new Object[] {" AA", " B ", " B ", 'A', ingotBronze, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordPlatinum, 1), new Object[] {" A ", " A ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadePlatinum, 1), new Object[] {" A ", " B ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxePlatinum, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axePlatinum, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axePlatinum, 1), new Object[] {" AA", " BA", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoePlatinum, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoePlatinum, 1), new Object[] {" AA", " B ", " B ", 'A', ingotPlatinum, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordEmerald, 1), new Object[] {" A ", " A ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeEmerald, 1), new Object[] {" A ", " B ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeEmerald, 1), new Object[] {"AAA", " B ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeEmerald, 1), new Object[] {"AA ", "AB ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeEmerald, 1), new Object[] {" AA", " BA", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeEmerald, 1), new Object[] {"AA ", " B ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeEmerald, 1), new Object[] {" AA", " B ", " B ", 'A', Item.emerald, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordRuby, 1), new Object[] {" A ", " A ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeRuby, 1), new Object[] {" A ", " B ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeRuby, 1), new Object[] {"AAA", " B ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeRuby, 1), new Object[] {"AA ", "AB ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeRuby, 1), new Object[] {" AA", " BA", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeRuby, 1), new Object[] {"AA ", " B ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeRuby, 1), new Object[] {" AA", " B ", " B ", 'A', gemRuby, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordSapphire, 1), new Object[] {" A ", " A ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeSapphire, 1), new Object[] {" A ", " B ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeSapphire, 1), new Object[] {"AAA", " B ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeSapphire, 1), new Object[] {"AA ", "AB ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeSapphire, 1), new Object[] {" AA", " BA", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeSapphire, 1), new Object[] {"AA ", " B ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeSapphire, 1), new Object[] {" AA", " B ", " B ", 'A', gemSapphire, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordIridium, 1), new Object[] {" A ", " A ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeIridium, 1), new Object[] {" A ", " B ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeIridium, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeIridium, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeIridium, 1), new Object[] {" AA", " BA", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeIridium, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeIridium, 1), new Object[] {" AA", " B ", " B ", 'A', ingotIridium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(swordAluminium, 1), new Object[] {" A ", " A ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(spadeAluminium, 1), new Object[] {" A ", " B ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pickaxeAluminium, 1), new Object[] {"AAA", " B ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeAluminium, 1), new Object[] {"AA ", "AB ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(axeAluminium, 1), new Object[] {" AA", " BA", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeAluminium, 1), new Object[] {"AA ", " B ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(hoeAluminium, 1), new Object[] {" AA", " B ", " B ", 'A', ingotAluminium, 'B', Item.stick}); GameRegistry.addRecipe(new ItemStack(pbucketEmpty, 1), new Object[] { "A A", " A ", 'A', itemPlastic}); /* GameRegistry.addRecipe(new ItemStack(helmetTitanium, 1), new Object[] { "A A", "AAA", 'A', ingotTitanium}); GameRegistry.addRecipe(new ItemStack(torsoTitanium, 1), new Object[] { "A A", "AAA", "AAA", 'A', ingotTitanium}); GameRegistry.addRecipe(new ItemStack(legsTitanium, 1), new Object[] { "AAA", "A A", "A A", 'A', ingotTitanium}); GameRegistry.addRecipe(new ItemStack(bootsTitanium, 1), new Object[] { "A A", "A A", 'A', ingotTitanium}); GameRegistry.addRecipe(new ItemStack(helmetBronze, 1), new Object[] { "A A", "AAA", 'A', ingotBronze}); GameRegistry.addRecipe(new ItemStack(torsoBronze, 1), new Object[] { "A A", "AAA", "AAA", 'A', ingotBronze}); GameRegistry.addRecipe(new ItemStack(legsBronze, 1), new Object[] { "AAA", "A A", "A A", 'A', ingotBronze}); GameRegistry.addRecipe(new ItemStack(bootsBronze, 1), new Object[] { "A A", "A A", 'A', ingotBronze}); GameRegistry.addRecipe(new ItemStack(helmetSteel, 1), new Object[] { "A A", "AAA", 'A', ingotSteel}); GameRegistry.addRecipe(new ItemStack(torsoSteel, 1), new Object[] { "A A", "AAA", "AAA", 'A', ingotSteel}); GameRegistry.addRecipe(new ItemStack(legsSteel, 1), new Object[] { "AAA", "A A", "A A", 'A', ingotSteel}); GameRegistry.addRecipe(new ItemStack(bootsSteel, 1), new Object[] { "A A", "A A", 'A', ingotSteel}); GameRegistry.addRecipe(new ItemStack(helmetAluminium, 1), new Object[] { "A A", "AAA", 'A', ingotAluminium}); GameRegistry.addRecipe(new ItemStack(torsoAluminium, 1), new Object[] { "A A", "AAA", "AAA", 'A', ingotAluminium}); GameRegistry.addRecipe(new ItemStack(legsAluminium, 1), new Object[] { "AAA", "A A", "A A", 'A', ingotAluminium}); GameRegistry.addRecipe(new ItemStack(bootsAluminium, 1), new Object[] { "A A", "A A", 'A', ingotAluminium}); GameRegistry.addRecipe(new ItemStack(helmetRuby, 1), new Object[] { "A A", "AAA", 'A', gemRuby}); GameRegistry.addRecipe(new ItemStack(torsoRuby, 1), new Object[] { "A A", "AAA", "AAA", 'A', gemRuby}); GameRegistry.addRecipe(new ItemStack(legsRuby, 1), new Object[] { "AAA", "A A", "A A", 'A', gemRuby}); GameRegistry.addRecipe(new ItemStack(bootsRuby, 1), new Object[] { "A A", "A A", 'A', gemRuby}); GameRegistry.addRecipe(new ItemStack(helmetEmerald, 1), new Object[] { "A A", "AAA", 'A', Item.emerald}); GameRegistry.addRecipe(new ItemStack(torsoEmerald, 1), new Object[] { "A A", "AAA", "AAA", 'A', Item.emerald}); GameRegistry.addRecipe(new ItemStack(legsEmerald, 1), new Object[] { "AAA", "A A", "A A", 'A', Item.emerald}); GameRegistry.addRecipe(new ItemStack(bootsEmerald, 1), new Object[] { "A A", "A A", 'A', Item.emerald}); GameRegistry.addRecipe(new ItemStack(helmetSapphire, 1), new Object[] { "A A", "AAA", 'A', gemSapphire}); GameRegistry.addRecipe(new ItemStack(torsoSapphire, 1), new Object[] { "A A", "AAA", "AAA", 'A', gemSapphire}); GameRegistry.addRecipe(new ItemStack(legsSapphire, 1), new Object[] { "AAA", "A A", "A A", 'A', gemSapphire}); GameRegistry.addRecipe(new ItemStack(bootsSapphire, 1), new Object[] { "A A", "A A", 'A', gemSapphire}); */ // Smeltig //GameRegistry.addSmelting(.blockID, new ItemStack()); GameRegistry.addSmelting(oreTitanium.blockID, new ItemStack(ingotTitanium), 20F); GameRegistry.addSmelting(oreCopper.blockID, new ItemStack(ingotCopper), 20F); GameRegistry.addSmelting(oreTin.blockID, new ItemStack(ingotTin), 20F); GameRegistry.addSmelting(oreNickel.blockID, new ItemStack(ingotNickel), 20F); GameRegistry.addSmelting(oreCobalt.blockID, new ItemStack(ingotCobalt), 20F); GameRegistry.addSmelting(orePlatinum.blockID, new ItemStack(ingotPlatinum), 20F); GameRegistry.addSmelting(oreLead.blockID, new ItemStack(ingotLead), 20F); GameRegistry.addSmelting(oreBauxite.blockID, new ItemStack(ingotAluminium), 20F); GameRegistry.addSmelting(oreSilver.blockID, new ItemStack(ingotSilver), 20F); GameRegistry.addSmelting(Item.ingotIron.itemID, new ItemStack(ingotSteel), 20F); GameRegistry.addSmelting(mixBronze.itemID, new ItemStack(ingotBronze, 3), 20F); GameRegistry.addSmelting(mixFerro.itemID, new ItemStack(ingotFerro, 3), 20F); GameRegistry.addSmelting(oreBauxite.blockID, new ItemStack(ingotAluminium, 1), 20F); GameRegistry.addSmelting(itemOilbottleFull.itemID, new ItemStack(dustSulphur, 3), 20F); GameRegistry.addSmelting(itemPlastictemplateFilled.itemID, new ItemStack(itemPlastictemplateBaked), 20F); GameRegistry.addSmelting(pbucketEmpty.itemID, new ItemStack(itemPlastic, 3), 0F); //MC Forge Ore Dictionary Registration OreDictionary.registerOre("ingotTitanium", new ItemStack(ingotTitanium)); OreDictionary.registerOre("ingotCopper", new ItemStack(ingotCopper)); OreDictionary.registerOre("ingotTin", new ItemStack(ingotTin)); OreDictionary.registerOre("ingotNickel", new ItemStack(ingotNickel)); OreDictionary.registerOre("ingotCobalt", new ItemStack(ingotCobalt)); OreDictionary.registerOre("ingotPlatinum", new ItemStack(ingotPlatinum)); OreDictionary.registerOre("ingotLead", new ItemStack(ingotLead)); OreDictionary.registerOre("ingotSteel", new ItemStack(ingotSteel)); OreDictionary.registerOre("ingotIridium", new ItemStack(ingotIridium)); OreDictionary.registerOre("gemSapphire", new ItemStack(gemSapphire)); OreDictionary.registerOre("gemRuby", new ItemStack(gemRuby)); OreDictionary.registerOre("gemAmethyst", new ItemStack(gemAmethyst)); OreDictionary.registerOre("gemQuartz", new ItemStack(gemQuartz)); OreDictionary.registerOre("gemChalcedony", new ItemStack(gemChalcedony)); OreDictionary.registerOre("gemJasper", new ItemStack(gemJasper)); OreDictionary.registerOre("ingotAluminium", new ItemStack(ingotAluminium)); OreDictionary.registerOre("ingotSilver", new ItemStack(ingotSilver)); OreDictionary.registerOre("ingotSteel", new ItemStack(ingotSteel)); OreDictionary.registerOre("ingotRefinediron", new ItemStack(ingotSteel)); OreDictionary.registerOre("ingotIronRefined", new ItemStack(ingotSteel)); //Names and registration GameRegistry.registerBlock(oreTitanium); LanguageRegistry.addName(oreTitanium, "Titanium Ore"); GameRegistry.registerBlock(oreCopper); LanguageRegistry.addName(oreCopper, "Copper Ore"); GameRegistry.registerBlock(oreTin); LanguageRegistry.addName(oreTin, "Tin Ore"); GameRegistry.registerBlock(orePlatinum); LanguageRegistry.addName(orePlatinum, "Platinum Ore"); GameRegistry.registerBlock(oreCobalt); LanguageRegistry.addName(oreCobalt, "Cobalt Ore"); GameRegistry.registerBlock(oreNickel); LanguageRegistry.addName(oreNickel, "Nickel Ore"); GameRegistry.registerBlock(oreUranium); LanguageRegistry.addName(oreUranium, "Uranium Ore"); GameRegistry.registerBlock(oreSulphur); LanguageRegistry.addName(oreSulphur, "Sulphur Ore"); GameRegistry.registerBlock(oreRuby); LanguageRegistry.addName(oreRuby, "Ruby Ore"); GameRegistry.registerBlock(oreSapphire); LanguageRegistry.addName(oreSapphire, "Sapphire Ore"); GameRegistry.registerBlock(oreLead); LanguageRegistry.addName(oreLead, "Lead Ore"); GameRegistry.registerBlock(oreBCoal); LanguageRegistry.addName(oreBCoal, "Brown Coal Ore"); GameRegistry.registerBlock(oreOil); LanguageRegistry.addName(oreOil, "Oil Ore"); GameRegistry.registerBlock(oreGeode); LanguageRegistry.addName(oreGeode, "Geode"); GameRegistry.registerBlock(oreIridium); LanguageRegistry.addName(oreIridium, "Iridium Ore"); GameRegistry.registerBlock(oreBauxite); LanguageRegistry.addName(oreBauxite, "Bauxite"); GameRegistry.registerBlock(blockPlexiglass); LanguageRegistry.addName(blockPlexiglass, "Plexiglass"); LanguageRegistry.addName(oreSilver, "Silver Ore"); GameRegistry.registerBlock(oreSilver); LanguageRegistry.addName(oreLimestone, "Limestone"); GameRegistry.registerBlock(oreLimestone); // MC Forge ore dictionary regster OreDictionary.registerOre("oreCopper", new ItemStack(oreCopper)); OreDictionary.registerOre("oreTin", new ItemStack(oreTin)); OreDictionary.registerOre("oreNickel", new ItemStack(oreNickel)); OreDictionary.registerOre("oreCobalt", new ItemStack(oreCobalt)); OreDictionary.registerOre("orePlatinum", new ItemStack(orePlatinum)); OreDictionary.registerOre("oreLead", new ItemStack(oreLead)); OreDictionary.registerOre("oreUranium", new ItemStack(oreUranium)); OreDictionary.registerOre("oreOil", new ItemStack(oreOil)); OreDictionary.registerOre("oreBCoal", new ItemStack(oreBCoal)); OreDictionary.registerOre("oreIridium", new ItemStack(oreIridium)); OreDictionary.registerOre("oreSapphire", new ItemStack(oreSapphire)); OreDictionary.registerOre("oreRuby", new ItemStack(oreRuby)); OreDictionary.registerOre("oreBrownCoal", new ItemStack(oreBCoal)); OreDictionary.registerOre("oreSulphur", new ItemStack(oreSulphur)); OreDictionary.registerOre("oreBauxite", new ItemStack(oreBauxite)); OreDictionary.registerOre("oreAluminium", new ItemStack(oreBauxite)); OreDictionary.registerOre("oreSilver", new ItemStack(oreSilver)); //Crafting handlers GameRegistry.registerCraftingHandler(new MOreCraftingHandler()); //World gens GameRegistry.registerWorldGenerator(worldGen); GameRegistry.registerFuelHandler(fuelHandler); } @PostInit public static void postInit(FMLPostInitializationEvent event) { } }
  18. I just tried reinstalling my MC. Still nothing...
  19. Im saying you i have that in right format, and i said that, in debug mode it worked. PS: I know Java very well so i know in what format it should be.
  20. Ok, i tried to remove the errored code, but if i do so im still getting other errors like method GameRegistry.addRecipe does ot exist
  21. I defined my armor in my base class, but i still dont know how is possible that, in debug it worked
  22. I posed a topic some time ago (http://www.minecraftforge.net/forum/index.php/topic,5622.0.html) and t was told i didnt reobfuscated my mod. I did (AND copied my files from "reobf" folder). I tried everything and i cant get it working. If someone want help me see my previous post (link up here). Please someone help me, and dont lock (or delete) this like my post before, because i really need help. Thanks, DELTA [spoiler=Log] 2013-02-06 18:58:44 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.7.31.552 for Minecraft 1.4.7 loading 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] All core mods are successfully located 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] Discovering coremods 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2013-02-06 18:58:44 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-147.jar present and correct in lib dir 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Running coremod plugins 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2013-02-06 18:58:45 [sEVERE] [ForgeModLoader] FML appears to be missing any signature data. This is not a good thing 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Validating minecraft 2013-02-06 18:58:45 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2013-02-06 18:58:46 [iNFO] [sTDOUT] 27 achievements 2013-02-06 18:58:46 [iNFO] [sTDOUT] 210 recipes 2013-02-06 18:58:46 [iNFO] [sTDOUT] Setting user: DELTA_12, -1396968832018952432 2013-02-06 18:58:46 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2013-02-06 18:58:46 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-02-06 18:58:46 [iNFO] [sTDOUT] MinecraftForge v6.6.1.523 Initialized 2013-02-06 18:58:46 [iNFO] [ForgeModLoader] MinecraftForge v6.6.1.523 Initialized 2013-02-06 18:58:46 [iNFO] [sTDOUT] Replaced 84 ore recipies 2013-02-06 18:58:46 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-02-06 18:58:46 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\USER\AppData\Roaming\.minecraft\config\logging.properties 2013-02-06 18:58:46 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-02-06 18:58:46 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2013-02-06 18:58:46 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\bin\lwjgl.jar 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\bin\jinput.jar 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\bin\lwjgl_util.jar 2013-02-06 18:58:46 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\USER\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\lib\argo-2.25.jar 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\lib\guava-12.0.1.jar 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\lib\asm-all-4.0.jar 2013-02-06 18:58:46 [FINER] [ForgeModLoader] Skipping known library file C:\Users\USER\AppData\Roaming\.minecraft\lib\bcprov-jdk15on-147.jar 2013-02-06 18:58:46 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2013-02-06 18:58:46 [iNFO] [ForgeModLoader] Searching C:\Users\USER\AppData\Roaming\.minecraft\mods for mods 2013-02-06 18:58:46 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2013-02-06 18:58:46 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2013-02-06 18:58:47 [FINE] [ForgeModLoader] Identified an FMLMod type mod net.minecraft.mOre.MOreBase 2013-02-06 18:58:47 [FINEST] [mOre] Parsed dependency info : [] [] [] 2013-02-06 18:58:47 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-02-06 18:58:47 [FINER] [ForgeModLoader] Received a system property request '' 2013-02-06 18:58:47 [FINER] [ForgeModLoader] System property request managing the state of 0 mods 2013-02-06 18:58:47 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2013-02-06 18:58:47 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\USER\AppData\Roaming\.minecraft\config\logging.properties 2013-02-06 18:58:47 [FINE] [ForgeModLoader] Reloaded logging properties 2013-02-06 18:58:47 [FINE] [mcp] Mod Logging channel mcp configured at default level. 2013-02-06 18:58:47 [iNFO] [mcp] Activating mod mcp 2013-02-06 18:58:47 [FINE] [FML] Mod Logging channel FML configured at default level. 2013-02-06 18:58:47 [iNFO] [FML] Activating mod FML 2013-02-06 18:58:47 [FINE] [Forge] Mod Logging channel Forge configured at default level. 2013-02-06 18:58:47 [iNFO] [Forge] Activating mod Forge 2013-02-06 18:58:47 [FINE] [mOre] Enabling mod mOre 2013-02-06 18:58:47 [FINE] [mOre] Mod Logging channel mOre configured at default level. 2013-02-06 18:58:47 [iNFO] [mOre] Activating mod mOre 2013-02-06 18:58:47 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied 2013-02-06 18:58:47 [FINER] [ForgeModLoader] All mod requirements are satisfied 2013-02-06 18:58:47 [FINER] [ForgeModLoader] Sorting mods into an ordered list 2013-02-06 18:58:47 [FINER] [ForgeModLoader] Mod sorting completed successfully 2013-02-06 18:58:47 [FINE] [ForgeModLoader] Mod sorting data 2013-02-06 18:58:47 [FINE] [ForgeModLoader] mOre(mOre Mod:DEV): minecraft.jar () 2013-02-06 18:58:47 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp 2013-02-06 18:58:47 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp 2013-02-06 18:58:47 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML 2013-02-06 18:58:47 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML 2013-02-06 18:58:47 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge 2013-02-06 18:58:47 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge 2013-02-06 18:58:47 [FINEST] [mOre] Sending event FMLConstructionEvent to mod mOre 2013-02-06 18:58:47 [iNFO] [sTDERR] Exception in thread "Minecraft main thread" java.lang.NoSuchMethodError: net.minecraftforge.common.EnumHelper.addArmorMaterial(Ljava/lang/String;I[iI)Lnet/minecraft/item/EnumArmorMaterial; 2013-02-06 18:58:47 [iNFO] [sTDERR] at net.minecraft.mOre.MOreBase.<clinit>(MOreBase.java:179) 2013-02-06 18:58:47 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method) 2013-02-06 18:58:47 [iNFO] [sTDERR] at java.lang.Class.forName(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:418) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2013-02-06 18:58:47 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:153) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2013-02-06 18:58:47 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2013-02-06 18:58:47 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:86) 2013-02-06 18:58:47 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:494) 2013-02-06 18:58:47 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:161) 2013-02-06 18:58:47 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.a(Minecraft.java:410) 2013-02-06 18:58:47 [iNFO] [sTDERR] at asq.a(SourceFile:56) 2013-02-06 18:58:47 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:744) 2013-02-06 18:58:47 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) [/sopiler]
  23. yeah it Is net problem, the game cannot connect to minecraft skins img hosting for some reason (HTTP error code 503), maybe its because forge (maybe) somehow slows down interet connection. I dont have any other ideas for this.

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.