Posted August 5, 201411 yr I am trying to make my custom GUI in minecraft 1.7.2. My problem is that I cannot get the last two rows working of my inventories in my GUI like it should. Also the actionbar from the player inventory is not working properly. I think I am doing something wrong in my ContainerTrade class. So this is a Gist of the code: https://gist.github.com/ghost606/703075ff454f99a1bee9 This is also a video demonstrating my problem: https://www.youtube.com/watch?v=j-pol1OmyRo&list=UUu2vzjrQTMY2fxIz_A6msCA *This is a Github link to all my code in case you need it: https://github.com/ghost606/TradeMC If somebody can help? I cannot find the problem Thx for your help http://minecraftforge.net/forum/Smileys/default/cheesy.gif
August 5, 201411 yr Your gui is fairly large. Items popping out from your gui may be caused by a wrong xSize, or ySize. Make sure that you got these values right in the GUI class.
August 6, 201411 yr You have the set the ySize correctly. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
August 6, 201411 yr There's no max, just set it at the width of the gui. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
August 6, 201411 yr Author I found the problem: I did the following: protected int xSize = 256; protected int ySize = 210; But I am extending from GuiContainer and there is alreade two variables xSize and ySize in the class GuiContainer. So I only needed to do the following: public GuiTrade(EntityPlayer entityPlayer, InventoryTrade inventoryTrade) { super(new ContainerTrade(entityPlayer, inventoryTrade)); xSize = 256; ySize = 210; }
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.