Posted January 12, 201312 yr Hi, sorry for my bad english. I'm new in modding, i follow lot of forge tutoriel, and I have created some item, blocs and mobs. Now I try to mod Gui. I have created and item "book", when I right click with this object, it open a new windows (it's the book cover) and there is a button "page 1" on this cover. When I click on this button, i would open a new Gui (page 1) but I dont know the code to do this, someone can help me ?
January 12, 201312 yr are you making a new book or what because you could use a tileentity to make the books writing stored in a variable and on page+ display page+=1 The Korecraft Mod
January 12, 201312 yr Author AndyLun -> I looked class "Guibuttonnextpage" "Guibutton" and "GuiScreenBook" I found the code to close a book "this.mc.displayGuiScreen((GuiScreen)null);" but not for Open a new specific Gui. Kore -> My book is not like basic book in minecraft. It has specific Cover, specific skin and specific fonction
January 12, 201312 yr Author problem solved public void actionPerformed(GuiButton button) { this.mc.displayGuiScreen((GuiScreen)null); this.controlList.clear(); this.mc.displayGuiScreen(new Guipage2(this.player)); }
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.