Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry

    Hacked Client Base [Organized / Simple]

    Hello everyone!
    Today I'm giving out my client base.
     




     

    Q: How do I add this to MCP?
    A: Just decompile vanilla minecrat as usual and when you are done, replace the src folder with this one.

    Q: Does this have optifine?
    A: Yup

    Q: So what exactly is this?
    A: This is a client base for those who want something to start with. It has 3 main packages, com.example, com.example.gui, com.example.hacks.

    Q: How do I add keybinds?
    A: Keybinds are handled in Keys.java. There is a void for each key on the keyboard in that file. All you have to to is add code into the void, such as Boolean = !Boolean, or a more sophisticated method if you wish.

    Q: How do I make a GUI using this?
    A: In the file ExampleGui there's two voids where you can put your GUI code.

    Q: How should I add hacks?
    A: The best way would to make each hack a separate file in the package com.example.hacks. This way, you can find all your hacks easily.

    Q: You didn't explain much.
    A: The source is commented to help users. The base is run off of Loader.java. Look in there and see what it calls and such and you should be able to chipped how it works by yourself.


     

    ---com.example
    CheckKeys: No modification required. The generic checkkeys that handle which keys are pressed
    ClientHandler: This calls the Gui and HackHandler files. Essentially, runs the client
    HackHandler: A class which you put in your calling methods for the files you put in com.relapse.hacks
    Keys: A class which has a void for each key on the keyboard. Place toggle statements and such in here
    Loader: The class which is called from Minecraft.class. Controls the client in essence.
    Variables: The file which you can put your variables, objects, strings, and booleans.
    ---com.example.gui
    Arraylist: A class which you put displays a arraylist of enabled hacks. You need to add the code for this class, but an example is given
    ExampleGui: The class which you place your GuiCode in. Two separate voids for text and GuiMethods.
    Util: class containing GuiMethods. If you want more methods, use google. There are plenty out there
    ---com.example.hacks
    ExampleHack: A basic file with one void. Kind of a example of what hack files should be set up like, however you do not have to follow the example given.




    <b>Downloadable Files</b> Downloadable Files
    Last edited by LordPankake; 05-19-2013 at 05:45 PM.

  2. The Following 47 Users Say Thank You to LordPankake For This Useful Post:

    /root/michigun (12-22-2020),1226itch (05-23-2013),2345q23 a6 (08-03-2020),AzuriCode (02-25-2017),BigFatMan1 (06-04-2019),big_cheater (06-08-2017),Caezer99 (05-29-2013),ciyfhx (06-25-2013),D-evil (05-20-2013),DasKamasutra (07-18-2017),DeathG0D_Oficial (09-11-2016),dogzmodz (02-07-2020),ejal007 (06-08-2013),Emmentaler (12-10-2016),endureblackout (04-27-2019),EnryTheBest_ (06-27-2014),gotetiavi (05-24-2013),happy0111 (01-05-2017),iu2 (07-28-2013),JanDerSwag (01-22-2017),LinkIsAmazing (06-19-2013),locdoceu (05-25-2013),Luiggi33 (10-30-2018),Marcel2304 (07-16-2016),Mathiis95 (07-24-2013),maxive1234 (05-20-2013),MeeniVape (11-26-2017),mohi222 (09-24-2016),nizn1204 (07-13-2017),OpSensor (06-30-2014),posiak1 (05-22-2013),ramzmista (07-30-2017),Random2133 (10-12-2017),Razza_ (01-25-2017),Riko CZ (02-03-2018),Rollomodz (11-06-2017),SaviorXKapitan (06-29-2019),SeorClientOfficial (04-13-2018),tamnay13 (05-23-2013),ThatPolarbear (09-30-2016),TheAwesomeKiller (02-22-2017),thesystem (06-19-2017),Vac333456 (03-04-2017),videoexpress (06-23-2013),xFyce (11-30-2017),xhozuuu (11-21-2017),XpertNawb (05-29-2013)

  3. #2
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Nice Release :P

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  4. #3
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Edit: @ Mention is being stupid...

  5. #4
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    On a side note, Relapse is my private hacked client's name. ALL credits goes to @LordPankake. Just don't use Relapse as your hacked client's name. Thanks!


    Mess with the best, die like the rest.


  6. #5
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by Caezer99 View Post
    On a side note, Relapse is my private hacked client's name. ALL credits goes to @LordPankake. Just don't use Relapse as your hacked client's name. Thanks!
    I'll re-upload the attachment. Should of thought of that.
    Edit: Re-uploaded.
    Last edited by LordPankake; 05-19-2013 at 05:46 PM.

  7. #6
    HitlerGivesAnal's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    CheckKeys: No modification required. The generic checkkeys that handle which keys are pressed Lol

    Keys: A class which has a void for each key on the keyboard. Place toggle statements and such in here Lol

    This source is a complete and utter fail.

  8. #7
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by HitlerGivesAnal View Post
    CheckKeys: No modification required. The generic checkkeys that handle which keys are pressed Lol

    Keys: A class which has a void for each key on the keyboard. Place toggle statements and such in here Lol

    This source is a complete and utter fail.
    Better than Manifest's GuiIngame


    On topic, Does hitler give good head too?

  9. #8
    HitlerGivesAnal's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by LordPankake View Post
    Better than Manifest's GuiIngame


    On topic, Does hitler give good head too?
    Manifest's gui ingame is more efficient then this source....

  10. #9
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by HitlerGivesAnal View Post
    Manifest's gui ingame is more efficient then this source....
    It's all in one compact space and is hard to organize. How is a cluster-fuck of random shit efficient?
    And you never answered my question, I'd like to know more about Hitler's abilities.

    Edit: C++ Is dat you?
    Last edited by LordPankake; 05-19-2013 at 06:51 PM.

  11. #10
    non ame's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    1,118
    Reputation
    193
    Thanks
    1,048
    Quote Originally Posted by LordPankake View Post
    It's all in one compact space and is hard to organize. How is a cluster-fuck of random shit efficient?
    And you never answered my question, I'd like to know more about Hitler's abilities.

    Edit: C++ Is dat you?
    Yeah that's C++
    Check his last posts. Threatens to report MPGH & resolves Skype IPs.
    He is such a l33t h4x0rz.

  12. #11
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by non ame View Post
    Yeah that's C++
    Check his last posts. Threatens to report MPGH & resolves Skype IPs.
    He is such a l33t h4x0rz.
    C++ in a nutshell: I did not post this contest, therefore it can suck my dick or Gonna get big at the gym and decompile your shit

  13. The Following User Says Thank You to LordPankake For This Useful Post:

    non ame (05-19-2013)

  14. #12
    HitlerGivesAnal's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by LordPankake View Post
    C++ in a nutshell: I did not post this contest, therefore it can suck my dick or Gonna get big at the gym and decompile your shit
    Lol you act like you know me,Here is me in a nutshell,You're a bunch of autistic kids and can then therefore kill yourselves.

  15. #13
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by HitlerGivesAnal View Post
    Lol you act like you know me,Here is me in a nutshell,You're a bunch of autistic kids and can then therefore kill yourselves.
    Flaming someone doesn't make you better. Stop doing this kind of shit before you earn other's respect. You are just making a fool out of yourself. We don't need people complimenting nor CRITICIZING on our releases. To summarize this, you should kill yourself instead.


    Mess with the best, die like the rest.


  16. The Following User Says Thank You to Caezer99 For This Useful Post:

    LordPankake (05-20-2013)

  17. #14
    HitlerGivesAnal's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Caezer99 View Post
    Flaming someone doesn't make you better. Stop doing this kind of shit before you earn other's respect. You are just making a fool out of yourself. We don't need people complimenting nor CRITICIZING on our releases. To summarize this, you should kill yourself instead.
    Nah,Mpgh is full of skids.Why should I praise someone who finds code dumps on the internet and copy pastes them into a decompiled jar and all they do is throw their name on it.

  18. #15
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by HitlerGivesAnal View Post
    Nah,Mpgh is full of skids.Why should I praise someone who finds code dumps on the internet and copy pastes them into a decompiled jar and all they do is throw their name on it.
    Because we're all competing for non-existent internet points. *cough*Thanks/rep*cough*

Page 1 of 3 123 LastLast

Similar Threads

  1. [Release] Spycheck [1.4.6] Simple Hack Client.
    By Fraggykidd in forum Minecraft Hacks & Cheats
    Replies: 25
    Last Post: 04-23-2013, 03:03 AM
  2. [Request] full hack info creating a simple hack with base for noobs like me
    By amuto22 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 06-24-2012, 10:20 PM
  3. [Release] Flames Hacks v.01 - BETA [SIMPLE HACKS]
    By CAFlames in forum Combat Arms Hacks & Cheats
    Replies: 62
    Last Post: 06-04-2010, 05:56 PM
  4. private hack (client hook)
    By ShyDemon in forum Combat Arms Hacks & Cheats
    Replies: 28
    Last Post: 08-21-2008, 05:00 PM
  5. Replies: 11
    Last Post: 08-28-2007, 02:49 AM