Jump to content

IvanSteklow

Forge Modder
  • Posts

    62
  • Joined

  • Last visited

  • Days Won

    7

IvanSteklow last won the day on July 18 2017

IvanSteklow had the most liked content!

Converted

  • Gender
    Male
  • Location
    Kazan
  • Personal Text
    Curse Premium

Recent Profile Visitors

5999 profile views

IvanSteklow's Achievements

Stone Miner

Stone Miner (3/8)

61

Reputation

  1. So, I have same problem with particles. Try to make cycle of particle spawn with random position or try to see how furnace/torch/lava particle generator works.
  2. So, I tried. Crash: Packet Handler: *CLICK* What's wrong. Yeah, I don't like packets and never work with it
  3. So, I try to get 'TIME' from NBT, but I don't know why it didn't working. So, writeToNBT in my Tile Entity class looks like that: @Override public NBTTagCompound writeToNBT(NBTTagCompound compound) { super.writeToNBT(compound); compound.setInteger("time", this.time); compound.setInteger("maxTime", METAL_REFINERY_WORKTIME); compound.setTag("items", this.itemStackHandler.serializeNBT()); return compound; } And my GUI Screen Updater looks like that: @Override public void updateScreen() { NBTTagCompound compound = new NBTTagCompound(); compound = this.te.writeToNBT(compound); this.time = compound.getInteger("time"); this.maxTime = compound.getInteger("maxTime"); Core.logger.info(compound); super.updateScreen(); } What's wrong? Full code: Block: *CLICK* Tile Entity: *CLICK* Container: *CLICK* GUI: *CLICK*
  4. Hello Modders! Sorry for my bad English I have Tile Entity that have working time and I have GUI with Progress Bar that need this working time. And I don't know how to do it. Pls help Block: *CLICK* Tile Entity: *CLICK* Container: *CLICK* GUI: *CLICK*
  5. Hello Modders! Please excuse me for my broken English)) I have a machine for processing iron bars in scrap metal. And when I run it - I have a strange bug with phantom items. See below on GIF. Help please with the code. I can not understand the problem. Block: *CLICK* Tile Entity: *CLICK* Container: *CLICK* GUI: *CLICK* GIF: *CLICK*
  6. I want to drop hot item and if it in water it turns into not hot item =D
  7. I need to track where item is. For example: This item is in water
  8. Please, download all mods from CURSE!!! https://minecraft.curseforge.com/ or from official sites of developers, this is site of chicken bones: http://chickenbones.net/Pages/links.html
  9. Hi everyone, I need event that tracking all dropped items\blocks HELP ME PLS
×
×
  • Create New...

Important Information

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