ILuvYouCompanionCube Posted August 2, 2013 Posted August 2, 2013 I've deleted my other forge instalation, downloaded minecraftforge-src-1.6.2-9.10.0.804.zip and ran install.cmd At the end, the installer showed a message saying I needed to correct the source and run updatemd5 because the process had failed. When I open eclipse, there are 149 errors and 7 warnings in the code. Just checking if that's normal or if I did something wrong. Quote
ILuvYouCompanionCube Posted August 2, 2013 Author Posted August 2, 2013 I don't know what I'm doing wrong, but something is not working in my forge installation. I coded a very simple mod, just to test if everything was ok with forge. When I try to recompile I get 100 errors (unfortunately I can't show you the errors because when I redirect output from recompile.bat to a file it only writes "press any key to continue" to the file. If recompile.bat logs errors to some place I don't know where that place is). Should delete all of forge folder again and redownload reinstall the source? Quote
robin4002 Posted August 2, 2013 Posted August 2, 2013 (unfortunately I can't show you the errors because when I redirect output from recompile.bat to a file it only writes "press any key to continue" to the file. Right clic on the cmd, select all, press entry, and paste here Us can't help you without log. Quote
ILuvYouCompanionCube Posted August 2, 2013 Author Posted August 2, 2013 here it is (I don't think those are all the errors but I think the cmd can show only a certain number of lines at a time, discharding the earlier ones... that's why I wanted to redirect): found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:76: error: method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; (dir == EAST && par1World.isBlockSolidOnSide(par2 - 1, par3, par 4, EAST)); ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:84: error: method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; return (par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST)) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:85: error: method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; (par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST)) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:86: error: method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; (par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH)) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:87: error: method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; (par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH)); ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:102: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (dir == NORTH && par1World.isBlockSolidOnSide(par2, par3, par4 + 1, N ORTH)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:106: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; else if (dir == SOUTH && par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:110: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; else if (dir == WEST && par1World.isBlockSolidOnSide(par2 + 1, par3, par 4, WEST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:114: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; else if (dir == EAST && par1World.isBlockSolidOnSide(par2 - 1, par3, par 4, EAST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:131: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST)) return 1; ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:132: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST)) return 2; ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:133: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH)) return 3; ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:134: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH)) return 4; ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:149: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (!par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST) && i1 == 1) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:154: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (!par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST) && i1 == 2) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:159: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (!par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH) && i1 == 3) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockButton.java:164: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (!par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH) && i1 == 4) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:111: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; return par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST ) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:112: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST ) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:113: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH) || ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:114: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH); ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:124: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if ((j1 == 0 || par5 == 2) && par1World.isBlockSolidOnSide(par2, par3, p ar4 + 1, NORTH)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:129: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if ((j1 == 0 || par5 == 3) && par1World.isBlockSolidOnSide(par2, par3, p ar4 - 1, SOUTH)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:134: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if ((j1 == 0 || par5 == 4) && par1World.isBlockSolidOnSide(par2 + 1, par 3, par4, WEST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:139: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if ((j1 == 0 || par5 == 5) && par1World.isBlockSolidOnSide(par2 - 1, par 3, par4, EAST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:156: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (i1 == 2 && par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH) ) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:161: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (i1 == 3 && par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH) ) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:166: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (i1 == 4 && par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\block\BlockLadder.java:171: error : method isBlockSolidOnSide in interface IBlockAccess cannot be applied to given types; if (i1 == 5 && par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST)) ^ required: int,int,int,ForgeDirection,boolean found: int,int,int,ForgeDirection reason: actual and formal argument lists differ in length C:\Forge\forge\mcp\src\minecraft\net\minecraft\inventory\SlotFurnace.java:72: wa rning: [deprecation] getExperience(int) in FurnaceRecipes has been deprecated float f = FurnaceRecipes.smelting().getExperience(par1ItemStack.item ID); ^ C:\Forge\forge\mcp\src\minecraft\net\minecraftforge\classloading\FMLForgePlugin. java:12: warning: [deprecation] getLibraryRequestClass() in IFMLLoadingPlugin ha s been deprecated public String[] getLibraryRequestClass() ^ 100 errors 17 warnings ================== !! Can not find server sources, try decompiling !! looks to me like forge calls a lot of methods with the wrong argument lists (which is insane and doesn't seem possible... Help ) Quote
robin4002 Posted August 3, 2013 Posted August 3, 2013 Reinstall forge, the patch seems to have misapplied Quote
ILuvYouCompanionCube Posted August 3, 2013 Author Posted August 3, 2013 I deleted the forge folder, downloaded the source zip, extracted, ran install.cmd and I got the exact same result: 149 errors and 7 warnings. I can't recompile anything I code. Do I have to reinstall eclipse maybe? the first error for example is this one: MAX_ENTITY_RADIUS cannot be resolved or is not a field Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1113 Java Problem the line it refers to is this: int i = MathHelper.floor_double((par2AxisAlignedBB.minY - World.MAX_ENTITY_RADIUS) / 16.0D); I checked the World class and it has no field named MAX_ENTITY_RADIUS. I don't know what forge installation does, but I'm guessing it was supposed to edit some minecraft classes adding fields and methods to them through reflection. This seems not to be working. Either I am doing something wrong that I don't understand or minecraftforge-src-1.6.2-9.10.0.804.zip is broken. Any help please ? Quote
GotoLink Posted August 3, 2013 Posted August 3, 2013 What version of Java do you have installed ? Quote
ILuvYouCompanionCube Posted August 3, 2013 Author Posted August 3, 2013 this: C:\Users\Kauanzito>java -version java version "1.7.0_17" Java SE Runtime Environment (build 1.7.0_17-b02) Java HotSpot 64-Bit Server VM (build 23.7-b01, mixed mode) I used to write little forge mods for fun for minecraft 1.5.2 and everything always went ok. Now that I've deleted my old forge folder for minecraft 1.5.2 and installed the new one is when all this stuff began. Quote
ILuvYouCompanionCube Posted August 4, 2013 Author Posted August 4, 2013 so, this is the extensive list of all the errors shown in eclipse "Problems" window when I open it (maybe it will help someone figure out what's wrong with my forge source instalation... I'll provide any other information you need. Just ask) ============ ===ERRORS=== ============ Description Resource Path Location Type The method isRepairable() is undefined for the type Item CraftingManager.java /Minecraft/src/net/minecraft/item/crafting line 286 Java Problem The method countEntities(Class) in the type World is not applicable for the arguments (EnumCreatureType, boolean) SpawnerAnimals.java /Minecraft/src/net/minecraft/world line 94 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockChest.java /Minecraft/src/net/minecraft/block line 469 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockChest.java /Minecraft/src/net/minecraft/block line 449 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockChest.java /Minecraft/src/net/minecraft/block line 457 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockChest.java /Minecraft/src/net/minecraft/block line 461 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockChest.java /Minecraft/src/net/minecraft/block line 465 Java Problem The method isValidArmor(ItemStack, int, EntityPlayer) is undefined for the type Item SlotArmor.java /Minecraft/src/net/minecraft/inventory line 45 Java Problem The method getChestGenBase(ChestGenHooks, Random, WeightedRandomChestContent) is undefined for the type Item ChestGenHooks.java /Minecraft/src/net/minecraftforge/common line 202 Java Problem The method getCreativeTabs() is undefined for the type Item CreativeTabs.java /Minecraft/src/net/minecraft/creativetab line 218 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 80 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 79 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 82 Java Problem The method drawBlockDamageTexture(Tessellator, EntityPlayer, float) in the type RenderGlobal is not applicable for the arguments (Tessellator, EntityLivingBase, float) EntityRenderer.java /Minecraft/src/net/minecraft/client/renderer line 1262 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 81 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 99 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 94 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 109 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 104 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 65 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 64 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 67 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 66 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 69 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 68 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 78 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 77 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 225 Java Problem The method getContainerItemStack(ItemStack) is undefined for the type Item TileEntityBrewingStand.java /Minecraft/src/net/minecraft/tileentity line 189 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 230 Java Problem The method onBlockStartBreak(ItemStack, int, int, int, EntityPlayer) of type ItemShears must override or implement a supertype method ItemShears.java /Minecraft/src/net/minecraft/item line 88 Java Problem The method onArmorTickUpdate(World, EntityPlayer, ItemStack) is undefined for the type Item InventoryPlayer.java /Minecraft/src/net/minecraft/entity/player line 367 Java Problem The method continueWorldLoading() is undefined for the type Minecraft FMLClientHandler.java /Minecraft/src/cpw/mods/fml/client line 515 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 114 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 119 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 195 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 200 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 205 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 210 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 215 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLever.java /Minecraft/src/net/minecraft/block line 220 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 155 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 176 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 145 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 150 Java Problem The method getSmeltingExperience(ItemStack) is undefined for the type Item FurnaceRecipes.java /Minecraft/src/net/minecraft/item/crafting line 120 Java Problem The method getFontRenderer(ItemStack) is undefined for the type Item GuiIngame.java /Minecraft/src/net/minecraft/client/gui line 287 Java Problem The method renderHelmetOverlay(ItemStack, EntityClientPlayerMP, ScaledResolution, float, boolean, int, int) is undefined for the type Item GuiIngame.java /Minecraft/src/net/minecraft/client/gui line 112 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 71 Java Problem The method onBlockStartBreak(ItemStack, int, int, int, EntityClientPlayerMP) is undefined for the type Item PlayerControllerMP.java /Minecraft/src/net/minecraft/client/multiplayer line 133 Java Problem The method onItemUseFirst(ItemStack, EntityPlayer, World, int, int, int, int, float, float, float) is undefined for the type Item PlayerControllerMP.java /Minecraft/src/net/minecraft/client/multiplayer line 362 Java Problem The method getBlockLightOpacity(int, int, int) is undefined for the type World BlockGrass.java /Minecraft/src/net/minecraft/block line 47 Java Problem The method getBlockLightOpacity(int, int, int) is undefined for the type World BlockGrass.java /Minecraft/src/net/minecraft/block line 60 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 140 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTrapDoor.java /Minecraft/src/net/minecraft/block line 202 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 85 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTrapDoor.java /Minecraft/src/net/minecraft/block line 301 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 84 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 83 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 82 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 74 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 73 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockTripWireSource.java /Minecraft/src/net/minecraft/block line 72 Java Problem The method getRenderPasses(int) is undefined for the type Item RenderPlayer.java /Minecraft/src/net/minecraft/client/renderer/entity line 391 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 164 Java Problem The method onEntitySwing(EntityLivingBase, ItemStack) is undefined for the type Item EntityLivingBase.java /Minecraft/src/net/minecraft/entity line 1322 Java Problem The method getArmorTexture(ItemStack, Entity, int, String) is undefined for the type Item ForgeHooksClient.java /Minecraft/src/net/minecraftforge/client line 65 Java Problem The method getArmorModel(EntityLivingBase, ItemStack, int) is undefined for the type Item ForgeHooksClient.java /Minecraft/src/net/minecraftforge/client line 285 Java Problem The method isPotionIngredient() in the type Item is not applicable for the arguments (ItemStack) SlotBrewingStandIngredient.java /Minecraft/src/net/minecraft/inventory line 22 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 106 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 110 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 87 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 102 Java Problem The method getCurrentPlayerStrVsBlock(Block, boolean) in the type EntityPlayer is not applicable for the arguments (Block, boolean, int) ForgeHooks.java /Minecraft/src/net/minecraftforge/common line 157 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 85 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 86 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 76 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 84 Java Problem The method getRenderPasses(int) is undefined for the type Item RenderItem.java /Minecraft/src/net/minecraft/client/renderer/entity line 383 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 154 Java Problem The method getIcon(ItemStack, int) is undefined for the type Item RenderItem.java /Minecraft/src/net/minecraft/client/renderer/entity line 386 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 159 Java Problem The method getRenderPasses(int) is undefined for the type Item RenderItem.java /Minecraft/src/net/minecraft/client/renderer/entity line 133 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 134 Java Problem The method getIcon(ItemStack, int) is undefined for the type Item RenderItem.java /Minecraft/src/net/minecraft/client/renderer/entity line 136 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 149 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 132 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 133 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 114 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 131 Java Problem The method setDimension(int) is undefined for the type WorldProvider DimensionManager.java /Minecraft/src/net/minecraftforge/common line 294 Java Problem worldTickTimes cannot be resolved or is not a field DimensionManager.java /Minecraft/src/net/minecraftforge/common line 207 Java Problem worldTickTimes cannot be resolved or is not a field DimensionManager.java /Minecraft/src/net/minecraftforge/common line 203 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 74 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 75 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockButton.java /Minecraft/src/net/minecraft/block line 73 Java Problem The type WorldServer must implement the inherited abstract method IBlockAccess.isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) WorldServer.java /Minecraft/src/net/minecraft/world line 66 Java Problem The method resetRainAndThunder() is undefined for the type WorldProvider WorldServer.java /Minecraft/src/net/minecraft/world line 263 Java Problem The method getStrVsBlock(ItemStack, Block, int) of type ItemTool must override or implement a supertype method ItemTool.java /Minecraft/src/net/minecraft/item line 118 Java Problem The method getBlockLightOpacity(int, int, int) is undefined for the type World BlockMycelium.java /Minecraft/src/net/minecraft/block line 57 Java Problem The method getBlockLightOpacity(int, int, int) is undefined for the type World BlockMycelium.java /Minecraft/src/net/minecraft/block line 44 Java Problem The method onItemUseFirst(ItemStack, EntityPlayer, World, int, int, int, int, float, float, float) is undefined for the type Item ItemInWorldManager.java /Minecraft/src/net/minecraft/item line 402 Java Problem The method getPersistentChunks() is undefined for the type WorldServer WorldServer.java /Minecraft/src/net/minecraft/world line 536 Java Problem The method onBlockStartBreak(ItemStack, int, int, int, EntityPlayerMP) is undefined for the type Item ItemInWorldManager.java /Minecraft/src/net/minecraft/item line 301 Java Problem perWorldStorage cannot be resolved or is not a field WorldServer.java /Minecraft/src/net/minecraft/world line 918 Java Problem The method canDoLightning(Chunk) is undefined for the type WorldProvider WorldServer.java /Minecraft/src/net/minecraft/world line 363 Java Problem The method shouldPassSneakingClickToBlock(World, int, int, int) is undefined for the type Item ItemInWorldManager.java /Minecraft/src/net/minecraft/item line 412 Java Problem The method canDoRainSnowIce(Chunk) is undefined for the type WorldProvider WorldServer.java /Minecraft/src/net/minecraft/world line 380 Java Problem The method setDamage(ItemStack, int) is undefined for the type Item ItemStack.java /Minecraft/src/net/minecraft/item line 291 Java Problem The method getDamage(ItemStack) is undefined for the type Item ItemStack.java /Minecraft/src/net/minecraft/item line 279 Java Problem The method getDisplayDamage(ItemStack) is undefined for the type Item ItemStack.java /Minecraft/src/net/minecraft/item line 267 Java Problem The method isDamaged(ItemStack) is undefined for the type Item ItemStack.java /Minecraft/src/net/minecraft/item line 256 Java Problem The method hasEffect(ItemStack) in the type Item is not applicable for the arguments (ItemStack, int) ItemStack.java /Minecraft/src/net/minecraft/item line 765 Java Problem The method canHarvestBlock(Block) in the type Item is not applicable for the arguments (Block, ItemStack) ItemStack.java /Minecraft/src/net/minecraft/item line 415 Java Problem The method getMaxDamage() in the type Item is not applicable for the arguments (ItemStack) ItemStack.java /Minecraft/src/net/minecraft/item line 308 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 134 Java Problem worldTickTimes cannot be resolved or is not a field StatsComponent.java /Minecraft/src/net/minecraft/server/gui line 51 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 139 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 156 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 161 Java Problem The method getRenderPasses(int) is undefined for the type Item ItemRenderer.java /Minecraft/src/net/minecraft/client/renderer line 478 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 166 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 171 Java Problem MAX_ENTITY_RADIUS cannot be resolved or is not a field Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1163 Java Problem MAX_ENTITY_RADIUS cannot be resolved or is not a field Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1164 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 112 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 111 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 114 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 113 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 129 Java Problem The method isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) in the type IBlockAccess is not applicable for the arguments (int, int, int, ForgeDirection) BlockLadder.java /Minecraft/src/net/minecraft/block line 124 Java Problem The method shouldRefresh(int, int, int, int, World, int, int, int) is undefined for the type TileEntity Chunk.java /Minecraft/src/net/minecraft/world/chunk line 712 Java Problem The method addTileEntity(Collection) in the type World is not applicable for the arguments (TileEntity) Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1009 Java Problem MAX_ENTITY_RADIUS cannot be resolved or is not a field Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1113 Java Problem MAX_ENTITY_RADIUS cannot be resolved or is not a field Chunk.java /Minecraft/src/net/minecraft/world/chunk line 1114 Java Problem The method isBookEnchantable(ItemStack, ItemStack) is undefined for the type Item ContainerRepair.java /Minecraft/src/net/minecraft/inventory line 318 Java Problem The method getSaveFolder() is undefined for the type WorldProvider AnvilSaveHandler.java /Minecraft/src/net/minecraft/world/chunk/storage line 27 Java Problem The method getSaveFolder() is undefined for the type WorldProvider AnvilSaveHandler.java /Minecraft/src/net/minecraft/world/chunk/storage line 29 Java Problem The type WorldClient must implement the inherited abstract method IBlockAccess.isBlockSolidOnSide(int, int, int, ForgeDirection, boolean) WorldClient.java /Minecraft/src/net/minecraft/client/multiplayer line 36 Java Problem The method finishSetup() is undefined for the type WorldClient WorldClient.java /Minecraft/src/net/minecraft/client/multiplayer line 67 Java Problem The method updateWeatherBody() of type WorldClient must override or implement a supertype method WorldClient.java /Minecraft/src/net/minecraft/client/multiplayer line 303 Java Problem The method getRandomizedSpawnPoint() is undefined for the type WorldProvider EntityPlayerMP.java /Minecraft/src/net/minecraft/entity/player line 173 Java Problem The method createEntity(World, Entity, ItemStack) is undefined for the type Item ForgeInternalHandler.java /Minecraft/src/net/minecraftforge/common line 50 Java Problem The method hasCustomEntity(ItemStack) is undefined for the type Item ForgeInternalHandler.java /Minecraft/src/net/minecraftforge/common line 48 Java Problem The method getFontRenderer(ItemStack) is undefined for the type Item GuiContainer.java /Minecraft/src/net/minecraft/client/gui/inventory line 240 Java Problem The method getFontRenderer(ItemStack) is undefined for the type Item GuiContainer.java /Minecraft/src/net/minecraft/client/gui/inventory line 216 Java Problem The method renderHelmetOverlay(ItemStack, EntityClientPlayerMP, ScaledResolution, float, boolean, int, int) is undefined for the type Item GuiIngameForge.java /Minecraft/src/net/minecraftforge/client line 250 Java Problem The method getFontRenderer(ItemStack) is undefined for the type Item GuiIngameForge.java /Minecraft/src/net/minecraftforge/client line 581 Java Problem The method getRenderPasses(int) is undefined for the type Item RenderBiped.java /Minecraft/src/net/minecraft/client/renderer/entity line 322 Java Problem ============ ==WARNINGS== ============ Description Resource Path Location Type Resource leak: '<unassigned Closeable value>' is never closed RegionFile.java /Minecraft/src/net/minecraft/world/chunk/storage line 185 Java Problem Resource leak: 'mcJarFile' is never closed FMLSanityChecker.java /Minecraft/src/cpw/mods/fml/common/asm line 145 Java Problem Resource leak: 'jar' is never closed CoreModManager.java /Minecraft/src/cpw/mods/fml/relauncher line 167 Java Problem Build path specifies execution environment JavaSE-1.6. There are no JREs installed in the workspace that are strictly compatible with this environment. Minecraft Build path JRE System Library Problem The argument of type String[] should explicitly be cast to Object[] for the invocation of the varargs method translateToLocalFormatted(String, Object...) from type ChatMessageComponent.java /Minecraft/src/net/minecraft/util line 260 Java Problem *StatCollector. It could alternatively be cast to Object for a varargs invocation The assignment to variable par2 has no effect EntityLivingBase.java /Minecraft/src/net/minecraft/entity line 1207 Java Problem Unreachable catch block for IOException. Only more specific exceptions are thrown and they are handled by previous catch block(s). TaskWorldCreation.java /Minecraft/src/net/minecraft/client/gui/mco line 61 Java Problem Quote
ILuvYouCompanionCube Posted August 4, 2013 Author Posted August 4, 2013 I made it work. I've deleted \forge\mcp\eclipse, then I ran install.cmd (as administraror) again, and it worked Quote
LexManos Posted August 4, 2013 Posted August 4, 2013 People remember ALWAYS ALWAYS ALWAYS GIVE US LOGS. The console is spammed with a crapload of output for a reason we need that info to help you! Quote I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.