Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired

    Thumbs up ReClass: Updating Classes

    ReClass: Updating Classes

    Hey everyone. So I'm writing this tutorial because I strongly agree with @Departure when he said what he said in his post here. To rephrase him, most "coders" here are just looking for respect by releasing things that aren't really theirs and not really explaining it. They either release source from other people/bases/releases and release either some parts or give no detail on it. They may not even give info on how to get the other parts. Minimal contribution from themselves is given, and they just tend to flame people when they are asking for help.

    That's besides the point. I'm going to show you today how to use ReClass to simply reverse a class. As an example I'll be using the cScreenInfo class that I released yesterday since it is a small class, and not too complex. I myself, and new to this but one of my teachers said, "When you teach something to someone, its like learning it twice", which basically means you get better at it.

    So the things you'll be needing are the following:


    • ReClass 2011 By Drunken Cheetah
    • Experience In C++
    • Understanding How Memory Works
    • Combat Arms Installed
    • An Injector



    Before I start I would like to point out a few things that you all should pay attention to.

    Open Classes:
    Class Base Info:
    Class Data Member Info:

    So now that you keep those things in mind about ReClass, we can actually begin!


    General Info:

    Before we continue, lets recap and remember what it is that we are exactly trying to do here. What we want to do is reverse all the data members in this class so that we can use them and access them. Its easier to do this.

    Lets Begin:

    So first what we need to do is attach ReClass to Engine.exe. To do this, We need to open up our injector and open up a MessageBox. After the message box has opened, attach ReClass to Engine.exe and then, press Okay on the message box.






    Getting Setup:

    Now to get setup, we need to have our pointer ( class pointer ) for the class that we wish to reverse. I will not be going over this step, as the method I used is inaccurate and will not always work. There are a few ways to find the pointer. In this case, I will provide the pointer. Our pointer is 0x37823840. In some cases, the class will only be initialized when in game. But for this purpose, all you will need to do is log in to the game.

    Setting Up ReClass:

    We've made it so far! Now what we need to do is create a new class to reverse. We can simply do this by pressing the "New" button in the application.





    After we create a new class you will see that there is a default base address and class name already set for you. This will be in the Class Base Info section I mentioned at the beginning of this thread.




    Now what we want to do is set our information for our class. You can simply double click the default address and replace it with ours. You can also replace the name of the class the same way, by double clicking the text. The [64] in orange displays the current size of the class.


    Knowing What We Have:

    Next what we want to try and do is identify the things that we have in here. At the moment ReClass should look like this for you.




    Some of you may be thinking this is just a whole bunch of garbage. Well, you are wrong! Before we continue lets identify everything we have in this image.

    As you can see on the left hand side, written in red is how much further we have gone into the class by. How much we have gone into from our base class address. In green right next to it, is the actual address in memory. Right next to that in the blue will be any strings that are referenced. ReClass will show items per 4 bytes. Strings will be broken up into parts of 4. Next to the strings you can see the actual, original bytes of the point in memory. In Orange next to it will show you the float value ( 0.000 ) and the integer value ( 0 ). To watch all these things is a key part.


    Assigning Data Types:

    Now what we are ready to do is actually reverse this class and assign data types to each entry in the class. Well we are finding the screen resolution. If you go into the your settings in Combat Arms, You should see what you have set it to as the first entry. Mine is set to 1366 x 768. So the value of the first entry for me, is 1366. I know what that is now what holds the length in the resolution information. So we know what it will be a type of unsigned long.






    To assign a data type, click the item you wish to add one for and go over to the "modify" tab in ReClass and simply just press the type you wish to add. To rename the variable you just found, simply double click its default text and rename it.

    Underneath this we see our height value. So now we know that that, holds the height of the resolution.



    Now underneath we can see a 32 in the integer value. If we look in Combat Arms under resolution settings, there is an option for color quality of 16-Bit or 32-Bit. So we know this now holds that information.



    Now when we encounter some information which may not be important, or we don't have enough information on, we can simply "pad" this (these) members. Simply declare them as text (char) and specify it to the amount of members you wish to pad.





    Underneath this we can see some more text which says "Default". We don't know what this is for exactly, but we can pad it and name it differently this time.



    Finally underneath it we see that there is a pointer. ReClass will identify pointers to other classes as *->0xADDRESS
    We can either reverse the class further or just store it as a variable, which we will do in this example.



    To declare it as a pointer, which you might need to in other cases, you can just press the "Pointer" button from the modify tab. In this case, we will just declare it as a DWORD (unsigned long).


    Wrapping It Up:

    Are we done yet? Not quite! All that's left to do is check over our work and ensure that it is accurate. Once we have done that, we can hit up the "Generate" button on the main tab and it will give us our created class in C++ syntax.

    Code:
    class cScreenInfo
    {
    public:
    	DWORD ScreenWidth; //0x0000 
    	DWORD ScreenHeight; //0x0004 
    	__int32 ColorQuality; //0x0008 
    	char Unknown0[8]; //0x000C 
    	char Default[8]; //0x0014 
    	DWORD cQualityMgr; //0x001C 
    
    
    };//Size=0x0020
    As you can see, ReClass automatically provides information about the class and each data member. Its always good to double check and edit the generated class in a C++ Compiler.




    For this case, to initialize our class we will call it as written above.

    Code:
    cScreenInfo * pScreenInfo = (cScreenInfo*)0x37823840;
    This is because we have an address which is a pointer to the class.


    We're Done:

    Well that's all I am able to teach you. I hope the information I have provided in this tutorial will help some people out on how to use ReClass and get a better understanding on things. I decided to use simpler terminology. Now I am still new to this, so I hope information isn't wrong, but I am sure I may have missed some things. This can also be applied to many other games. It depends on what you do with it.

    Thanks.

    Credits:


    • Flengo
    • Drunken Cheetah
    • Necrosyz
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  2. The Following 25 Users Say Thank You to Flengo For This Useful Post:

    'SmoLL (11-15-2012),arun823 (11-10-2012),ChaosApply (02-20-2013),Cosmo_ (05-08-2015),DarkSh4dow (04-24-2017),demtrios (11-12-2012),Departure (11-11-2012),Donor (06-23-2013),experthack (11-11-2012),Flengo Jr. (11-10-2012),gibam761 (11-11-2012),Matrix-X (07-08-2013),merp. (01-03-2013),Mystico.Coder (01-08-2013),pDevice (12-03-2012),richardzz (05-13-2013),Saltine (11-11-2012),Shadow` (12-05-2012),Sneak84 (11-17-2012),SNIPdetta (11-10-2012),Teuvin (05-12-2017),The Decoder (12-06-2012),Void() (11-10-2012),ZinisterCoder (12-24-2012),zKingston (09-14-2016)

  3. #2
    Void()'s Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    70
    Reputation
    65
    Thanks
    116
    My Mood
    Busy
    Great explaining tutorial! I will use this for sure.

  4. The Following User Says Thank You to Void() For This Useful Post:

    [MPGH]Flengo (11-10-2012)

  5. #3
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    You should explain how to reverse virtuAls, not how to reverse such an easy class xD
    Good for noobs and beginners, but nothing helpfull for me

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  6. The Following User Says Thank You to Ch40zz-C0d3r For This Useful Post:

    R3dLine (11-11-2012)

  7. #4
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Quote Originally Posted by Ch40zz-C0d3r View Post
    You should explain how to reverse virtuAls, not how to reverse such an easy class xD
    Good for noobs and beginners, but nothing helpfull for me
    I need to learn how to reverse virtuals first you know

    When I do I may or may not post another tutorial.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  8. #5
    nigger's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    224
    Reputation
    64
    Thanks
    95
    Quote Originally Posted by Flengo View Post


    I need to learn how to reverse virtuals first you know

    When I do I may or may not post another tutorial.
    J and Saltine are amazing are reversing. If you need help PM Saltine since J is either drunk or stoned on pills.

  9. #6
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Quote Originally Posted by ****** View Post


    J and Saltine are amazing are reversing. If you need help PM Saltine since J is either drunk or stoned on pills.
    I have Saltine on MSN, I guess I'll hit him up sometime. Thanks
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  10. #7
    nigger's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    224
    Reputation
    64
    Thanks
    95
    Quote Originally Posted by Flengo View Post


    I have Saltine on MSN, I guess I'll hit him up sometime. Thanks
    If he doesn't respond tell him ****** is going to come after him and rape him.

  11. The Following User Says Thank You to nigger For This Useful Post:

    [MPGH]Flengo (11-10-2012)

  12. #8
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by ****** View Post


    If he doesn't respond tell him ****** is going to come after him and rape him.
    Isn't that a given?
    Currently coding applications in Java and C++.

    "It is change, continuing change, inevitable change, that is the dominant factor in society today. No sensible decision can be made any longer without taking into account not only the world as it is, but the world as it will be." -Isaac Asimov

  13. #9
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    Quote Originally Posted by Shadow` View Post
    Isn't that a given?
    LOLOLOLOLOL

    on-topic. nice tut.

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  14. #10
    Eu sou Daleste cheguei mais to saindo fora
    MPGH Member
    experthack's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,178
    Reputation
    90
    Thanks
    626
    My Mood
    Aggressive
    Thanks @Flengo

  15. #11
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    Great job man! Glad to see someone who is not only actually learning, but then using that obtained knowledge to contribute to the shared knowledge pool of the community. Keep it up!

    Oh no! Vortex is gay!

  16. The Following 2 Users Say Thank You to Saltine For This Useful Post:

    Departure (11-11-2012),[MPGH]Flengo (11-11-2012)

  17. #12
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    I agree Saltine,

    For the new coders reading this tutorial it is vital you know your data types, for example Dword is 4 bytes an as said in the tutorial is the default for ReClass to use, a 32bit Integer is also a Dword which ofcause is 4 bytes, but there are variables that a just a word which is 2 bytes, and char is 1 byte(ascii) and 2 bytes for unicode, hence the reason they use an array of char for the padding of the unknown... the pointers are most times a pointer to either another class or a pointer to function. 1 thing flengo forgot to mention which is a little important is the size of the class, which is just an offset from the original address, he has 64 bytes in the picture but can be expanded for larger classes, to know the size of the class is just a matter of calculating all the data types in that class.

    great job Flengo, I am sure it has helped new coders that want to understand a little more about classes, And this is what a coding category is about... teaching others and at the same time you are mastering what you have already learnt...
    DJector.Lite
    Get the advantages of new injection technology, with 1 click easy to use injector, work for all platforms x86/x64

    Download

    D-Jector
    Get the most advanced and full featured injector around, works for any game and any platform x86/x64, nothing comes even close.
    Download

  18. The Following 3 Users Say Thank You to Departure For This Useful Post:

    [MPGH]Flengo (11-11-2012),Saltine (11-11-2012),SNIPdetta (11-11-2012)

  19. #13
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    But im sure the class doesnt start at this address, I think it has been found with cheat engine.

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  20. #14
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Quote Originally Posted by Ch40zz-C0d3r View Post
    But im sure the class doesnt start at this address, I think it has been found with cheat engine.
    I went further back, and there was nothing there. Unless you can prove me wrong, that'd help me.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  21. #15
    szder's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    thanks for the Tuto

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Updated Class: LTClientShellBase + Some More Info
    By Flengo in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 4
    Last Post: 11-10-2012, 01:10 PM
  2. Classes Updated?
    By Flengo in forum Combat Arms Coding Help & Discussion
    Replies: 0
    Last Post: 10-30-2011, 05:21 PM
  3. [Info] Updated CA Classes
    By Stewie_Griffin in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 6
    Last Post: 05-21-2011, 07:59 PM
  4. [ For Win XP 32 bit ] Program to update the structures/class?
    By ASM in forum Combat Arms Coding Help & Discussion
    Replies: 3
    Last Post: 05-14-2011, 09:45 PM
  5. GameClientShell class update :(
    By Ch40zz-C0d3r in forum Combat Arms Coding Help & Discussion
    Replies: 0
    Last Post: 04-30-2011, 03:30 AM

Tags for this Thread