Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Minecraft Hacks & Cheats › Minecraft Help › [Urgent] Making GUI activate

Unhappy[Urgent] Making GUI activate

Posts 1–13 of 13 · Page 1 of 1
MapleFire
MapleFire
[Urgent] Making GUI activate
You may think I'm the biggest skid/leech ever but this is the
Help section and the forum is basically skidding everywhere.

My Problem:

So say I have my static Boolean, Ex.

Public Static boolean nofall;

And suppose I put it in where it needs to go, Packet 11, 12, 13 and
made the if statement as well

if(HotPockets.nofall);
{
Blah( Blah, Blah, Blah, BlahBlah);
}

Now I can go in the game and toggle it and it works great
But, I have a GUI, now what code should I put in for the GUI
To activate the code.

I have

if(PublicVars.nofall);

My GUI toggle ^ but how do I set it so if it will be able to
Activate both ways: Pressing toggle, clicking toggle
How?

if(HotPoackets.nofall || PublicVars.nofall)
{
BLAH
}

?

I'm really stumped help please
#1 · edited 13y ago · 13y ago
Woods
crex
@C++ Coding maybe you could do something useful for once.
#2 · 13y ago
MapleFire
MapleFire
Quote Originally Posted by Woods View Post
@C++ Coding maybe you could do something useful for once.
He left to NF BTW it's backup

I really need someone to help me out here please
#3 · 13y ago
Gοku
Gοku
Go On Youtube Look Up A Guy Named "MrMossyPs3" He Can Help (With All Your Client Needs)
#4 · 13y ago
MapleFire
MapleFire
Quote Originally Posted by Puree¹²³ View Post
Go On Youtube Look Up A Guy Named "MrMossyPs3" He Can Help (With All Your Client Needs)
I searched him up, 1200 something subs, 0 videos? Can someone help me out here?
#5 · 13y ago
numanumajosh
numanumajosh
I'd help if I didn't live under a rock.
I'll let you know if I find anything that might help.


Code:
package com.al5ina5.gui;

import net.minecraft.src.GuiScreen;

public class tutorialGui extends GuiScreen {

    public void drawScreen(int i, int j, float f) {
    drawRect(2, 2, 94, 26, 0x9900 );
    }

    protected void mouseClicked(int i, int j, int k) {
This of any help? It's supposed to make your GUI clickable.
#6 · edited 13y ago · 13y ago
MapleFire
MapleFire
Quote Originally Posted by numanumajosh View Post
I'd help if I didn't live under a rock.
I'll let you know if I find anything that might help.


Code:
package com.al5ina5.gui;

import net.minecraft.src.GuiScreen;

public class tutorialGui extends GuiScreen {

    public void drawScreen(int i, int j, float f) {
    drawRect(2, 2, 94, 26, 0x9900 );
    }

    protected void mouseClicked(int i, int j, int k) {
This of any help? It's supposed to make your GUI clickable.
I'm sorry but it doesn't I have my GUI all setup, I just want to know
How to activate a hack I have made that already has a keybind to it. Ex.

I have my hack, works fine, then I put a keybind to it, that means I put
if(HotPockets.nofall) has been stated to activate the Nofall.

Now, I have my GUI which calls for hacks as well,
PublicVars.nofall , how am I to make it so that the same hack
Has a keybind AND can be activated through the GUI

Help :'(
#7 · 13y ago
WinMac32
WinMac32
Not sure what your problem is exactly but I'll take a shot. I'm assuming you've got a single boolean for your hack. So all you have to do is have both the key and the gui 'NOT' the boolean. For example:

if (WhateverYourUsingForKeyEvents){
HotPockets.nofall = !HotPockets.nofall;
}

if (WhateverYourGUIEventIs){
HotPockets.nofall = !HotPockets.nofall;
}

Done. Whenever either event registers it just makes the boolean the opposite of what it already is. That help? If you could be more specific to the problem your having I'd have an easier job telling you what the problem is.
#8 · edited 13y ago · 13y ago
C++Coding
C++Coding
Ok guys,Use your heads.He has his hack bound to a key.And he also wants the hack to be able to be activated from the gui click gui I presume.

You gotta add buttons in your gui and add code so when they are clicked they activate your hack.Just look at the koocraft src dump I leaked and look in the gui because It has a click gui and they do hack calling in there.
#9 · 13y ago
numanumajosh
numanumajosh
Does this help at all?
[Java] Gui.Java stuff - Pastebin.com
#10 · 13y ago
Scyntrian
Scyntrian
You have to set nofall as a public static variable. Then from your key event function go Classname.nofall = !Classname.nofall
This isn't the proper way but it works.
#11 · 13y ago
IB
ibbignerd
Currently I am having the same problem. I didn't want to make another post that would have basically the same title. This is my gui class:

Code:
package net.minecraft.ibbignerd;

import net.minecraft.src.*;

public class IbbigGui extends GuiScreen
{
	public IbbigVars Vars;
	
	public static void gui(IbbigVars Vars, FontRenderer fr){
		Gui.drawRect(0, 0, 70, 16, 0xFFFFFF);
		fr.drawStringWithShadow("Menu", 2, 2, 0x00ff00);
	}
	
	public void mouseClicked(int i, int j, int k){
		super.mouseClicked(i, j, k);
	}
}
with this in my GuiInGame class

Code:
        	if(checkKey(Keyboard.KEY_Y))
        	{
        		mc.displayGuiScreen(new IbbigGui());
        	}
When I hit "y" it releases the mouse according to the displayGuiScreen, but doesn't show anything. Any ideas?
#12 · 13y ago
Woods
crex
/closed and /solved due to absense of OP posting.
#13 · 13y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • [Gui Design]Making Gui's For TrainersBy redkevin25 in Call of Duty Modern Warfare 3 Help
    2Last post 14y ago
  • how to make a hack for warrock and how to activate hack in source codeBy mihec16121 in C++/C Programming
    7Last post 16y ago
  • How to make a GUI (.exe) trainer using cheat engineBy iJustHelp in Call of Duty Modern Warfare 2 Tutorials
    8Last post 16y ago
  • How to make a an advanced GUI trainer in CE?By Demented420 in Call of Duty Modern Warfare 2 Help
    2Last post 16y ago
  • How can I make my GUI look better?By g0t5k111z2 in Visual Basic Programming
    6Last post 16y ago

Tags for this Thread

#activate#gui#help#how#stumped