Jump to content

[1.7.2] Problem with Inventory in custom GUI


Ghosttje

Recommended Posts

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

Link to comment
Share on other sites

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/

Link to comment
Share on other sites

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/

Link to comment
Share on other sites

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;

}

Link to comment
Share on other sites

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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