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.

coolboy4531

Members
  • Joined

  • Last visited

Everything posted by coolboy4531

  1. fasjdjfsai. I don't understand a word you are saying. English pls. Use an older/newer version if the download is corrupt or something.
  2. It's IIconRegister.
  3. No problem. I hope you realize that line just removes the Entity from the world upon spawning. It was no render problem
  4. Why do you have this in your Entity class? this.setDead();
  5. If you don't understand what the f*ck we are talking about then that means you are not ready for coding. What coolAlias is saying that Minecraft.getMinecraft() is run client-side. There are two sides (client-side and server-side). Client-side is like player mangement (I guess), server-side is world management. He is saying that if you use Minecraft.getMinecraft() then only the (one) PLAYER (client-side) will hear it. But if you use a method that is run on the server-side it will play it for all players. Got it? Good. ;c
  6. Are you sure its nothing in your Render class? One more thing, is your Entity actually spawning?
  7. Re-reading your first post, are you absolutely sure you have made no chances before this starting happening? If you did make some changes, maybe you can backtrack and see what happens. You could also try using your IDE (Eclipse)'s debug mode to see what is happening.
  8. Then why not just do it manually and test it out? In your preInit - remove the proxy.# and add RenderRegistry.# (register entity)
  9. Why not just leave it empty (remove the whole line)...
  10. It's on the top-right of the post.
  11. If I remember correctly, you are suppose to leave the methods in your server proxy "blank." They set the things you want in the method in the client proxy - in other words, delete the things inside the methods in ServerProxyL. One more thing, let me see your main class after you fixed those things.
  12. Yeah I managed to get it working
  13. You aren't suppose to have two methods with (FMLInitializationEvent) merge them together, have the same fields etc. inside.
  14. I'm trying to get a player's head icon (like how the skulls do) onto my GUI. I'm creating a GUI that displays the Owner name of an item, but I also want to include the player head texture. How would I do this? Thank you. c:
  15. If you look inside BlockFire you can see that the portal lighting mechanic is hard-coded. Therefore, you have to create your own activation item for your specific portal. The vanilla BlockFire (correct me if I'm wrong) only works for the nether portal.
  16. I have a cheaty way of doing this. Not most simple, but works. Registration: MinecraftForge.EVENT_BUS.register(new IngameText(Minecraft.getMinecraft())); IngameText class: //you can add package and imports public class IngameText extends Gui { private Minecraft mc; public IngameText(Minecraft mc) { super(); this.mc = mc; } @SubscribeEvent public void renderScreen(RenderGameOverlayEvent.Post event) { if (event.isCancelable() || event.type != ElementType.TEXT) { return; } render(mc); } public void render(Minecraft minecraft) { minecraft.fontRenderer.drawString(//add your fields); } } Like I said, this is like the worst way to do it, but it works
  17. @Lang files. I've had this problem too. My only fix was changing back the encoding to ANSI (from UTF-. I don't know what caused this, but that was my only fix
  18. Is THIS the problem - or not? Like I said, I'm retarded :c http://www.minecraftforge.net/forum/index.php?topic=15925.0
  19. Dude, why are you afraid to show your code. We can help you easier instead of you show us your code and crash report. Thank you :3
  20. With you recipe change: (new ItemStack(boomerang_magical, 1) to: (new ItemStack(boomerang_magical, 1, OreDictionary.WILDCARD_VALUE) Haven't really messed around with metadata (item damage) stuff, so tell me if it works or not.
  21. There's a reason that the else statement is there...
  22. @Godis I was talking to the OP. @OP Configurations are for - I guess - config files. (.cfg) You don't register things inside the config.load / save, you have to do them outside of it - where Forge actually reads them to apply in the game.
  23. Where are you placing your textures?
  24. I don't think you know what configurations are for...
  25. Can I see your code again as of now?

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.