Thread: CA Haxo Base

Page 3 of 3 FirstFirst 123
Results 31 to 45 of 45
  1. #31
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by mikethemak View Post
    How does

    Code:
    bool cSettings::InGame()
    {
    	return(*(BYTE*)GameStatus == 1);
    }
    Work? Whenever i do something like

    Code:
    IF (not in game)
    //Reset menu values
    Basically, I'm trying to find a way to work around the fact that it crashes the game if you enter a game with the hacks on, is this the right way to approach it? Because whenever I use the statement "If (!Settings.InGame())" that reads true ALWAYS, so using it makes the menu reset constantly. How do i go about making it so the hacks wont crash the game if i enter a game with some on? Am i doing it wrong?

    @mo3ad001
    make it so the game status of not being on makes all the hacks go off so you can turn them on in lobby and go ingame is when they really turn on.

  2. #32
    mikethemak's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    208
    Quote Originally Posted by teehee15 View Post
    make it so the game status of not being on makes all the hacks go off so you can turn them on in lobby and go ingame is when they really turn on.
    Is that the correct code though? And is this the correct addy?
    Code:
    0x377B2190

    So you mean do something like:

    Code:
    if((*(BYTE *)GameStatus == 1) && recoil)
    //do no recoil
    correct?

  3. #33
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by mikethemak View Post
    Is that the correct code though? And is this the correct addy?
    Code:
    0x377B2190

    So you mean do something like:

    Code:
    if((*(BYTE *)GameStatus == 1) && recoil)
    //do no recoil
    correct?
    i sent you a vm with the one i use... put the hax inbetween the first break; and the default; the addy is just gamestatus and i think if your giving me that one you might be EU and i dont have EU addies.

  4. The Following User Says Thank You to teehee15 For This Useful Post:

    mikethemak (04-09-2012)

  5. #34
    mikethemak's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    208
    Quote Originally Posted by teehee15 View Post
    i sent you a vm with the one i use... put the hax inbetween the first break; and the default; the addy is just gamestatus and i think if your giving me that one you might be EU and i dont have EU addies.

    So for example:
    Code:
    if(NORECOIL_ACTIVE)
    
    switch(*(int*)GameStatus){
    case 1://in game
    break;
    //////////////////
    // Do no recoil code here?
    /////////////////
    
    default://loading game
    break;
    I'm not on EU, I need the NA code but I don't have the slightest clue how to find it? How do I get that?


    @teehee15

  6. #35
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by mikethemak View Post
    So for example:
    Code:
    if(NORECOIL_ACTIVE)
    
    switch(*(int*)GameStatus){
    case 1://in game
    break;
    //////////////////
    // Do no recoil code here?
    /////////////////
    
    default://loading game
    break;
    I'm not on EU, I need the NA code but I don't have the slightest clue how to find it? How do I get that?
    noes like
    switch(*(int*)GameStatus){
    case 1:
    //hack here
    break;
    default:
    //off addies for the hack i.e.
    memcpy((PBYTE) Findaddyelsewhere, (PBYTE)"bytesalso", 2); //Rapid Fire Off
    break;

    and add me on msn: danny1098222 @yahoo. com
    Last edited by teehee15; 04-09-2012 at 07:29 PM.

  7. The Following User Says Thank You to teehee15 For This Useful Post:

    mikethemak (04-09-2012)

  8. #36
    mikethemak's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    208
    Quote Originally Posted by teehee15 View Post
    noes like
    switch(*(int*)GameStatus){
    case 1:
    //hack here
    break;
    default:
    //off addies for the hack i.e.
    memcpy((PBYTE) Findaddyelsewhere, (PBYTE)"bytesalso", 2); //Rapid Fire Off
    break;

    and add me on msn: danny1098222 @yahoo. com
    Ahh ok I see. What is the current GameStatus for the NA client?


    Added you on msn, but just be forewarned I don't use it a lot anymore lol. Havn't been on it in ages. @teehee15
    Last edited by mikethemak; 04-09-2012 at 07:42 PM.

  9. #37
    teehee15's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    329
    Reputation
    52
    Thanks
    109
    Quote Originally Posted by mikethemak View Post
    Ahh ok I see. What is the current GameStatus for the NA client?


    Added you on msn, but just be forewarned I don't use it a lot anymore lol. Havn't been on it in ages. @teehee15
    0x377F5E9C i think

  10. The Following User Says Thank You to teehee15 For This Useful Post:

    mikethemak (04-09-2012)

  11. #38
    mikethemak's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    208
    Quote Originally Posted by teehee15 View Post
    0x377F5E9C i think
    Ahh got it working! Thank you much! I don't suppose you could go to https://www.mpgh.net/forum/334-combat...questions.html and answer my other couple noob questions for me? It would be a huge help . Sorry, very new to the whole hack coding business, done a lot with c++ and assembly, but mainly only college work.

    I've got to step out for a bit, but if you could help that would be awesome.


    @teehee15

  12. #39
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    for people how dont understand how hack function works !
    this an example about super bullets !

    Code:
    void cHacks::hSuperBullets(int Flag)// Normal Function with some parameter
    {
    	if(Flag) // if is on do Patch
    		Tools.PatchMemory((PBYTE)Addresses.Address[SuperBullet].Value ,(PBYTE)"\x33\xC0\x90", 3);
    	else // not rest it
    		Tools.PatchMemory((PBYTE)Addresses.Address[SuperBullet].Value,(PBYTE)"\x0F\x94\xC0", 3 );
    }

    now im calling it in doMemory Function as you see

    [HTML]void cHacks:oMemory(bool Flag)// again normal Function with some parameter this parameter will be gamestatus
    {
    if(Flag)
    {
    Hacks.hSuperBullets(Menu.mOpt[2][4].noptv /* If you see here its menu val if its on ....or not ...*/);
    Hacks.....
    }else
    { // lol i notice that i can make it in another way like

    Hacks.hSuperBullets(0);// im calling superbuttels function with zero parameter so its gonna make it off
    //Tools.PatchMemory((PBYTE)Addresses.Address[SuperBullet].Value,(PBYTE)"\x0F\x94\xC0", 3 ); and this is the old way
    }
    }[/HTML]

    i hope you understand now how it work

    and for people how ask about game status , the function is ok ( afffffffff) just check out ur address , and call all you memoryHacks in you render as
    [HTML]
    .....Render
    DoMemory(Settings.InGame()); // This will be more easy than wat u r doing
    [/HTML]
    Last edited by mo3ad001; 04-10-2012 at 05:33 AM.

    H A X O
    Email : Noobmem@hotmail.com


  13. #40
    pDevice's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    d3d9.h
    Posts
    1,306
    Reputation
    15
    Thanks
    420
    My Mood
    Stressed
    Quote Originally Posted by ~Killua~ View Post
    hey people in this part of code say that _tcsncpy and _T is undefined anybody can help me?


    CD3DFont::CD3DFont( const TCHAR* strFontName, DWORD dwHeight, DWORD dwFlags )
    {

    _tcsncpy( m_strFontName, strFontName, sizeof(m_strFontName) / sizeof(TCHAR) );
    m_strFontName[sizeof(m_strFontName) / sizeof(TCHAR) - 1] = _T('\0');
    m_dwFontHeight = dwHeight;
    m_dwFontFlags = dwFlags;
    m_dwSpacing = 0;

    m_pd3dDevice = NULL;
    m_pTexture = NULL;
    m_pVB = NULL;

    m_pStateBlockSaved = NULL;
    m_pStateBlockDrawText = NULL;
    }
    includes the following libraries:

    #include <stdio.h>
    #include <tchar.h>
    #include <d3dx9.h>



  14. #41
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by CAFlames View Post


    Okay. I used these and I still d/c .. hmm Ill have to look at that. Alright.

    And yeah, I have been studying alot too haha
    You can deal with it

    H A X O
    Email : Noobmem@hotmail.com


  15. #42
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    Quote Originally Posted by CookieMonster™ View Post
    Looks
    Wish it was into a project not separate files but good.
    why do you complain? it will take about 30 seconds to put it in a project. or just play the game legit. dam...

    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 =

  16. #43
    CookieMonster™'s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Engine.exe
    Posts
    263
    Reputation
    31
    Thanks
    137
    My Mood
    Yeehaw
    @speedforyou
    I've had it done.
    Don't reply to old posts.
    read the rules.

  17. #44
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    Quote Originally Posted by CookieMonster™ View Post
    @speedforyou
    I've had it done.
    Don't reply to old posts.
    read the rules.
    i can reply to anything. as long as i dont bump. cough 1 week. sit down bro.
    Last edited by speedforyou; 04-14-2012 at 11:12 AM.

    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 =

  18. #45
    wraithkilla's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    257
    Reputation
    10
    Thanks
    905
    My Mood
    Busy
    Epic base dude , good work , works like a charm

Page 3 of 3 FirstFirst 123

Similar Threads

  1. MPGH HAXO HotKey Base
    By mo3ad001 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 15
    Last Post: 11-18-2010, 01:00 PM
  2. Java based multiplayer games
    By Tops in forum Hack Requests
    Replies: 8
    Last Post: 03-13-2008, 11:28 PM
  3. How to may spawn on all bases
    By Naeron in forum WarRock - International Hacks
    Replies: 8
    Last Post: 05-13-2007, 07:44 PM
  4. Spawn on enemy base
    By analog70 in forum WarRock - International Hacks
    Replies: 36
    Last Post: 03-18-2007, 04:17 AM
  5. Web-based game hacking..
    By Krilliam in forum General Game Hacking
    Replies: 7
    Last Post: 02-20-2006, 01:12 PM