Jump to content

tattyseal

Forge Modder
  • Posts

    194
  • Joined

  • Last visited

Everything posted by tattyseal

  1. [lmgtfy]Minecraft Forge Event Handlers[/lmgtfy]
  2. Block.blockRegistry is what you need
  3. Use and event handler with TickEvent and register it in the FMLCommonHandler.instance().bus() and NOT MinecraftForge.EVENT_BUS
  4. The LivingDropsEvent has a arraylist, then add an itemstack to it.
  5. [lmgtfy]Minecraft Forge Event Handler[/lmgtfy]
  6. Make an event handler with LivingDropsEvent.
  7. Change ItemStack stack = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(block)) to ItemStack stack = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(block)).copy();
  8. They are trying to help you. 1. The version for 1.6.2 is newer than the one for 1.5.2 2. 1.5.2 and Forge for 1.5.2 are no longer supported. 3. Do not get angry with people that are trying to help.
  9. Hello! I added GUI Configs, but when I try to open it I get this error Main Mod File Config EventHandler GuiFactory Config GUI
  10. Hello, How can I generate a text file on build that contains the MCVersion and Mod Version etc? Thanks
  11. In your Main Mod File you give it null when defining your paxels, give it what you define in ItemPaxel, you change it after super, when doing new ItemPaxel(toolDirt, null); change null to Sets.newHashSet(new Block[] {Blocks.planks, Blocks.bookshelf, Blocks.log, Blocks.log2, Blocks.chest, Blocks.pumpkin, Blocks.lit_pumpkin, Blocks.cobblestone, Blocks.double_stone_slab, Blocks.stone_slab, Blocks.stone, Blocks.sandstone, Blocks.mossy_cobblestone, Blocks.iron_ore, Blocks.iron_block, Blocks.coal_ore, Blocks.gold_block, Blocks.gold_ore, Blocks.diamond_ore, Blocks.diamond_block, Blocks.ice, Blocks.netherrack, Blocks.lapis_ore, Blocks.lapis_block, Blocks.redstone_ore, Blocks.lit_redstone_ore, Blocks.rail, Blocks.detector_rail, Blocks.golden_rail, Blocks.activator_rail, Blocks.grass, Blocks.dirt, Blocks.sand, Blocks.gravel, Blocks.snow_layer, Blocks.snow, Blocks.clay, Blocks.farmland, Blocks.soul_sand, Blocks.mycelium})
  12. Also something that would help would be to goto your Instance and Edit it, Set it so the launcher does not close, and when you join the server, copy the log in the Console tab, and paste it here, of course using [ spoiler] and [/ spoiler] tags!
  13. 1. Mods cannot be 'incompatible' with your machine. 2. What version of Minecraft are you using? 3. This should be in Support & Bug Reports Thanks
  14. If you want us to help, you have to answer the question, so we can understand. Without an answer we cannot help you any further.
  15. Always wanted to share and view maps ingame? Minecraft Map Library is for you! What does it do? How does it work? When will it be released to the public? Screenshots Video of a demonstration https://www.youtube.com/watch?v=I35OY949kuE
  16. No, that did not fix it, but it did make it so I get XP from it now
  17. Fixed Issue was using itemstack instead of copying the itemstack with itemstack.copy();
  18. After testing, it seems it resets the WHOLE CHUNK not just my block...
  19. Hello. I am working on a mod, and I have recently made a tile entity with a GUI, container and block, but when I reload the world the block has gone. CODE: TileEntity: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/tileentity/TileEntityElectricFurnace.java SimpleReceiver: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/api/SimpleReceiver.java IBlockReceiver: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/api/IBlockReceiver.java Container: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/client/gui/ContainerElectricFurnace.java GUI: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/client/gui/GuiElectricFurnace.java Block: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/block/BlockElectricFurnace.java Main Mod File: https://github.com/tattyseal/ElectricCraft/blob/master/src/main/java/org/electricraft/common/ElectriCraft.java
  20. Hello. I have a customizable block, and when it is right clicked with an ItemBlock it changes the blocks texture depending on its mode (Shift-RightClick changes it Border/Filler) When it is placed it looks like this: When right clicked with something other than glass (Glass sets a custom texture) it will look like this My Block LEFT What I want the texture inside to look like RIGHT TileEntity Code: Renderer Code: ModelFiller Code: ModelBorder Code: Thanks
×
×
  • Create New...

Important Information

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