Posted July 8, 201213 yr Is there a way to add a onSleep() hook to initiate something once the player sleeps in a bed? Something like a dreamworld maybe? Thanks!
July 8, 201213 yr There is already a method for this... mod_XXX.java public void load(){ registerSleepHandler(new YourSleepHandler()); } YourSleepHandler.java public class YourSleepHandler implements ISleepHandler { public EnumStatus sleepInBedAt(EntityPlayer player, int X, int Y, int Z) { //What you want to happen when you should be sleeping. //if for whatever reason what you want to do fails //return null for it to continue normal sleep. } }
July 8, 201213 yr Author Oh oops! Thanks!!! You just helped with a nice mid idea One step closer to actuality
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.