chewdri Posted January 12, 2013 Posted January 12, 2013 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 ? Quote
AndyLun Posted January 12, 2013 Posted January 12, 2013 Maybe you can look into the Book item class in vanilla minecraft ?? Quote
Kore Posted January 12, 2013 Posted January 12, 2013 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 Quote The Korecraft Mod
chewdri Posted January 12, 2013 Author Posted January 12, 2013 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 Quote
chewdri Posted January 12, 2013 Author Posted January 12, 2013 problem solved public void actionPerformed(GuiButton button) { this.mc.displayGuiScreen((GuiScreen)null); this.controlList.clear(); this.mc.displayGuiScreen(new Guipage2(this.player)); } Quote
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.