Jump to content

DavidM

Members
  • Posts

    1830
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by DavidM

  1. Do not download mods from sites other than CurseForge. Avoid sites like 9minecraft.
  2. 1. Use the spoiler to post big bunch of code/log. 2. Something at line 28 is null. Figure it out. Hint:
  3. 1. Although you've created your own new entity that extends the minecart, you did not write custom methods of reading and writing to NBT tags, which are called when the entity saves to/loads from disk. Therefore, when your entity is being saved to NBT, it uses the saving method from the vanilla minecart entity, which saves your "unstoppable minecart" as a "vanilla minecart".
  4. Please learn java before making a mod.
  5. Update forge. Why are you using a mod installer?
  6. https://minecraft.gamepedia.com/Explosion#Blast_resistance https://minecraft.gamepedia.com/Breaking
  7. Find other 1.13.2 mods on github and learn. Do not depend on YouTube tutorials. Most tutorials on YouTube are terrible and misleading.
  8. 1. Do not use the instance of Minecraft to get the world, as this will only work on the client. The event contains the world that the block placing took place in, so get the world with event.getWorld() or something. 2. The tile entity isn’t created when the BlockPlace event triggers. If you are trying to get the tile entity of your own block when it is placed down, you might be looking for overriding Block#onBlockPlacedBy. P.S. I like your name.
  9. Why do you still have code referring to fuel? Haven't you change it so that the furnace smelts when some blocks are in place? Clean up your code, as these unnecessary code might cause unwanted behaviors.
  10. Post updated code. Well... If your burn time is 0 at the start, then isBurning will always return false, which will cause the furnace to not smelt (according to the logic in your update method). You have to manually implement that functionality.
  11. It teaches the wrong thing, and therefore, is misleading. The author should think twice before uploading a video as such. No... You are very ill-informed on how mathematics, number theory, and linear algebra works. False cause. Of course I wondered why. Simple physics. Learn about gravity. You can easily prove it yourself. Why do you have to start with videos? There are plenty of good text-based tutorials. Modding is programming. If you cannot program, you cannot make a mod. So either learning to program properly or don't make a mod.
  12. Apart from everything else though... well... you know... normally when a hacker upload a malicious software, he is not going to put a "virus" symbol that tells everyone "HEY THIS IS A MALICIOUS SOFTWARE" next to it. ?
  13. You probably clicked on the ads on adfoc.us. Make sure you click the "Skip Ads" button on the top-right corner of the adfoc.us page.
  14. If you still use 1.7.10 but changed the name to 1.12.2 just to get support, then yes, you are lying. Unless you are stating that you changed the version, not the name, to 1.12.2 (in which case the inaccuracy of your grammar made it very hard to understand).
  15. 1. This forum is English only. 2. Read the log yourself first. It literally tells you what went wrong in the second line. Update forge.
  16. Why do you need to send a packet when the tile entity is loaded? Please elaborate. If you only want to get data from the server whenever the GUI is opened, you probably wouldn’t need two packets (depending on your needs, you might not even need packets at all). If you need to send data to both sides, use two packets.
  17. 1. Do not necrothread. Make a new thread. 2. Use your IDE. The search function exists for a reason.
  18. Scratch actually made its way into the top 20 programming language (TIOBE monthly index) in 2018 2017. https://www.tiobe.com/tiobe-index/scratch/ Yes, this burns me as well.
  19. Do not hijack threads, as no two issues are the same. Make your own thread for your problem.
  20. Please elaborate further. What do you mean by ? You might be looking for using variants in your blockstates json.
  21. The main focus of this tutorial is not IRecipe; nevertheless, it did went through the usage of it.
×
×
  • Create New...

Important Information

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