Jump to content

Show text in-game


MOMOTHEREAL

Recommended Posts

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!

Link to comment
Share on other sites

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());
}

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.