Minecraft Mods

Game menu remover

  • 29,012 views, 3 today
  • 1,778 downloads, 0 today
  • 20
  • 11
  • 61
ZachBora's Avatar ZachBora
Level 46 : Master Dwarf
59

About this plugin

Basically this removes the menu once the game loses focus if F1 is enabled. This used to work in Beta 1.3 and prior I believe. Processing this way, you can open 2 minecraft windows (on 2 different accounts) on the same computer with one window building and the other window recording. I use this combined with FRAPS with the "hide mouse cursor in video" option enabled.

I am a software developper but very new to Minecraft modding, this is my first mod. If anyone knows of a better way to implement this or even a way to make this work with modloader please tell me how, I am open to critic and tips.

How to install



  1. Follow instructions in this video : youtu.be/FaHgHrZXVw4
  2. When at the step on installing mods, drag the classes into the jar like he does in the video.

What was changed


There is merely 2 changes required in the code and I wish Mojang would apply these changes.

1 - In Minecraft.java, process displayGuiScreen.
Change :

if (par1GuiScreen == null && this.theWorld == null)
{
par1GuiScreen = new GuiMainMenu();
}

To :

if (par1GuiScreen == null && this.theWorld == null)
{
if (isGuiEnabled())
{
par1GuiScreen = new GuiMainMenu();
}
}

2 - In EntityRenderer.java, process updateCameraAndRender
change :

if (!this.mc.gameSettings.hideGUI || this.mc.currentScreen != null)
{
this.mc.ingameGUI.renderGameOverlay(par1, this.mc.currentScreen != null, var16, var17);
}
To :

if (!this.mc.gameSettings.hideGUI)
{
this.mc.ingameGUI.renderGameOverlay(par1, this.mc.currentScreen != null, var16, var17);
}
CreditMCP
Progress100% complete
Game VersionMinecraft 1.6
Tags

6 Update Logs

Update #6 : by ZachBora 07/03/2013 10:34:07 pmJul 3rd, 2013

Updated to 1.6.1
LOAD MORE LOGS

Create an account or sign in to comment.

1
06/24/2013 2:16 pm
Level 1 : New Crafter
IvanKeyz
IvanKeyz's Avatar
Continue this mod please! Or let someone else do it!!! This mod has a great impact on machinma making and many are looking for this on other websites. Pleaseeee
1
07/03/2013 10:34 pm
Level 46 : Master Dwarf
ZachBora
ZachBora's Avatar
Updated to 1.6.1
1
03/18/2013 1:05 am
Level 1 : New Miner
LordsCam
LordsCam's Avatar
Hey I manually updated it but, sadly, it won't work. I don't thibk its user error. When I esc from the game it just freezes the frame it was on. So yeah. Please update or tell me what to do
1
10/11/2012 2:28 pm
Level 2 : Apprentice Explorer
TheHa11owed
TheHa11owed's Avatar
Hello. Please, help me! Minecraft crashes with this mod. I install it, make default textures, but minecraft was crashed. 1.3.2 version.
Please check the code, maybe you make a mistake when you upgrade.
With respect,
Vlad.
1
10/11/2012 2:42 pm
Level 2 : Apprentice Explorer
TheHa11owed
TheHa11owed's Avatar
1
10/14/2012 6:22 pm
Level 46 : Master Dwarf
ZachBora
ZachBora's Avatar
Doesn't come from me but could be a conflict of this and something else. If you look at the stack trace : "com.pclewis.mcpatcher.mod.SkyRenderer.setup" whatever this is.
1
09/05/2012 1:37 pm
Level 23 : Expert Architect
OBryce922
OBryce922's Avatar
Thankyou so very much Diamond, Favourite and a Sub!
1
08/21/2012 12:29 am
Level 40 : Master Skinner
N0Mana
N0Mana's Avatar
can i play a lan in my computer with this mod?

there are just things i wanna try with Lan
1
08/20/2012 10:27 pm
Level 7 : Apprentice Network
349057345
349057345's Avatar
I can't use this mod, nice work though.
Here is how to make it modloader compatible:
click me!
1
08/20/2012 11:11 pm
Level 46 : Master Dwarf
ZachBora
ZachBora's Avatar
That's too old. There is no file
conf/minecraft.rgs in mcp 7.2
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome