Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    [How-To] Make a minecraft hacked client 1.8! [Part 1]


    Zexiii
     Share

    Recommended Posts

    Well, i was searching on the forum for minecraft hacked clients (as i know how to code them, i'd thought i should start a topic about making one!

     

    Things u need:

    Java JDK (Java Development Kit)

    Eclipse:

    MCP

     

    I am too lazy to do the setup so here u got an tutorial on how-to (this does work on windows).

    https://www.youtube.com/watch?v=fbJzPWQYXlk

     

     

    First when u got into Eclipse, you follow the steps on the video, then where gonna make a main class (Recommended to do it as your hacked client name) For Example i'll do GhbsysClient

     

    Go to Client Then go Client>SCR Click on SRC and do New>Class for package you are gonna do me.CODER.CLIENTNAME

    And as name the client name.

     

    We are going to start coding.

    When u got in were gonna make the basics of a hacked client Main.java thingy.

     

    Try this:

    public static String CLIENT_NAME = "CLIENTNAME";
    public static String CLIENT_VERSION = " (rel-1.8)";
    public String CLIENT_AUTHOR = "UR NAME";
    
    public static final CLASSNAME theClient = new CLASSNAME();
    
    public static void StartClient(){
          //Nothing for now
    }
    
    public static String getCLIENT_NAME() {
    		return CLIENT_NAME;
    }
    
    public static void setCLIENT_NAME(String cLIENT_NAME) {
    		CLIENT_NAME = cLIENT_NAME;
    }
    
    public static String getCLIENT_VERSION() {
    		return CLIENT_VERSION;
    }
    
    public static void setCLIENT_VERSION(String cLIENT_VERSION) {
    		CLIENT_VERSION = cLIENT_VERSION;
    }
    

    Now whe are going to make a module handler (Basically module are the hacks)

     

    Create a new class with the package

    me.CODER.CLIENTNAME.module

    And the name:

    Module(.java)

     

    Then just type (or copy) this into the Module.java:

    private String name;
    	private int bind;
    	private Category category;
    	private boolean isEnabled;
    	
    	
            //the structurer that handles the thing, with the name, the keybind the                  //     category
    	public Module(String name, int bind, Category category) {
    		this.name = name;
    		this.bind = bind;
    		this.category = category;
    	}
    	
    
    

    In part 2 we will go further with this.

    Link to comment
    Share on other sites

    This should be moved to either the Tutorials or Web and Scripting section.

    Link to comment
    Share on other sites

    saw something like this a couple of years also. intresting to make something like this again thanks

    Link to comment
    Share on other sites

    • 2 weeks later...

    I am too laZy to do a part 2 right now xddddd I will do it tommorow as i am on vacation bitchaz

    Link to comment
    Share on other sites

    I am excited. I'll wait for Part 2.

    Edited by Rikudou
    Link to comment
    Share on other sites

    Guess whats early?

    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...