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.

MultiMote

Forge Modder
  • Joined

  • Last visited

Everything posted by MultiMote

  1. EntityItem entItem = new EntityItem(entity.getWorldObj(), 0D, 0D, 0D, yourStack); //then translate, rotate RenderManager.instance.renderEntityWithPosYaw(entItem, 0, 0, 0, 0, 0);
  2. Something like this: GL11.glTranslatef(k - 100, l, 0); GL11.glScalef(scale, scale, scale); this.drawTexturedModalRect(0, 0, 0, 0, 220, 220);
  3. You MUST use triangle faces. In Blender while exporting: http://up42.ru/u/p/___________________2014-08-15_17_41_06.png[/img] Or triangulate faces manually.
  4. public class RestrictedSlot extends Slot { public RestrictedSlot(IInventory inventory1, int id, int x, int y) { super(inventory1, id, x, y); } @Override public boolean isItemValid(ItemStack par1ItemStack) { return false; } }
  5. Post your crash log.
  6. U do it wrong, but Minecraft.getMinecraft().displayGuiScreen(new GuiChat("/something")); Use Minecraft.getMinecraft().thePlayer.sendChatMessage("/something");
  7. Because your material is web. It requires special tool to break this block.
  8. No, we need a way to ignore already scanned wires during tracing.
  9. Use RenderGameOverlayEvent.Post instead of RenderGameOverlayEvent.
  10. yourModel.renderPart("body"); GL11.glTranslatef(...); GL11.glRotatef(...); yourModel.renderPart("lid");
  11. Because client. Try it at server.
  12. Try to open it in audacity and export to same format.
  13. Your sound has wrong codec.
  14. drawTexturedModalRect ONLY works with 256х256 images. Change canvas size of your image (make transparent space) or use this: /** * Тот же drawTexturedModalRect, но для картинок с любым разрешением */ public static void drawNonStandartTexturedRect(int x, int y, int u, int v, int width, int height, int textureWidth, int textureHeight) { float f = 1F / (float) textureWidth; float f1 = 1F / (float) textureHeight; Tessellator tessellator = Tessellator.instance; tessellator.startDrawingQuads(); tessellator.addVertexWithUV((double) (x), (double) (y + height), 0, (double) ((float) (u) * f), (double) ((float) (v + height) * f1)); tessellator.addVertexWithUV((double) (x + width), (double) (y + height), 0, (double) ((float) (u + width) * f), (double) ((float) (v + height) * f1)); tessellator.addVertexWithUV((double) (x + width), (double) (y), 0, (double) ((float) (u + width) * f), (double) ((float) (v) * f1)); tessellator.addVertexWithUV((double) (x), (double) (y), 0, (double) ((float) (u) * f), (double) ((float) (v) * f1)); tessellator.draw(); }
  15. Ouch. Use FOVUpdateEvent for zoom.
  16. Look at the setPositionAndRotation2 of boat or minecart.
  17. How to prevent destoying blocks with this? And it calls when player right clicking useable blocks with this item.
  18. I can't, because there are many things to explain... and i'm so bad in speaking English =(
  19. Ouch... why? Because i'm using left click to shoot and right click to toggle aiming.

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.