Hey,
I followed the tutorial at: http://www.minecraftforge.net/wiki/Gui_Overlay
I modified the code so I have some simple text drawing:
@ForgeSubscribe(priority = EventPriority.NORMAL)
public void onRender(RenderGameOverlayEvent event)
{
this.drawString(this.getMinecraft().fontRenderer, "Test", 4, 4, 0xFFFFFF);
}
But with this result: http://puu.sh/5czJN.png
Regards,
- JavaPortals