Posted September 22, 201411 yr how to make , that when mob is walking, and when he walks on lava he places water, to put it out Proud mod developer of: Mob Armor mod Block monster mod Clay Living Dolls mod Much More Spiders mod Elemental cows reborn Mr gorilla mod
September 22, 201411 yr Overriding handleLavaMovement seems like a good place to start. The method name is misleading, sorry. After looking through Entity code, I think it'd be better to just put it in the onEntityUpdate method. E.g. public void onEntityUpdate() { if(this.handleLavaMovement()) { //DO STUFF } super.onEntityUpdate(); } BEFORE ASKING FOR HELP READ THE EAQ! I'll help if I can. Apologies if I do something obviously stupid. If you don't know basic Java yet, go and follow these tutorials.
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.