Jump to content

Anon10W1z

Forge Modder
  • Posts

    311
  • Joined

  • Last visited

Everything posted by Anon10W1z

  1. I'd recommend this tutorial (https://www.learneroo.com/modules/11) and once you're comfortable with the basics of Java, then research some basic mod tutorials
  2. It's better to make a system where users can make skills into text or JSON files, then you interpret them into Java.
  3. This is the saddest thread I have read in a long time. https://www.learneroo.com/modules/11
  4. Do research. There are tutorials for this.
  5. http://bedrockminer.jimdo.com/modding-tutorials/basic-modding/custom-food/
  6. There is a stepping sound method I believe. Look in EntityLivingBase.
  7. Don't make effect ID static! You don't even need it. Just create a new instance of the enchantment (in the main mod class) and use that instance's effectId, as it is already a field in Enchantment.class.
  8. What about ItemStacks? For example, if I click a block with my item, it will put it with metadata in my inventory.
  9. The game searches for a model to load for my item. I don't want to have a model.
  10. Well that would, well, be a starting point. Then you could from there call some world generation methods. Look around in world generator classes.
  11. In my mod I want to not have a model for my item, as in not to print a stacktrace for a missing file. Any suggestions?
  12. Nonono...oh god. Just delete all of the world by setting the state to Blocks.air.getDefaultState()
  13. I believe there are some methods that let you destroy all blocks in a given bounding box. Look at World.class.
  14. Make a copy of the games array list using new ArrayList<>(games). Iterate over that. Then modify the elements in the old array list as you wish.
  15. What.... The world does not exist when you initialize the mod. What are you trying to do?
  16. One mistake. Months start at 0, not 1. So check if the month is 11, not 12.
  17. To expand on Ben's explanation, you will always register the recipe. Whether or not the recipe is called depends on the day. See here for how to get the month and day.
  18. What? It is supposed to be automatically there. You did setupDecompWorkspace right?
  19. ...ignoring circlejerk username. world.createExplosion is the function you want.
×
×
  • Create New...

Important Information

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