Jump to content

DavidM

Members
  • Posts

    1830
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by DavidM

  1. How many slots do you have? I doubt the problem is the number of slots. Also post your crash.
  2. 1. See my revised post. 2. ItemStackHandler#serializeNBT.
  3. 1. Stop using IHasModel. 2. What is this NBT even for? You are not doing anything with it. 3. You never serialized the ItemStackHandler to NBT in your BeyBladeProvider, thus the content is not saved. You have the serializeNBT method, but it does not save the NBT of the ItemStackHandler. (Hint: Creating a new and completely irrelevant NBTTagCompound and returning it in the serializeNBT method isn't going save your ItemStackHandler.)
  4. 1. Please do not necro old threads. 2. You would be better off to just disable your anti-virus temporarily and download Forge.
  5. If you meant the Win10 Edition, then unfortunately you cannot install Forge on that. Forge only works with the Java Edition.
  6. You should learn to figure that out by yourself with your IDE (hint: look in the parent class you are extending). That error is a compile time error. Your IDE should tell you what is wrong (syntax error is underlined in red in most IDEs).
  7. Yes pretty much. Make sure you have the correct parameters. If you don't know Java, then you need to learn it before making Minecraft mods. Knowledge of Java is required for modding.
  8. Override BlockTrapDoor#neighborChanged and leave it empty.
  9. That is a compile time error. You should know how to fix it if you know basic Java (again, don't just copy the entire BlockTrapDoor class).
  10. 1. Stop using static initializers. Read the common issues and recommendations for more details. 2. Stop using IHasModel. Read the common issues and recommendations for more details. 3. There is already a BlockTrapDoor. Extend that instead of copying all the code from that class.
  11. Post the error.
  12. Irrelevant: You might want to use something like regex to clean up that bunch of if elses. Using sub-string to check if the last few characters equal to "dragon_amulet" would also work. Just don't use a bunch of if elses.
  13. That would be wrong. You should extend BlockFalling instead.
  14. Give the player mining fatigue? Override ItemArmor#onWornTick (can't remember the spelling) and checks the ItemStack the player is holding. If the ItemStack is not empty, drop it.
  15. The forum updated a few days ago. It seems that the update cleared everyone's profile picture. Some effects of the update that users have experienced are posts prior to the update cannot be found by searching, recently activity cleared in profile, etc.
  16. If you meant you wish to replace the texture of the punji sticks, then you might want to create a texture pack instead of a mod. If you wish to remove a block/item from a mod, then remove the recipe(s) for that block/item in one of the inits event. Never remove the registration of the block/item.
  17. Sorry. 1.7.10 is no longer supported on this forum due to its age. Update to a modern version of Minecraft to receive support.
  18. You are basically asking "how do I build a car with eggs and flour?" The short answer is "you don't". What exactly are you trying to accomplish? Please elaborate.
  19. If you cannot program, then unfortunately you cannot make a mod. Minecraft modding is programming in Java.
  20. Your problem is not related to this thread. Please create your own thread.
  21. You probably want if (!world.isRemote) The latter executes the code on the server side.
  22. Please create your own thread and post you log(s) according to the EAQ.
  23. No. He makes up details. "Hmm... I don't know what this does so I'll just connect some big words together and hopefully the audience won't figure out my mistake." I would recommend some text-based tutorials like https://github.com/TheGreyGhost/MinecraftByExample.
×
×
  • Create New...

Important Information

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