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 have ploblem seems this. Can you talk about it some more. I have entity with whow I want to trade. I created a GuiTrade class that extends GuiContainer, ContainerTrade that extends Container and as inventory I used InventoryMerchant. When I displayed gui with (from entity class, from proccessInteract)

Minecraft.getMinecraft().displayGuiScreen(new GuiTrade(player, this));

I had a normal gui with only strange item move. If you take item, some another has been disappeared. After I shall know about player.openGui(mod_instance, 0, world, posX, posY, posZ) and IGuiHandler. But it works only with blocks and I don't know answer now. Can you help me?

 

 

  • Author
public class GuiHandler implements IGuiHandler {

    @Nullable
    @Override
    public Object getServerGuiElement(int id, EntityPlayer player, World world, int x, int y, int z) {
        if (id == 0) {
            return new ContainerTrade(player.inventory /*merchant needs*/);
        }
        return null;
    }

    @Nullable
    @Override
    public Object getClientGuiElement(int id, EntityPlayer player, World world, int x, int y, int z) {
        if (id == 0) {
            return new GuiTrade(player /*merchant needs*/);
        }
        return null;
    }
}

Sorry for misunderstanding, english isn't my native language. Could you explain to me some more. This is my GuiHandler. I need a merchant instance for trade gui and container constructors. You said that instead of x, y, z coordinates I should send entity ID, aren't you? Maybe I saying something wrong. Correct me if needs, please.

  • Author

I found solution at this link. 

 

42 minutes ago, Rey838 said:

You said that instead of x, y, z coordinates I should send entity ID, aren't you?

I don't understand right away because this way in unusual. Thanks very much!

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.