Page 1 of 10 123 ... LastLast
Results 1 to 15 of 145
  1. #1
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold

    [Release] Client_Info (Enemyclass) with the basics for a OPK and ESP!

    Most of you guys thinks that the enemyptr still exists which it never has.. Therefore im going to give you this class which with alot of help from FatBoy i could manage to get.

    Class:

    Code:
    PlayerInfo = *(DWORD*)0x3715D9A0; //Can't test as i does'nt have CA
    or
    PointerTo = *(DWORD*)0x3715D9A0; //Can't test as i does'nt have CA
    
    class PointerTo
    {
    public:
    	char pad[4];
    	PlayerInfo * first;
        __int32 index;
    
    };
    
    
    class PlayerInfo
    {
    public:
    	
        __int32 Unknown0; //0000
    	__int32 index; //0004
    	__int32 Unknown2; //0008
    	__int32 Unknown3; //000C
    	char Name[12]; //0010
    	char unknown5[12];
    	_Object* obj; //0028
    	char unknown7[76];
    	__int8 IsDead; //0078
    	__int8 Unknown9; //0079
    	__int16 Unknown10; //007A
    	char unknown11[488];
    	PlayerInfo* Next; //0264
    };
    
    
    
    class _Object
    {
    public:
    	char Pad[4];
    	D3DXVECTOR3 origin;
    };

    To use:

    Code:
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;



    Can someone confirm this as i dont have CA.
    Last edited by Mr.Magicman; 10-26-2010 at 11:22 AM.

  2. The Following 5 Users Say Thank You to Mr.Magicman For This Useful Post:

    Ali (10-28-2010),dude117 (10-27-2010),Nubzgetkillz (11-07-2010),RagedYet (10-27-2010),swatfx (10-27-2010)

  3. #2
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    you are stupid /

    jk

  4. #3
    T0y's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    25
    PointerTo = *(DWORD*)0x377CF260;
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;

    it gives errors.

    obj or _Object?
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;

    you forgot:
    class PointerTo;
    class PlayerInfo;
    class _Object;

  5. #4
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    Quote Originally Posted by T0y View Post
    PointerTo = *(DWORD*)0x377CF260;
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;

    it gives errors.

    obj or _Object?
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;

    you forgot:
    class PointerTo;
    class PlayerInfo;
    class _Object;
    no he didn't they are all there

    but ya it would be
    Code:
    int PlayerPos = PointerTo->PlayerInfo->_Object->origin.x;

  6. #5
    T0y's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    25
    Code:
    int PlayerPos = PointerTo->PlayerInfo->_Object->origin.x;
    this one for opk? i dont think this for esp.

    a bit clueless how to make it works haha.

    oh shit i forgot i can use this with DrawHealthbar.
    Last edited by T0y; 10-26-2010 at 11:04 AM.

  7. #6
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by Mr.Magicman View Post

    Code:
    PlayerInfo = *(DWORD*)0x377CF260; //Can't test as i does'nt have CA
    or
    PointerTo = *(DWORD*)0x377CF260; //Can't test as i does'nt have CA
    
    class PointerTo
    {
    public:
    	char pad[4];
    	PlayerInfo * first;
        __int32 index;
    
    };
    
    
    class PlayerInfo
    {
    public:
    	
        __int32 Unknown0; //0000
    	__int32 index; //0004
    	__int32 Unknown2; //0008
    	__int32 Unknown3; //000C
    	char Name[12]; //0010
    	char unknown5[12];
    	_Object* obj; //0028
    	char unknown7[76];
    	__int8 IsDead; //0078
    	__int8 Unknown9; //0079
    	__int16 Unknown10; //007A
    	char unknown11[488];
    	PlayerInfo* Next; //0264
    };
    
    
    
    class _Object
    {
    public:
    	char Pad[4];
    	D3DXVECTOR3 origin;
    };

    To use:

    Code:
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;

    he have the class _Object and defined it in the class with obj where is the problem?


    EDIT:
    i think the address is wrong
    current NA CShell:
    Last edited by kotentopf; 10-26-2010 at 11:06 AM.
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

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

    qwerty01 (11-06-2010)

  9. #7
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    Quote Originally Posted by kotentopf View Post
    he have the class _Object and defined it in the class with obj where is the problem?
    your right i didn't see that

  10. #8
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by swatfx View Post
    your right i didn't see that
    Code:
    int PlayerPos = PointerTo->PlayerInfo->obj->origin.x;
    but here is still an error
    the PlayerInfo-> is wrong
    the right function is first->
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  11. #9
    T0y's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    25
    int PlayerPos = PointerTo->first->obj->origin.x; ?

  12. #10
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by T0y View Post
    int PlayerPos = PointerTo->first->obj->origin.x; ?
    Code:
    PlayerInfo = *(DWORD*)0x377CF260; //Can't test as i does'nt have CA
    or
    PointerTo = *(DWORD*)0x377CF260; //Can't test as i does'nt have CA
    
    class PointerTo
    {
    public:
    	char pad[4];
    	PlayerInfo * first;
        __int32 index;
    
    };
    class pointer

    so yes its right
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  13. #11
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Sorry took an old PTR let me renew it!

    Updated with: 0x3715D9A0

  14. #12
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    He Malte, I love you

  15. #13
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Quote Originally Posted by Stephen View Post
    He Malte, I love you
    I lub you too : 3

  16. #14
    T0y's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    25
    Quote Originally Posted by Stephen View Post
    He Malte, I love you
    Quote Originally Posted by Mr.Magicman View Post


    I lub you too : 3
    you so gay ... /

  17. #15
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Quote Originally Posted by T0y View Post
    you so gay ... /
    And your a homophobe

Page 1 of 10 123 ... LastLast

Similar Threads

  1. dBased Help me with the update for automaton!
    By deton3000 in forum Mission Against Terror Discussions
    Replies: 3
    Last Post: 02-03-2011, 10:43 AM
  2. Help with Alteriw console for score limit and time lomit
    By r3dcomet in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 08-26-2010, 05:48 PM
  3. i need help with the plugin for Photoshop
    By junny2233 in forum Combat Arms Mod Discussion
    Replies: 8
    Last Post: 08-05-2010, 04:39 AM
  4. Does any got the addies for no recoil and no reload ???
    By EDWINSEE in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 07-20-2010, 04:51 PM