Jump to content

DanielRuns

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by DanielRuns

  1. This is cool. I don't record, but I'll probably show it to some of my friends who do LP's
  2. The download seems to be broken.
  3. It would be very useful if there was an option to get max stack size based on a damage value or NBT data.
  4. You have to use a CraftingHandler. There are a number of tutorials on them.
  5. You need to make your own recipe class that implements IRecipe. Then add it with GameRegistry.addRecipe(yourIRecipe);. look at some of the classes in net.minecraft.item.crafting for examples of this.
  6. Okay, I resolved this by installing forge the old-fashioned way (downloading mcp, extracting forge, etc.)
  7. When I tried to update to 1.5.1 today, there where errors in both the minecraft code and the forge code (there where errors within my own code too, but this is expected when updating.) It appeared as if some of the classes where missing. install log: I will upload my forge directory if needed, but would like to avoid doing that.
  8. If the player's hand is empty the ItemStack is null, not item ID 0. You can either null check or try/catch. public void onBlockClicked(World par1World, int par2, int par3, int par4, EntityPlayer p5EP) { if( p5ep != null && && p5EP.inventory.getCurrentItem().itemID != null){ if(p5EP.inventory.getCurrentItem().itemID == 1 && par2 * par3 != 0 && par2 * par4 != 0){ par1World.setBlock(par2, par3, par4, 4); } } System.out.println("debug tick."); } Thought I should add: When null checking, go from least specific to most specific. For example: if(Object1.method1() != null && Object1 != null){ System.out.println(Object1.method1().toString()); } This will cause a null pointer exception if Object1 is null because it is trying to call a method (method1) from a null object. However, if you did this: if(Object1 != null && Object1.method1() != null){ System.out.println(Object1.method1().toString()); } This will not cause a null pointer exception because it will break out of the if statement before it tries to call a method from a null object.
  9. In response to op: Have an item ItemSpawner.class When ItemSpawner.class is right clicked set a mob spawner and the mob type. Decrease ItemSpawner stack size. Because I'm a nice guy, here's some code ItemSpawner.class public class ItemSpawner extends Item{ public ItemSpawner(int par1) { super(par1); maxStackSize = 64; setIconIndex(0); this.setTextureFile(MainProxy.ITEMS_PNG); } public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10){ par3World.setBlockWithNotify(par4, par5, par6, Block.mobSpawner.blockID); TileEntityMobSpawner spawner = (TileEntityMobSpawner)par1World.getBlockTileEntity(par3, par4, par5); if(spawner != null) { spawner.setMobID( *** String goes here (mobType) ***); } if (!par2EntityPlayer.capabilities.isCreativeMode) { --par1ItemStack.stackSize; } return false; } }
  10. When I added that code to the packet handler it created an infinite loop, which resulted in a stack overflow.
  11. You have to add the new buttons in the update screen method. public void updateScreen() { super.updateScreen(); //Your code to add, remove, or change buttons, text, images, etc. goes here. }
  12. My packets are not sending properly from client to server -- they are staying on the client side. I checked the packet handler with World.isRemote, and it was always called on the client side. If you could help that'd be great. Packet class: http://pastebin.com/suiV6Xx5 Packet handler Class: http://pastebin.com/Wn3YnuRV
  13. Why is your image 100 x 100? Texture file dimension must be a power of 2.
  14. I'm using 1.4.6-6.5.0.475 Thank you so much for the work around; hopefully a real solution will surface soon.
  15. When I try and make a mod, the main file causes Minecraft to crash upon startup. It even crashes when this is my entire main file: package gas.common; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.network.NetworkMod; @Mod(modid = "GasMod", name = "Gas", version = "1.0") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class GasMain { } Note: I've tried adding init, preinit, etc. methods to the class and it gives me the same result. This is the Crash log http://pastebin.com/W6VSTwHs
  16. Alright I did that. I wasn't sure what you meant by the path files, so I just sent my entire mcp folder. Also I'm ragsd77194. I sent you a completely new mcp folder but I got the same error message so it should be fine. This appears to be working okay when I load it in eclipse; I just have to use fast lighting because of the BlockRender.java error.
  17. I really hate to make my first post a problem but I need help. Whenever I try to add forge to MCP it gives me this message- =================================== Minecraft Forge Setup Start ================================= Downloaded Fernflower successfully == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) == # found jad, ff, jad patches, ff patches, osx patches, srgs, name csvs, doc csvs, param csvs, astyle, astyle config !! Updates available. Please run updatemcp to get them. !! > Creating Retroguard config files == Decompiling client using fernflower == > Creating SRGs > Applying Retroguard > Applying MCInjector > Unpacking jar > Copying classes > Decompiling > Copying sources > Applying fernflower fixes > Applying patches > Cleaning comments - Done in 138.70 seconds == Reformating client == > Cleaning sources > Replacing OpenGL constants > Reformating sources - Done in 7.97 seconds !! renaming disabled !! !! Missing server jar file. Aborting !! !! recompile disabled !! Stripping META-INF from minecraft.jar Skipping: META-INF/MANIFEST.MF Skipping: META-INF/CODESIGN.SF Skipping: META-INF/CODESIGN.RSA Applying Forge ModLoader patches patching file net/minecraft/client/Minecraft.java.patch patching file minecraft/net/minecraft/client/Minecraft.java patching file net/minecraft/src/BlockDispenser.java.patch patching file minecraft/net/minecraft/src/BlockDispenser.java patching file net/minecraft/src/ChunkProvider.java.patch patching file minecraft/net/minecraft/src/ChunkProvider.java patching file net/minecraft/src/EntityItem.java.patch patching file minecraft/net/minecraft/src/EntityItem.java patching file net/minecraft/src/EntityList.java.patch patching file minecraft/net/minecraft/src/EntityList.java patching file net/minecraft/src/GenLayerBiome.java.patch patching file minecraft/net/minecraft/src/GenLayerBiome.java patching file net/minecraft/src/GuiCreateWorld.java.patch patching file minecraft/net/minecraft/src/GuiCreateWorld.java patching file net/minecraft/src/GuiMainMenu.java.patch patching file minecraft/net/minecraft/src/GuiMainMenu.java patching file net/minecraft/src/NetClientHandler.java.patch patching file minecraft/net/minecraft/src/NetClientHandler.java patching file net/minecraft/src/PanelCrashReport.java.patch patching file minecraft/net/minecraft/src/PanelCrashReport.java patching file net/minecraft/src/RenderBlocks.java.patch patching file minecraft/net/minecraft/src/RenderBlocks.java Hunk #13 FAILED at 3272. Hunk #14 FAILED at 3395. Hunk #15 FAILED at 3518. Hunk #16 FAILED at 3641. Hunk #17 succeeded at 2871 with fuzz 1 (offset -794 lines). Hunk #18 succeeded at 2953 (offset -794 lines). Hunk #19 succeeded at 2969 (offset -794 lines). Hunk #20 succeeded at 2985 (offset -794 lines). Hunk #21 succeeded at 3001 (offset -794 lines). Hunk #22 succeeded at 4509 (offset -794 lines). Hunk #23 succeeded at 4569 (offset -794 lines). 4 out of 23 hunks FAILED -- saving rejects to file minecraft/net/minecraft/src/RenderBlocks.java.rej patching file net/minecraft/src/RenderEngine.java.patch patching file minecraft/net/minecraft/src/RenderEngine.java patching file net/minecraft/src/RenderManager.java.patch patching file minecraft/net/minecraft/src/RenderManager.java patching file net/minecraft/src/RenderPlayer.java.patch patching file minecraft/net/minecraft/src/RenderPlayer.java patching file net/minecraft/src/SlotCrafting.java.patch patching file minecraft/net/minecraft/src/SlotCrafting.java patching file net/minecraft/src/SlotFurnace.java.patch patching file minecraft/net/minecraft/src/SlotFurnace.java patching file net/minecraft/src/StringTranslate.java.patch patching file minecraft/net/minecraft/src/StringTranslate.java patching file net/minecraft/src/TextureCompassFX.java.patch patching file minecraft/net/minecraft/src/TextureCompassFX.java patching file net/minecraft/src/TextureFlamesFX.java.patch patching file minecraft/net/minecraft/src/TextureFlamesFX.java patching file net/minecraft/src/TextureLavaFlowFX.java.patch patching file minecraft/net/minecraft/src/TextureLavaFlowFX.java patching file net/minecraft/src/TextureLavaFX.java.patch patching file minecraft/net/minecraft/src/TextureLavaFX.java patching file net/minecraft/src/TexturePackList.java.patch patching file minecraft/net/minecraft/src/TexturePackList.java patching file net/minecraft/src/TexturePortalFX.java.patch patching file minecraft/net/minecraft/src/TexturePortalFX.java patching file net/minecraft/src/TextureWatchFX.java.patch patching file minecraft/net/minecraft/src/TextureWatchFX.java patching file net/minecraft/src/TextureWaterFlowFX.java.patch patching file minecraft/net/minecraft/src/TextureWaterFlowFX.java patching file net/minecraft/src/TextureWaterFX.java.patch patching file minecraft/net/minecraft/src/TextureWaterFX.java patching file net/minecraft/src/TileEntity.java.patch patching file minecraft/net/minecraft/src/TileEntity.java patching file net/minecraft/src/TileEntityFurnace.java.patch patching file minecraft/net/minecraft/src/TileEntityFurnace.java patching file net/minecraft/src/TileEntityRenderer.java.patch patching file minecraft/net/minecraft/src/TileEntityRenderer.java patching file net/minecraft/src/World.java.patch patching file minecraft/net/minecraft/src/World.java patching file net/minecraft/src/WorldProvider.java.patch patching file minecraft/net/minecraft/src/WorldProvider.java patching file net/minecraft/src/WorldType.java.patch patching file minecraft/net/minecraft/src/WorldType.java == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) == == Updating client == > Adding javadoc > Renaming sources - Done in 3.89 seconds Applying forge patches patching file net/minecraft/client/Minecraft.java.patch patching file minecraft/net/minecraft/client/Minecraft.java patching file net/minecraft/src/AnvilChunkLoader.java.patch patching file minecraft/net/minecraft/src/AnvilChunkLoader.java patching file net/minecraft/src/AnvilSaveHandler.java.patch patching file minecraft/net/minecraft/src/AnvilSaveHandler.java patching file net/minecraft/src/Block.java.patch patching file minecraft/net/minecraft/src/Block.java patching file net/minecraft/src/BlockButton.java.patch patching file minecraft/net/minecraft/src/BlockButton.java patching file net/minecraft/src/BlockChest.java.patch patching file minecraft/net/minecraft/src/BlockChest.java patching file net/minecraft/src/BlockContainer.java.patch patching file minecraft/net/minecraft/src/BlockContainer.java patching file net/minecraft/src/BlockCrops.java.patch patching file minecraft/net/minecraft/src/BlockCrops.java patching file net/minecraft/src/BlockDoor.java.patch patching file minecraft/net/minecraft/src/BlockDoor.java patching file net/minecraft/src/BlockFire.java.patch patching file minecraft/net/minecraft/src/BlockFire.java patching file net/minecraft/src/BlockLadder.java.patch patching file minecraft/net/minecraft/src/BlockLadder.java patching file net/minecraft/src/BlockLeaves.java.patch patching file minecraft/net/minecraft/src/BlockLeaves.java patching file net/minecraft/src/BlockLever.java.patch patching file minecraft/net/minecraft/src/BlockLever.java patching file net/minecraft/src/BlockLog.java.patch patching file minecraft/net/minecraft/src/BlockLog.java patching file net/minecraft/src/BlockNetherStalk.java.patch patching file minecraft/net/minecraft/src/BlockNetherStalk.java patching file net/minecraft/src/BlockPistonBase.java.patch patching file minecraft/net/minecraft/src/BlockPistonBase.java patching file net/minecraft/src/BlockPressurePlate.java.patch patching file minecraft/net/minecraft/src/BlockPressurePlate.java patching file net/minecraft/src/BlockRail.java.patch patching file minecraft/net/minecraft/src/BlockRail.java patching file net/minecraft/src/BlockRedstoneRepeater.java.patch patching file minecraft/net/minecraft/src/BlockRedstoneRepeater.java patching file net/minecraft/src/BlockRedstoneWire.java.patch patching file minecraft/net/minecraft/src/BlockRedstoneWire.java patching file net/minecraft/src/BlockSnow.java.patch patching file minecraft/net/minecraft/src/BlockSnow.java patching file net/minecraft/src/BlockTallGrass.java.patch patching file minecraft/net/minecraft/src/BlockTallGrass.java patching file net/minecraft/src/BlockTorch.java.patch patching file minecraft/net/minecraft/src/BlockTorch.java patching file net/minecraft/src/BlockTrapDoor.java.patch patching file minecraft/net/minecraft/src/BlockTrapDoor.java patching file net/minecraft/src/BlockVine.java.patch patching file minecraft/net/minecraft/src/BlockVine.java patching file net/minecraft/src/Chunk.java.patch patching file minecraft/net/minecraft/src/Chunk.java patching file net/minecraft/src/ChunkProvider.java.patch patching file minecraft/net/minecraft/src/ChunkProvider.java patching file net/minecraft/src/ContainerCreative.java.patch patching file minecraft/net/minecraft/src/ContainerCreative.java patching file net/minecraft/src/ContainerFurnace.java.patch patching file minecraft/net/minecraft/src/ContainerFurnace.java patching file net/minecraft/src/CraftingManager.java.patch patching file minecraft/net/minecraft/src/CraftingManager.java patching file net/minecraft/src/EffectRenderer.java.patch patching file minecraft/net/minecraft/src/EffectRenderer.java patching file net/minecraft/src/Enchantment.java.patch patching file minecraft/net/minecraft/src/Enchantment.java patching file net/minecraft/src/EnchantmentHelper.java.patch patching file minecraft/net/minecraft/src/EnchantmentHelper.java patching file net/minecraft/src/Entity.java.patch patching file minecraft/net/minecraft/src/Entity.java patching file net/minecraft/src/EntityEnderman.java.patch patching file minecraft/net/minecraft/src/EntityEnderman.java patching file net/minecraft/src/EntityItem.java.patch patching file minecraft/net/minecraft/src/EntityItem.java patching file net/minecraft/src/EntityLiving.java.patch patching file minecraft/net/minecraft/src/EntityLiving.java patching file net/minecraft/src/EntityMinecart.java.patch patching file minecraft/net/minecraft/src/EntityMinecart.java patching file net/minecraft/src/EntityMooshroom.java.patch patching file minecraft/net/minecraft/src/EntityMooshroom.java patching file net/minecraft/src/EntityOcelot.java.patch patching file minecraft/net/minecraft/src/EntityOcelot.java patching file net/minecraft/src/EntityPlayer.java.patch patching file minecraft/net/minecraft/src/EntityPlayer.java patching file net/minecraft/src/EntityRenderer.java.patch patching file minecraft/net/minecraft/src/EntityRenderer.java patching file net/minecraft/src/EntitySheep.java.patch patching file minecraft/net/minecraft/src/EntitySheep.java patching file net/minecraft/src/Explosion.java.patch patching file minecraft/net/minecraft/src/Explosion.java patching file net/minecraft/src/FurnaceRecipes.java.patch patching file minecraft/net/minecraft/src/FurnaceRecipes.java patching file net/minecraft/src/GuiAchievements.java.patch patching file minecraft/net/minecraft/src/GuiAchievements.java patching file net/minecraft/src/GuiControls.java.patch patching file minecraft/net/minecraft/src/GuiControls.java patching file net/minecraft/src/GuiIngame.java.patch patching file minecraft/net/minecraft/src/GuiIngame.java patching file net/minecraft/src/Item.java.patch patching file minecraft/net/minecraft/src/Item.java patching file net/minecraft/src/ItemBow.java.patch patching file minecraft/net/minecraft/src/ItemBow.java patching file net/minecraft/src/ItemBucket.java.patch patching file minecraft/net/minecraft/src/ItemBucket.java patching file net/minecraft/src/ItemDye.java.patch patching file minecraft/net/minecraft/src/ItemDye.java patching file net/minecraft/src/ItemHoe.java.patch patching file minecraft/net/minecraft/src/ItemHoe.java patching file net/minecraft/src/ItemMap.java.patch patching file minecraft/net/minecraft/src/ItemMap.java patching file net/minecraft/src/ItemRenderer.java.patch patching file minecraft/net/minecraft/src/ItemRenderer.java patching file net/minecraft/src/ItemShears.java.patch patching file minecraft/net/minecraft/src/ItemShears.java patching file net/minecraft/src/ItemTool.java.patch patching file minecraft/net/minecraft/src/ItemTool.java patching file net/minecraft/src/MovingObjectPosition.java.patch patching file minecraft/net/minecraft/src/MovingObjectPosition.java patching file net/minecraft/src/NetClientHandler.java.patch patching file minecraft/net/minecraft/src/NetClientHandler.java patching file net/minecraft/src/NetworkManager.java.patch patching file minecraft/net/minecraft/src/NetworkManager.java patching file net/minecraft/src/Packet53BlockChange.java.patch patching file minecraft/net/minecraft/src/Packet53BlockChange.java patching file net/minecraft/src/PlayerController.java.patch patching file minecraft/net/minecraft/src/PlayerController.java patching file net/minecraft/src/PlayerControllerCreative.java.patch patching file minecraft/net/minecraft/src/PlayerControllerCreative.java patching file net/minecraft/src/PlayerControllerMP.java.patch patching file minecraft/net/minecraft/src/PlayerControllerMP.java patching file net/minecraft/src/PlayerControllerSP.java.patch patching file minecraft/net/minecraft/src/PlayerControllerSP.java patching file net/minecraft/src/RailLogic.java.patch patching file minecraft/net/minecraft/src/RailLogic.java patching file net/minecraft/src/RenderBiped.java.patch patching file minecraft/net/minecraft/src/RenderBiped.java patching file net/minecraft/src/RenderBlocks.java.patch patching file minecraft/net/minecraft/src/RenderBlocks.java Hunk #8 FAILED at 3609. Hunk #9 FAILED at 3732. Hunk #10 FAILED at 3855. Hunk #11 FAILED at 3978. Hunk #12 succeeded at 3296 (offset -794 lines). Hunk #13 succeeded at 3312 (offset -794 lines). Hunk #14 succeeded at 3328 (offset -794 lines). Hunk #15 succeeded at 3344 (offset -794 lines). 4 out of 15 hunks FAILED -- saving rejects to file minecraft/net/minecraft/src/RenderBlocks.java.rej patching file net/minecraft/src/RenderEngine.java.patch patching file minecraft/net/minecraft/src/RenderEngine.java patching file net/minecraft/src/RenderGlobal.java.patch patching file minecraft/net/minecraft/src/RenderGlobal.java patching file net/minecraft/src/RenderItem.java.patch patching file minecraft/net/minecraft/src/RenderItem.java patching file net/minecraft/src/RenderManager.java.patch patching file minecraft/net/minecraft/src/RenderManager.java patching file net/minecraft/src/RenderPlayer.java.patch patching file minecraft/net/minecraft/src/RenderPlayer.java patching file net/minecraft/src/RenderSnowMan.java.patch patching file minecraft/net/minecraft/src/RenderSnowMan.java patching file net/minecraft/src/SlotCrafting.java.patch patching file minecraft/net/minecraft/src/SlotCrafting.java patching file net/minecraft/src/SoundManager.java.patch patching file minecraft/net/minecraft/src/SoundManager.java patching file net/minecraft/src/SoundPool.java.patch patching file minecraft/net/minecraft/src/SoundPool.java patching file net/minecraft/src/SpawnerAnimals.java.patch patching file minecraft/net/minecraft/src/SpawnerAnimals.java patching file net/minecraft/src/StatList.java.patch patching file minecraft/net/minecraft/src/StatList.java patching file net/minecraft/src/Teleporter.java.patch patching file minecraft/net/minecraft/src/Teleporter.java patching file net/minecraft/src/Tessellator.java.patch patching file minecraft/net/minecraft/src/Tessellator.java patching file net/minecraft/src/TileEntity.java.patch patching file minecraft/net/minecraft/src/TileEntity.java patching file net/minecraft/src/TileEntityBrewingStand.java.patch patching file minecraft/net/minecraft/src/TileEntityBrewingStand.java patching file net/minecraft/src/TileEntityFurnace.java.patch patching file minecraft/net/minecraft/src/TileEntityFurnace.java patching file net/minecraft/src/TileEntityRendererPiston.java.patch patching file minecraft/net/minecraft/src/TileEntityRendererPiston.java patching file net/minecraft/src/World.java.patch patching file minecraft/net/minecraft/src/World.java patching file net/minecraft/src/WorldGenBigMushroom.java.patch patching file minecraft/net/minecraft/src/WorldGenBigMushroom.java patching file net/minecraft/src/WorldGenDeadBush.java.patch patching file minecraft/net/minecraft/src/WorldGenDeadBush.java patching file net/minecraft/src/WorldGenDungeons.java.patch patching file minecraft/net/minecraft/src/WorldGenDungeons.java patching file net/minecraft/src/WorldGenForest.java.patch patching file minecraft/net/minecraft/src/WorldGenForest.java patching file net/minecraft/src/WorldGenHugeTrees.java.patch patching file minecraft/net/minecraft/src/WorldGenHugeTrees.java patching file net/minecraft/src/WorldGenMinable.java.patch patching file minecraft/net/minecraft/src/WorldGenMinable.java patching file net/minecraft/src/WorldGenShrub.java.patch patching file minecraft/net/minecraft/src/WorldGenShrub.java patching file net/minecraft/src/WorldGenSwamp.java.patch patching file minecraft/net/minecraft/src/WorldGenSwamp.java patching file net/minecraft/src/WorldGenTaiga1.java.patch patching file minecraft/net/minecraft/src/WorldGenTaiga1.java patching file net/minecraft/src/WorldGenTaiga2.java.patch patching file minecraft/net/minecraft/src/WorldGenTaiga2.java patching file net/minecraft/src/WorldGenTallGrass.java.patch patching file minecraft/net/minecraft/src/WorldGenTallGrass.java patching file net/minecraft/src/WorldGenTrees.java.patch patching file minecraft/net/minecraft/src/WorldGenTrees.java patching file net/minecraft/src/WorldProvider.java.patch patching file minecraft/net/minecraft/src/WorldProvider.java patching file net/minecraft/src/WorldProviderEnd.java.patch patching file minecraft/net/minecraft/src/WorldProviderEnd.java patching file net/minecraft/src/WorldProviderHell.java.patch patching file minecraft/net/minecraft/src/WorldProviderHell.java patching file net/minecraft/src/WorldProviderSurface.java.patch patching file minecraft/net/minecraft/src/WorldProviderSurface.java patching file net/minecraft/src/WorldRenderer.java.patch patching file minecraft/net/minecraft/src/WorldRenderer.java == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) == == Updating MCP == New version found for : conf/methods.csv New version found for : conf/fields.csv Retrieving file from server : conf/methods.csv Retrieving file from server : conf/fields.csv == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) == == Updating client == > Adding javadoc > Renaming sources - Done in 1.98 seconds == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) == == Recompiling client == > Cleaning bin > Recompiling '"javac" -Xlint:-options -deprecation -g -source 1.6 -target 1.6 -classpath "lib:lib/*:jars/bin/minec...' failed : 1 == ERRORS FOUND == src/minecraft/net/minecraft/src/forge/ForgeHooks.java:359: warning: [deprecation] net.minecraft.src.forge.ISpecialMobSpawnHandler in net.minecraft.src.forge has been deprecated static LinkedList<ISpecialMobSpawnHandler> specialMobSpawnHandlers = new LinkedList<ISpecialMobSpawnHandler>(); ^ src/minecraft/net/minecraft/src/forge/MinecraftForge.java:164: warning: [deprecation] net.minecraft.src.forge.ISpecialMobSpawnHandler in net.minecraft.src.forge has been deprecated public static void registerSpecialMobSpawnHandler(ISpecialMobSpawnHandler handler) ^ src/minecraft/net/minecraft/src/RenderBlocks.java:3209: missing return statement } ^ src/minecraft/net/minecraft/src/ModLoader.java:387: type parameters of <T>T cannot be determined; no unique maximal instance exists for type variable T with upper bounds T,java.lang.Object return ReflectionHelper.getPrivateValue(instanceclass, instance, fieldindex); ^ src/minecraft/net/minecraft/src/ModLoader.java:401: type parameters of <T>T cannot be determined; no unique maximal instance exists for type variable T with upper bounds T,java.lang.Object return ReflectionHelper.getPrivateValue(instanceclass, instance, field); ^ 3 errors 2 warnings ================== Client recompile failed, correct source then rerun updatemd5 !! Can not find server sources, try decompiling !! =================================== Minecraft Forge Setup Finished ================================= What I do- 1. Extract mcp 62 2. Extract the forge source into the mcp directory 3. Place my "bin" folder into mcp's "jars" folder 4 Run install.sh with terminal 5. Get an Error message [side note] I've used forge and mcp before but it has always worked, with one exception, my RenderBlocks.java is always screwed up. [Edit] If I'm just being stupid and this isn't actually an error, can somebody please tell me why render blocks never works.
×
×
  • Create New...

Important Information

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