Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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 xD

 

Thx for your help http://minecraftforge.net/forum/Smileys/default/cheesy.gif

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.

  • 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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.