Mods Fix

Game menu remover

  • 29.6k views 1 today
  • save_alt 1.8k downloads
Game Version
Minecraft 1.6
Progress
100% complete
Added CreditMCP
  • 21
  • 12
  • 61
ZachBora
Lvl 46Master 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);
}

6 Update Logs

Update #6 : by ZachBora 07/03/2013 10:34:07 pmJuly 4, 2013 @ 2:34 am UTC

Updated to 1.6.1
LOAD MORE LOGS

More like this

  Have something to say?

IvanKeyz
06/24/2013 2:16 pm
Level 1 : New Crafter
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
ZachBora
07/03/2013 10:34 pm
Level 46 : Master Dwarf
Updated to 1.6.1
1
LordsCam
03/18/2013 1:05 am
Level 1 : New Miner
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
TheHa11owed
10/11/2012 2:28 pm
Level 2 : Apprentice Explorer
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
TheHa11owed
10/11/2012 2:42 pm
Level 2 : Apprentice Explorer
1
ZachBora
10/14/2012 6:22 pm
Level 46 : Master Dwarf
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
OBryce922
09/05/2012 1:37 pm
Level 23 : Expert Architect
Thankyou so very much Diamond, Favourite and a Sub!
1
N0Mana
08/21/2012 12:29 am
Level 40 : Master Skinner
can i play a lan in my computer with this mod?

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

Welcome