Posted July 31, 20214 yr Hello, im new to coding in java and i would like to create simple mod. Can anyone give me link to a tutorial that can teach me to make: simple mod that not doing anything but displays in mod menu // custom item custom block custom entity custom recipe / machine (( I would like to start with forge 1.12.2 + so i will use new methods like Models instead of IIconRegister )) Also i would like to use Eclipse... Thanks! Edited July 31, 20214 yr by Kezoto
August 1, 20214 yr 1.12+? What exactly do you mean by that? you should be modding with the latest version 1.16.5 or 1.17.1, 1.15.2 is at the moment also possible, but is EOL Edited August 1, 20214 yr by Luis_ST
August 1, 20214 yr https://mcforge.readthedocs.io/en/1.17.x/gettingstarted/ this is the official documentation of starting modding (for 1.17 technically, but it seems it wasn't updated from 1.16 yet). You can get the basics from here - and if you set up the MDK correctly, you get an example mod in the files.
August 2, 20214 yr Hi! I’m new to modding too, but I have started making mods that can run, which includes some blocks like normal blocks, and a fence that is 2 blocks high, so I think I can provide some info here. Learning some Java is vital, I think you can learn it from official tutorial on Oracle, online tutorials, and books in library. Also, I recommend you to write some small programs for practice. As vim’s tutorial says, learning lies in practice! For learning modding, try to read Getting Started in Forge doc and examplemod code in the initial Forge workspace. These helped me understand some basic about how to register blocks( letting forge know the blocks you made) etc. By the way, you can look into TheGrayGhost’s examples, it’s on github, and really helpful!
August 2, 20214 yr Oh and, you can read the readme in Forge Dev Kit (which you will download on forge’s website) to build a valid workspace that can be used by IDEs. You should also look into vanilla code( which is under Project and External Dependencies, if you are using Eclipse as your IDE). It offers some example as well, and you need to learn about it first before you override the classes and methods to perform functions based on functions that exists in vanilla Minecraft. Edited August 2, 20214 yr by FishBoneEK
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.