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.

ILuvYouCompanionCube

Members
  • Joined

  • Last visited

Everything posted by ILuvYouCompanionCube

  1. I think it's more about efficiency and proper code style than anything else It's better to learn to do things correctly the first time around, instead of learning it the hard way later probably efficiency, because subclassing something to override just one method which relates only to the presentation (meaning the appearance of that something to the user) and has the exact same logic everytime, has nothing to do with proper code style
  2. @Mew they should fix Forge instead to make your way the right way, cause I like it a lot better. but I'm kidding, That's probably either impossible or really hard to do. A boy can dream though.
  3. Ok, no func_111206_d then. Every Item or Block you make in your mod must always be a subclass of Item/Block so you can at least override registerIcons even if writing this override is the only thing you do inside the class. Also the images paths are wrong in the tutorial I linked. It would be nice if the first tutorial was right though... Life would be simpler. I'm gonna try your way now.
  4. This one: http://www.minecraftforge.net/wiki/Icons_and_Textures I don't know who wrote it. But is it wrong?
  5. First of all, my version of forge is 1.6.2-9.10.0.804. So I just read the tutorial about textures and it says I should pass as argument to this func_111206_d a string formated in the following way: (Assuming my mod is called mymod, Items is the class where I keep the static instances to all my items and the texture for this item is called tx.png) public static class Items { public static final Item anItem = new Item(id).func_111206_d("mymod:tx"); } then, according to a lot of other posts, (including the tutorial) I must have my tx.png at this path: %appdata%\roaming\.minecraft\assets\mymod\textures\items\tx.png that's what I have, but my textures don't show. I get the pink & black square instead. I know there have been a lot of questions about this (I know because I read them trying to figure out the answer). Please, what's wrong with my code? And if it's wrong, maybe someone should update/delete that tutorial, because I'm doing just exactly what it says.
  6. Thanks a lot guys! I was able to register to the event, and to print stuff to my chat. Just gotta figure out how I want to implement the list and if I will need some kind of timer. But this question is closed.
  7. I can't have it installed on the server because it's someone else's dedicated server. I know the problem is more complex than this but first I'd like to know if there's a way to write something on my client chat. Client side only. The server won't have the mod installed. Thanks.
  8. @GotoLink Thanks for your answer. Would that work on a multiplayer server? I'm guessing commands are handled at server side? The server wouldn't have this class and wouldn't know the command. That's just a guess, I don't really know how commands are implemented, but it makes sense to think they are handled by the server, to avoid commands like /godmode or something.
  9. It's supposed to be client side. I just need time based reminders of things I have to do. I spend to much time standing still trying to remember what I was gonna do next
  10. Basically I need a very simple mod to remind me to do stuff so it would write to my chat what I would set it to write. I just don't know how to send a chat message programmatically. And also, since this mod is meant to run on a multiplayer server, I would like the message to be private, so only I could read it. Is there any method to acomplish that? thanks
  11. I made it work. I've deleted \forge\mcp\eclipse, then I ran install.cmd (as administraror) again, and it worked
  12. 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
  13. 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.
  14. 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 ?
  15. 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): looks to me like forge calls a lot of methods with the wrong argument lists (which is insane and doesn't seem possible... Help )
  16. 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?
  17. 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.
  18. ok thanks! now to figure out how to make the installer work... thanks again!
  19. Hi everybody! Besides from the installer not working and (I quote) "giving up on trying to download" a couple of libraries, I have yet another doubt: the source files for mod dev. Is the installer supposed to install them to? If not, do I have to delete all of forge folders (mcp\, client\, fml\, mcp\reobf, etc... all that is under forge\) before installing the source for the new version of forge? Thanks for any help.
  20. this doesn't work. I put the file downloaded from that link in \.minecraft\versions\1.6.2-Forge9.10.0.789\ and I still get the exact same error: I knew I should have stayed with 1.5.2...
  21. well, let's hope the deobfuscator get's a little better then, before I migrate to 1.6... I don't think func_111022_d is human readable. Not so hot for the par1, par2, ..., par999 either, but that seems to be inevitable. But actual methods and fields named as numbers is far beyond my will to mod minecraft.
  22. well the forge build for 1.6 may not be the recommended one for a while... but I sure hope it works for 1.6 or I'll start to think Mojang is sabotaging us modders >.<
  23. @mew read her uri closely. That's not the location of the vanilla textures. It's under the mods folder. More importantly... this works!! Oh man all those people who derived every block or item they've ever made are gonna have mixed feelings about this.
  24. @Naitenne you singlehandedly turned obsolete every tutorial ever written. It works. Thanks so very much.

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.