Posted July 10, 201312 yr Hello, I am modding a very simple client for myself and a friend. What I am actually trying to do in this case is to show up text at the top left (for example: "My client 1.0". I am modding with MCP for 1.6.2. I tried to lookup on the Internet, but the GuiIngame.java doesn't seem to work along with Minecraft, because when I tried editing the F3 menu, it didn't change anything... Thanks in advance!
July 10, 201312 yr Author Thanks for the quick answer, but I am quit new to Forge programming. Could you give me what to write? The one I just tested is not working: [embed=425,349] fontrenderer.drawStringWithShadow("My client 1.0", 2, 2, 0xffffff); [/embed]
July 10, 201312 yr Do you have your event method set up in a different class from your main mod and like so? @ForgeSubscribe public void renderGui(RenderGameOverlayEvent event) { if (!Minecraft.isGuiEnabled()) return; // draw stuff here } and your init method @EventHandler public void initMod(FMLInitializationEvent event) { MinecraftForge.EVENT_BUS.register(new EventHandler()); }
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.