Jump to content

OvermindDL1

Members
  • Posts

    1439
  • Joined

  • Last visited

Everything posted by OvermindDL1

  1. Basically there should be no mod other than Forge being installed in to the minecraft.jar. If you have any mod installing in to the minecraft.jar other than Forge, that is likely your problem.
  2. Think of it this way, you should not be installing *any* mod in to the minecraft.jar file *except* for Forge. Whatever other mods you are installing in to the minecraft.jar file, at least one of them is causing problems.
  3. Always best.
  4. Have you tried *just* MinecraftForge installed in to MC with no mods on an otherwise completely fresh installation? Does it still do that?
  5. BlockContainer is not needed, just override the getTileEntity function, which is defined in Block, in your subclass.
  6. Subclass the Item and have your own custom item do whatever you want.
  7. Basically think of it this way. An Item (subclass) just defines what an Item is and what is does, it is not an instance of it in the world. An ItemStack is an instance of an item in the world, and it has a tag data structure that lets you store arbitrary data on it that an Item (subclass) can access.
  8. You can do it without bullet, bullet has absolutely squat all to do with destruction.
  9. For the keybinding issues update to the latest forge (post 129, but use whatever the latest is) and try again. FML had an update for keybinding issues. Any mod that requires ModLoaderMP will not work at all in MP, but 'might' still work in SP, they need to update to Forge.
  10. I actually just put my textures in the src root for the client, seems to work fine there. I keep the originals elsewhere and just have a script that copies them there for safety.
  11. Likely you did not register your TileEntity mapping in your load function in the mod_Whatever file.
  12. Likely the tick function just replays the sound effect every %something ticks while it is working, based on the length of the sound.
  13. Forge or really any mod can mess with command line java ram allocation. What makes you think it is having a problem? How much memory is the game showing in game or so compared to normal?
  14. What are you talking about constructor? You never need to touch the constructor on such things. Just return your own AABB's from the appropriate collision callbacks.
  15. I do it in the block class actually, it pulls data from the TE if needed, but metadata based bounds has nothing to do with TE's.
  16. Thanks As for the per-sound effects, what would you like to see for each sound, bearing in mind spriting is going to be a dick? Whatever is appropriate? I am horrible with art.
  17. Yes, just set the block bounds on all necessary metadata sensitive versions, make sure not to miss *any* case.
  18. always wonder why areas with alot of cover and panels lagged at first. Then again i'm using bukkit for my server they might have forgot to tell the tileEntities too not update every tick. She uses the Forge hook that lets you disable ticking for a TE. We have had quite literally tens (maybe hundreds) of thousands of RP microblocks within a few chunks on one of my servers and it had no issues whatsoever. I was talking about first load into the area (eg teleporting into the area). Lag spike in other words. Still not experienced any big spikes, she only sends like a short worth of data for them as I recall, which is trivially small really.
  19. This is awesome looking. Cannot wait to see all the effects and all else that you create. Perhaps per-sound effects that default to something like you have now? EDIT: Also, you are modder rank now.
  20. If you need to store data for individual items then store it in the ItemStack metadata/damage if it will fit a short, else save it in the ItemStack NBT data. That is the only way.
  21. Wait, what did I "catch"? Am I doing something wrong? The bug, it was a simple inverted test from a recent pull. Lex found and fixed it. Keep up the good bug reports!
  22. always wonder why areas with alot of cover and panels lagged at first. Then again i'm using bukkit for my server they might have forgot to tell the tileEntities too not update every tick. She uses the Forge hook that lets you disable ticking for a TE. We have had quite literally tens (maybe hundreds) of thousands of RP microblocks within a few chunks on one of my servers and it had no issues whatsoever.
  23. We need one. Want to figure it out and post it to the wiki?
  24. TMI has an API, but I have heard that it does not always work. NEI is vastly superior to TMI, and it has an API that does work, and you can do things like that as well as far more. This is also not related to Forge.
×
×
  • Create New...

Important Information

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