Jump to content

Recommended Posts

Posted (edited)

Guys, when I call some method (GuiNewChat) to call previous chat history in custom chat method.
Here's the result .. 

 

public void onRenderGui(RenderGameOverlayEvent.Post event)
 {if (Minecraft.getInstance().currentScreen instanceof NewChat)



{
Minecraft.getInstance().ingameGUI.getChatGUI().drawChat(1);

}

}

 

How can I fix its location?

 

678666.png.e1ac0cb523ec2970d187d3fc875228ec.png

 

I tried to add some glstatemanager class from referring some previous classes like forgeingamegui.class

in that class... there the codes look like..

 

    protected void renderChat(int width, int height)
    {
        mc.profiler.startSection("chat");

        RenderGameOverlayEvent.Chat event = new RenderGameOverlayEvent.Chat(eventParent, 0, height - 48);
        if (MinecraftForge.EVENT_BUS.post(event)) return;

        GlStateManager.pushMatrix();
        GlStateManager.translatef((float) event.getPosX(), (float) event.getPosY(), 0.0F);
        persistantChatGUI.drawChat(ticks);
        GlStateManager.popMatrix();

        post(CHAT);

        mc.profiler.endSection();
    }

 

Edited by First_jenkins

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.

Announcements



×
×
  • Create New...

Important Information

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