TeslaismyWingman Posted May 12, 2015 Posted May 12, 2015 Hello folks, I hope this is in the right section, if not feel free to firebomb this post. I've been getting my feet wet with minecraft modding over the past month. I have a firm grasp on a lot of the concepts thanks to the boat loads of documentation here on the forums and elsewhere on the internets but hit a large roadblock, living entities. I see tutorials for 1.7 mobs but nothing for 1.8 despite an hour or two of searching. Now I wouldn't dream of asking anyone for a tutorial, it's a waste of your time and I prefer to take things apart. I was wondering if anyone had any source code for initializing, registering, and rendering a mob whether it be a simple reskin of a pre-existing mob or something more complicated, I learn best from reverse engineering code anyways. I know this is a pretty personal request for a public forum so I understand if it breaks etiquette. Thanks a bunch! Quote
coolAlias Posted May 12, 2015 Posted May 12, 2015 I'm pretty sure mobs haven't changed that much from 1.7 to 1.8, so you could probably adapt those 1.7 tutorials without too much difficulty. Have you tried that, yet? Quote http://i.imgur.com/NdrFdld.png[/img]
saxon564 Posted May 12, 2015 Posted May 12, 2015 registering and handling mobs is no different in 1.8 than 1.7. Some methods did change though. Quote
TeslaismyWingman Posted May 12, 2015 Author Posted May 12, 2015 That's what I keep hearing, references to how some of the methods changed but not many clear statements on which methods. Ah well I will give it a shot later this week and hopefully I will figure it out. Thanks for letting me know 1.7 and 1.8 are so close. Quote
saxon564 Posted May 12, 2015 Posted May 12, 2015 the biggest change you will find is that most methods now use BlockPos insteasd of the individual coordinates. Quote
jabelar Posted May 12, 2015 Posted May 12, 2015 I have 1.7 living entity tutorial here: http://jabelarminecraft.blogspot.com/p/creating-custom-entities.html I'm working on creating the 1.8 version, but as mentioned above the entities haven't changed much. The steps required are listed in the tutorial, and I think mostly you can copy the 1.7 code and then just do standard update process -- your IDE will flag those methods that have changed and then you can compare the 1.7 and 1.8 source to see what the equivalent is now likely to be. I've also created a tutorial listing a number of things I've encountered while updating my 1.7 mods to 1.8: http://jabelarminecraft.blogspot.com/p/minecraft-forge-converting-your-mod.html Lastly, if you get stuck figuring out the update you can post the specific question here and we can help. Quote Check out my tutorials here: http://jabelarminecraft.blogspot.com/
Recommended Posts
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.