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.

YunTani

Members
  • Joined

  • Last visited

Everything posted by YunTani

  1. Solved the problem. Thank you.
  2. The EntityPlayer.getCommandSenderName() in 1.7.10 is gone in 1.12.2. What are the alternative methods in 1.12.2?
  3. Is it public class ContainerChest extends Container?
  4. Temporarily, the item name is a backpack. public class GuiHandler implements IGuiHandler { @Override public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { if (ID == 1) { return new ContainerBackPack(player.inventory); } return null; } @Override public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { if (ID == 1) { return new GuiBackPack(player.inventory); } return null; } } public class GuiBackPack extends GuiContainer { private static final ResourceLocation TEXTURE = new ResourceLocation("textures/gui/container/generic_54.png"); public GuiBackPack(InventoryPlayer inventory) { super(new ContainerBackPack(inventory)); this.ySize = 222; } @Override protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(TEXTURE); int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize); } And now I'm wondering how to make "ContainerBackPack".
  5. I make a chest program with reference. However, since the chest is Minecraft, I don't know how to use Forge's IItemHandler.
  6. I want to make an item that opens an inventory with a slot by right clicking.
  7. I want to know about the event after right-clicking an item. The ”流れ" is about events.
  8. I am Japanese. So it is “流れ(nagare)” when expressed in Japanese.
  9. I am sorry. I am not goot at English. I want to know the "series of flows" from opengui.
  10. I especially want to know the flow from opengui.
  11. I want to create an item with inventory in [1.12.2]. What should I do now? I would like to know sites that can be referenced.
  12. Please tell me how the function that was ”ItemStack.loadItemStackFromNBT" in 1.7.10 has changed in 1.12.2.

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.