Jump to content

larsgerrits

Members
  • Posts

    3462
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by larsgerrits

  1. Swords use metadata to store the damage, so you can't have metadata swords. So you either have to make a new Item for each sword, or you have to implements a system to store the damage in NBT.
  2. Jabelar has a lot of useful tutorials on various subjects: http://jabelarminecraft.blogspot.nl/
  3. Try using the latest Forge version.
  4. Then, google it up and learn how to use it. BTW, i'm 15 too, and I know Java very well, so that's not an excuse.
  5. ... You really know Java? Cause if you do, you really should know how to override methods.
  6. Use WorldSavedData . There are tutorals on the internet.
  7. This topic has been moved to Support & Bug Reports. [iurl]http://www.minecraftforge.net/forum/index.php?topic=25263.0[/iurl]
  8. In every new Minecraft release, there are changes in the code. In the 1.8 update, they rewrote the rendering of Minecraft. There's a post in the tutorials section on how to update your mod to 1.8.
  9. Can't access FML-SERVER-LATEST.
  10. This topic has been moved to Minecraft General. [iurl]http://www.minecraftforge.net/forum/index.php?topic=25272.0[/iurl]
  11. Don't use 1.4.7, that's really old, and there are no reasons not to update.
  12. Use diesieben07's tutorial for setting up Forge with IntelliJ. Tutorial found in the tutorials section.
  13. This topic has been moved to Minecraft General. [iurl]http://www.minecraftforge.net/forum/index.php?topic=25260.0[/iurl]
  14. The GuiContainer class had a private method called drawItemStack(ItemStack,x,y,String) which you can copy and make a new method from and use that.
  15. You get an error at blockMud because that doesn't exist. You called your block Mud . And I think you get an error at fluidMud because you can't use public , private , protected etc. in methods.
  16. You need to add CodeChickenCore to your mods folder, as it wil runtime-deobfuscate the mods so they will work in dev-space.
  17. Why does everyone use the new Object[]{} in their recipes. There's a reason it is a varargs parameter.
  18. Well, your mod setup is kinda weird. You have java and resources source folders, but they need to be src/main/java and src/main/resources . Maybe that's what's wrong.
  19. That bug has been in Techne a long time now, so we know where to look if there's a NPE in the model class.
  20. Remove the integers from the byteBuf.getInt();[code]
  21. Please tell us in DETAIL whats wrong or your thread will be locked.
  22. There are plenty of tutorials on the internet.
  23. Try using the version of ReflectionHelper.setPrivateVersion() which accepts a String, instead of a number, so you can just specify the field name instead of the index.
  24. Why do you have 3 different proxies? About the error: Update forge to the latest version.
  25. Use GradleStart as the start class in your run configurations.
×
×
  • Create New...

Important Information

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