December 22, 20168 yr Here is the official documentation of Forge, but it is rather incomplete. As far as I know, there's no central database of tutorial websites, so you just have to google a specific subject and hope there's a tutorial for it. But I hope you don't expect a tutorial about everything, as there isn't. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
December 22, 20168 yr Yeah it's hard to find specific guides, and the docs leave a bit more to be desired. Maybe the modding community of the past never thought to write some guides for the future modders, but this game is getting kind of old too...maybe they are waiting for Minecraft 2?
December 22, 20168 yr Yeah it's hard to find specific guides, and the docs leave a bit more to be desired. Maybe the modding community of the past never thought to write some guides for the future modders, but this game is getting kind of old too...maybe they are waiting for Minecraft 2? I think its more that the people who know "all of the things" don't have the time to write a tutorial combined with the fact that updates are made so frequently as to out-date any tutorial in months, if not weeks. But we do post our code publicly on github, providing a reference, although usually not well documented. Then you have to consider the fact that a lot of new modders are people who barely know what programming is (the whole "I'm going to learn Java by modding!" outlook). Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
December 22, 20168 yr There's a list of modding tutorials for 1.9.x/1.10.x here, some of which have been updated to 1.11. 1.11 is still fairly similar to 1.10.2, but the main change is that ItemStack s can no longer be null (the default value is now the empty ItemStack , see ItemStack#isEmpty ) and most fields of ItemStack that were public are now private with public getters/setters. Because ItemStack s can no longer be null , anywhere that used a List<ItemStack> or ItemStack[] should now use a NonNullList<ItemStack> . Edit: I forgot that this site doesn't use Markdown. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.