Jump to content

BreezerTwo

Members
  • Posts

    18
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

BreezerTwo's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. thanks for the quick reply. I did it in the ContainerClass but same error: @Override public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { Slot slot = (Slot)this.inventorySlots.get(index); return slot != null ? slot.getStack() : null; } @Abastro To no one. I can't move the items with the opened GUI. But with shift-clicking minecraft crashes
  2. Hello everyone. I have a problem with my GUI. I can right-click my furnace and the GUI opens. In the GUI i cannot move an Item. In addtion to that if it try to put iron inside the cutting unit minecraft crashes. (Chrash log below) I think it has something to do with the GuiCuttingUnit.class because of: Details: Screen name: breezertwo.morerecipes.src.gui.GuiCuttingUnit But I'm not sure. Has anyone her an idea whats wrong? Thanks for all your help Andy ------------ Crash-Log: CuttingUnit.class: GuiCuttingUnit.class: ContainerCuttingUnit.class: TileEntityCuttingUnit.class:
  3. thanks for your solution. I'm glad you posted this here!
  4. Thanks! Now everything works fine! You're great!
  5. Hey everybody, I have a problem I can't solve. If I rightclick on my furnace it doesn't open. Nothing happens and there is nothing showed in the console. I looked for the error for quite a long time now and have no idea whats wrong. If anybody has the idea whats wrong, PLEASE help me... Thanks Andy The Source Code of the Custom Furnace and my MainClass can be found here: https://github.com/breezertwo/FurnaceFiles
  6. i have the same error. Please send me the fixes, too. Thx
  7. Thanks it worked! I deleted all the other numbers end left only the 1! Thanks again!
  8. Hello eveybody, I have a problem with my creative tab. I try to open it and than minecraft crashes. I think it might be the MapleLeaf texture or the getIcon() Method but I have no idea whats wrong. If there is more information you need, please contact me. I'm searching for the error two days now an I hope somebody here has a idea... Thanks! BlockMapleLeaf.class ErrorReport:
  9. before you juge ---> read all, not only the first lines! @Mod(modid="MODID", version="VERSION", name="MoreReipesMod") public class recipesmod { public static final String MODID = "recipesmod"; public static final String VERSION = "2.0"; it exactly the same like the "example mod" of the forge developers! -.-
  10. Ok thanks for your help: Here is the GuiHandler.class package breezertwo.morerecipes.src.grinder; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import cpw.mods.fml.common.network.IGuiHandler; public class GuiHandler implements IGuiHandler{ @Override public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { TileEntity tile_entity = world.getTileEntity(x, y, z); if(tile_entity instanceof TileEntityGrinder){ return new ContainerGrinder(player.inventory, (TileEntityGrinder) tile_entity); } return null; } @Override public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { TileEntity tile_entity = world.getTileEntity(x, y, z); if(tile_entity instanceof TileEntityGrinder){ return new GuiGrinder(player.inventory, (TileEntityGrinder) tile_entity); } return null; } }
  11. Hello everybody.... I have a small problem.... evertime if I try to open the GUI of my custum furnace minecraft crashes! I have been searching for the error for hours now and I decided to ask the people here If they have an idea what's wrong! I think it has something to do with the openGui at onBlockActivated in the CustumFurnace class (here: Grinder.java) Thanks for your help! The Console Error Log: The CustumFurnace Class (here: Grinder.java): Extract form the CustumFurnaceClass (player.openGui) Main Class: Thanks agian for your help...
  12. I think it's the correct path! That is my texture location! Minecraft/src/main/resources/assets/tutorialmod/textures/items/food.png Here is the structure:
×
×
  • Create New...

Important Information

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