Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh

    finding a class (weaponmgr specificly)

    i'm trying to get back into C++ and hack making. All i need is the WeaponMGR Class and i'm good for my hack i should release soon

    could someone tell me how to either find it myself or pm it to me? i used to have it (buddy gave it to me) but in a reformat of my pc, i lost it >.>

    thanks and rep will be given for any and all help (and maybe a private hack if you want it)


    UPDATE: found my answer on how to make classes...still can't seem to get the weaponmgr though

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

    if you need it
    Last edited by supercarz1991; 10-12-2011 at 07:08 PM.

    commando: You're probably the best non-coder coder I know LOL


  2. #2
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    what you want it for? @supercarz1991

  3. #3
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    to make hacks. I have some ideas for hacks, and need a look at the class to know if i'm right that it came be done that way

    commando: You're probably the best non-coder coder I know LOL


  4. #4
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    It's in the Jupiter/Fear SDK.

  5. #5
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    Quote Originally Posted by freedompeace View Post
    It's in the Jupiter/Fear SDK.
    yeah, since the FEAR weaponmgr is identical to the CA one. absolutely.

  6. #6
    Drigien's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    291
    Reputation
    64
    Thanks
    412
    My Mood
    Tired
    I'm also need some help getting at a class.

    From the Jupiter Source:
    Code:
    class CGameButeMgr
    {
    	...
    		char*		m_pCryptKey;
            ...
    };
    I want the m_pCryptKey, which is the encryption key used on the attribute files.

    Now the CGlobalClientMgr, has the variable: CClientButeMgr* m_pClientButeMgr, and CClientButeMgr is a child class of CGameButeMgr.

    So if one had access to the CGlobalClientMgr, it should just be as simple as:
    Code:
    globalClientMgr->m_pClientButeMgr->m_pCryptKey
    // ignoring the fact that it is a protected variable for now.
    I have a simple DLL that injects and can write a string of text to a file on a key press, so all I should need is the address of the encryption key.

    I but don't know much about hacking. What I've gather so from browsing the forum:

    Code:
    #define CGlobalClientMgr 0x375F2240
    from here [06/27] (old address?)

    So using this address I should be to create a class pointer using some like this no?:
    Code:
    // Class signature
    class CGlobalClientMgr
    {
    	public :
    		CGlobalClientMgr( );
    		~CGlobalClientMgr();
    
            void fnc1( );
    	void fnc2( );
    
    	protected :
    		virtual void fnc3();
    
    	private :
    		CClientButeMgr*	m_pClientButeMgr;
    		void*	var1;
    		void*	var2;
    		void*	var3;
    		void*	var4;
    };
    
    
    class CClientButeMgr 
    // CClientButeMgr signature...
    
    CGlobalClientMgr *globalMgr = (CGlobalClientMgr*)0x375F2240;
    CClientButeMgr *buteMgr = globalMgr->m_pClientButeMgr;
    char *key = buteMgr->m_pCryptKey;
    Or have I misunderstood how class signatures and address's work. (It's been a long time since I messed around with ASM).

    Thanks for any help.
    Last edited by Drigien; 10-16-2011 at 11:48 AM.

  7. #7
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    Quote Originally Posted by Drigien View Post
    I'm also need some help getting at a class.

    From the Jupiter Source:
    Code:
    class CGameButeMgr
    {
    	...
    		char*		m_pCryptKey;
            ...
    };
    I want the m_pCryptKey, which is the encryption key used on the attribute files.

    Now the CGlobalClientMgr, has the variable: CClientButeMgr* m_pClientButeMgr, and CClientButeMgr is a child class of CGameButeMgr.

    So if one had access to the CGlobalClientMgr, it should just be as simple as:
    Code:
    globalClientMgr->m_pClientButeMgr->m_pCryptKey
    // ignoring the fact that it is a protected variable for now.
    I have a simple DLL that injects and can write a string of text to a file on a key press, so all I should need is the address of the encryption key.

    I but don't know much about hacking. What I've gather so from browsing the forum:

    Code:
    #define CGlobalClientMgr 0x375F2240
    from here [06/27] (old address?)

    So using this address I should be to create a class pointer using some like this no?:
    Code:
    // Class signature
    class CGlobalClientMgr
    {
    	public :
    		CGlobalClientMgr( );
    		~CGlobalClientMgr();
    
            void fnc1( );
    	void fnc2( );
    
    	protected :
    		virtual void fnc3();
    
    	private :
    		CClientButeMgr*	m_pClientButeMgr;
    		void*	var1;
    		void*	var2;
    		void*	var3;
    		void*	var4;
    };
    
    
    class CClientButeMgr 
    // CClientButeMgr signature...
    
    CGlobalClientMgr *globalMgr = (CGlobalClientMgr*)0x375F2240;
    CClientButeMgr *buteMgr = globalMgr->m_pClientButeMgr;
    char *key = buteMgr->m_pCryptKey;
    Or have I misunderstood how class signatures and address's work. (It's been a long time since I messed around with ASM).

    Thanks for any help.
    yes, since adding members to the class makes them point to the right value.

    and the classes change from fear to ca, so it may not be in the same class.

  8. The Following User Says Thank You to ISmokeWeedAmICoolNow For This Useful Post:

    Drigien (10-19-2011)

  9. #8
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    jesus @Drigien

    you crack attributes, this games dead

    commando: You're probably the best non-coder coder I know LOL


  10. #9
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by ISmokeWeedAmICoolNow View Post
    yeah, since the FEAR weaponmgr is identical to the CA one. absolutely.
    No it's not. However, it is very similar (the game uses the SDK), so you can use the ones provided in the SDK, diff between Combat Arms and the SDK and have a final working class.

  11. #10
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    Quote Originally Posted by freedompeace View Post


    No it's not. However, it is very similar (the game uses the SDK), so you can use the ones provided in the SDK, diff between Combat Arms and the SDK and have a final working class.
    most classes are very different (the game changed the SDK), so you can use the ones provided in the SDK as a loose idea of what may be in the class as you reverse it.

  12. #11
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by ISmokeWeedAmICoolNow View Post
    most classes are very different (the game changed the SDK), so you can use the ones provided in the SDK as a loose idea of what may be in the class as you reverse it.
    No, they are very similar, that is, if they haven't completely overhauled the game (as in a complete rewrite) since January. The objects within Combat Arms match very closely with the Fear and Jupiter Engine SDKs -- look below the surface.

  13. #12
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    Quote Originally Posted by freedompeace View Post


    No, they are very similar, that is, if they haven't completely overhauled the game (as in a complete rewrite) since January. The objects within Combat Arms match very closely with the Fear and Jupiter Engine SDKs -- look below the surface.
    sigh. get more experience with the game before you assume things. they are different. that is all.

  14. #13
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by ISmokeWeedAmICoolNow View Post
    sigh. get more experience with the game before you assume things. they are different. that is all.
    lol ur telling that to the creator of portal and all of those stuff... what have u done recently? considering u still called "choob" prob not much. im not really one to talk even tho i actually contribute and dont just rage other people. unless they ask for it

  15. #14
    ISmokeWeedAmICoolNow's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    19
    My Mood
    Bitchy
    Quote Originally Posted by teehee15 View Post
    lol ur telling that to the creator of portal and all of those stuff... what have u done recently? considering u still called "choob" prob not much. im not really one to talk even tho i actually contribute and dont just rage other people. unless they ask for it
    i coded a full vip from scratch with a friend. you?

    im not raging at him, im trying to correct him but for some reason (ego?) he won't accept the facts.

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

    Tsinghua (10-19-2011)

  17. #15
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by ISmokeWeedAmICoolNow View Post
    i coded a full vip from scratch with a friend. you?

    im not raging at him, im trying to correct him but for some reason (ego?) he won't accept the facts.
    did u really? then y dont u make a couple pubs so people can tell that u actually do and so u can get soe moar posts. also whos this friend? they couldda done all the work...
    having a posting war with some1 kinda seems like ragin from both sides to me... and hes shown that he noes what hes talking about in the past. so atm i believe him. ofc i havent worked with classes yet so doesnt really matter to me. if u show that u no what ur talking about more people will listen to u.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Solved] Could not find main class error
    By Leon. in forum Minecraft Help
    Replies: 3
    Last Post: 08-10-2011, 01:13 AM
  2. [Question] Where can I find this specific sound?
    By rogue213 in forum Combat Arms Mod Discussion
    Replies: 6
    Last Post: 01-06-2010, 01:12 PM
  3. Guild Wars New Classes
    By Chronologix in forum General Gaming
    Replies: 24
    Last Post: 07-23-2006, 08:46 AM
  4. Where do i find WPE Pro?
    By Rileyman1211 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 01-16-2006, 09:52 AM
  5. [Tutorial]Change class without respawn
    By vir2000 in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 01-04-2006, 01:47 PM