Posted May 28, 20196 yr I can't find any modding guide that shows how to create custom tool and material for it. Has something changed in this thing with the release of version 1.13.2?
May 29, 20196 yr I can recommend this playlist: This is the Tools Video Edited May 29, 20196 yr by TheOnlyTrueEnte
May 29, 20196 yr 3 hours ago, diesieben07 said: Please don't. He has no idea what he's doing. As far as I can tell, its a lot better than previous series (like Loremaster). But I'd be interested in knowing what it is that he does wrong or otherwise poorly explains (I skimmed through the first couple looking to see if I could find any obvious problems). 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.
May 29, 20196 yr http://jabelarminecraft.blogspot.com/ this seems like a nice blog, don't know how up-to-date it is though, but there are tuts on everything
May 29, 20196 yr That’s a great guide, one of the best. However it doesn’t cover basic setup and is for <1.13.2. I’ve got my own tutorials that specifically cover just the setup for 1.13.2 https://cadiboo.github.io/tutorials/1.13.2/forge/. ItemTiers are very similar to the ToolMaterials from <=1.12.2. The main difference is that you no longer need hacks with EnumHelper to add one. Here’s an example of ItemTiers https://github.com/Krevik/Kathairis/blob/master/src/main/java/io/github/krevik/kathairis/init/ModItemTiers.java. About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
May 30, 20196 yr 5 hours ago, diesieben07 said: Mostly he comes to the Forge discord, asks strange questions that make no sense and show that he has no clue. Then he makes questionably helpful Youtube "tutorials" (read: "just do this"-videos) about what he "learned". Ahh, I see now. 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.
May 30, 20196 yr 17 hours ago, Cadiboo said: Here’s an example of ItemTiers https://github.com/Krevik/Kathairis/blob/master/src/main/java/io/github/krevik/kathairis/init/ModItemTiers.java. What's the purpose of LazyLoadBase? I read its code but I don't understand how it's better than directly using Supplier<T>
May 30, 20196 yr A supplier would just give you a thing every time you asked it for one. In most cases it would be a new instance of said thing. A LazyWhatever would work in this way when asked for a thing - it would check if it has initialized it, if not it would do so, and then return the thing stored in it, thus only initializing/evaluating it once. Lazy is usually used for expensive operations that should only be done once.
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.