Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    Anger5K's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    70
    My Mood
    Lurking

    Offsets , Addresses, Pointers - December Update - CFWest/NA


    Back
    Again


    Code:
    #define GlowAddr 0xB54DC0
    #define GlowThickness 0x7F97EC
    #define BasicPlayer 0x1566D50
    #define aCLTPlayerClient 0x1CD2300
    #define CLTPlayerClientOffset 0x80
    #define BunnyHop 0x1D1173C
    #define Weaponmgr 0x1701FC0
    #define PlayerView 0x1CD2338
    
    //////////////////////// ESP & AIM /////////////////
    #define aLTClientShell 0x1CCD950
    #define ILTClient 0x1CCD958
    #define aLTModel 0x1706A48
    #define dwCPlayerStart 0x204
    #define dwCPlayerSize 0xD88
    #define MEOffset 0x20C
    #define aIntersectSegment 0x699140
    //////////////////////// ESP & AIM /////////////////
    
    #define AntiSmoke 0x31ED51
    #define GameStatus 0x1756324
    #define ModlNod 0x17DAC5C
    #define Recoil1 0x5E8
    #define Recoil2 0x5F0
    #define Recoil3 0x6D8
    #define Recoil4 0x6E0
    #define FlyGravity 0xB04
    #define FlyGravityZM 0xA24
    #define FallDamageAddr 0x1701FA4
    #define FallDamageOffset 0x4
    
    ///////// Invisible ///////////////
    
    DWORD Mwait0 = 0x118C714;
    DWORD Mcidle = 0x120C2B4;
    DWORD Midle = 0x118BF34;
    DWORD Midle1 = 0x1299E50;
    DWORD Mrun = 0x118C360;
    DWORD MrunRside = 0x120C2C0;
    DWORD MrunLside = 0x120C2D8;
    DWORD MrunBside = 0x120C2CC;
    DWORD Mwalk = 0x118C70C;
    DWORD MwalkRside = 0x120C2E4;
    DWORD MwalkLside = 0x120C2F4;
    DWORD MwalkBside = 0x120C304;
    DWORD McwalkLside = 0x121D2EC;
    DWORD McwalkRside = 0x121D2DC;
    DWORD McwalkBside = 0x121D2CC;
    DWORD MJump = 0x11E016C;
    DWORD Mhit01 = 0x129FAC0;
    DWORD Mhit02 = 0x129FAB8;
    DWORD Mcwalk = 0x11F4C98;
    DWORD Midleup = 0x121CC74;
    DWORD midles = 0x11E0174;
    DWORD MSuperjump = 0x121D218;
    DWORD McSuperjump = 0x121CF9C;
    
    ///////// Invisible ///////////////
    Credit: AOE, @dreek1, @vaisefud3, @TheGe2k and Me , IDA PRO , x32dbg



    Last edited by Anger5K; 12-12-2020 at 02:34 AM.
    My Own Hack!!!



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

    antierror (01-22-2021),Diolegend. (12-12-2020)

  3. #2
    1526752446's Avatar
    Join Date
    Nov 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Unhappy How to crack x64 to run 32-bit games in corssfire PH

    How to crack x64 to run 32-bit games in corssfire PH

  4. #3
    winiciosrocha's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    2
    could you share some AOB if possible?

  5. #4
    MemoryThePast's Avatar
    Join Date
    Sep 2018
    Gender
    male
    Posts
    148
    Reputation
    10
    Thanks
    35
    My Mood
    Stressed
    Quote Originally Posted by 1526752446 View Post
    How to crack x64 to run 32-bit games in corssfire PH
    force the crossfire.exe to run in 32 bit mode
    Last edited by MemoryThePast; 12-17-2020 at 04:51 AM.

  6. #5
    Anger5K's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    70
    My Mood
    Lurking
    Quote Originally Posted by 1526752446 View Post
    How to crack x64 to run 32-bit games in corssfire PH
    just start crossfire.exe with -rez FFF you can do it with c++ or c# or vb.net
    become process crossfire.exe
    My Own Hack!!!



  7. #6
    qq963485005's Avatar
    Join Date
    Jul 2020
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    2

    Can it be used now to the latest version?

    Quote Originally Posted by MemoryThePast View Post
    force the crossfire.exe to run in 32 bit mode
    https://www.mpgh.net/forum/showthrea...ght=RemoteKill

    Can it be used now to the latest version?

  8. #7
    1526752446's Avatar
    Join Date
    Nov 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    hi

    Quote Originally Posted by MemoryThePast View Post
    force the crossfire.exe to run in 32 bit mode
    Can you say something more specific, or do you have something that you can share with me

  9. #8
    wtfboom97's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Anger5K View Post
    #define aIntersectSegment 0x699140
    Are you sure that address is accurate? I'm crashing with it when I join a match

    Code:
    typedef bool ( __cdecl* tIntersectSegment )( IntersectQuery* Query, IntersectInfo* pInfo );
    tIntersectSegment oIntersectSegment;
    
    __inline bool IsVisible ( D3DXVECTOR3 vStartPosition, D3DXVECTOR3 vEndPosition )
    {
    	oIntersectSegment = ( tIntersectSegment ) ( 0x699140 );
    
    	IntersectQuery iQuery;
    	IntersectInfo iInfo;
    
    	iQuery.From = vStartPosition;
    	iQuery.To = vEndPosition;
    
    	return !oIntersectSegment ( &iQuery, &iInfo );
    }
    Edit: Nvm, fixed it, my IntersectQuery and IntersectInfo structs were off.
    Last edited by wtfboom97; 12-28-2020 at 03:03 PM.

  10. #9
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by wtfboom97 View Post
    Are you sure that address is accurate? I'm crashing with it when I join a match

    Code:
    typedef bool ( __cdecl* tIntersectSegment )( IntersectQuery* Query, IntersectInfo* pInfo );
    tIntersectSegment oIntersectSegment;
    
    __inline bool IsVisible ( D3DXVECTOR3 vStartPosition, D3DXVECTOR3 vEndPosition )
    {
    	oIntersectSegment = ( tIntersectSegment ) ( 0x699140 );
    
    	IntersectQuery iQuery;
    	IntersectInfo iInfo;
    
    	iQuery.From = vStartPosition;
    	iQuery.To = vEndPosition;
    
    	return !oIntersectSegment ( &iQuery, &iInfo );
    }
    yeah, that happens...
    when you copy code you don't actually understand from the internet
    Press thanks if I helped

    Xigncode Security:


  11. #10
    wtfboom97's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by vaisefud3 View Post
    yeah, that happens...
    when you copy code you don't actually understand from the internet
    I've hacked Combat Arms that uses same Lithtech engine, I'm not "copying code". Like I said, I figured it out, my struct size for IntersectQuery was incorrect

  12. #11
    akbargain's Avatar
    Join Date
    Apr 2018
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    18
    what's the updated struct?
    Last edited by akbargain; 12-28-2020 at 07:45 PM.

  13. #12
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Quote Originally Posted by akbargain View Post
    what's the updated struct?
    https://******.com/jsj2008/lithtech/...c/ltbasedefs.h

    IntersectQuery & IntersectInfo class

    Code:
    bool __cdecl		ModelInstance::IsVisible(D3DXVECTOR3 pos1, D3DXVECTOR3 pos2)
    {
    	if (!this->IsValidBaseAddress())
    		return false;
    
    	IntersectQuery IQuery;
    	IntersectInfo IInfo;
    
    	memset(&IQuery, 0, sizeof(IntersectQuery));
    	memset)(&IInfo, 0, sizeof(IntersectInfo));
    
    	VEC_COPY(IQuery.m_From, pos1);
    	VEC_COPY(IQuery.m_To, pos2);
    
    	auto bVisible = !ilt_client->IntersectSegment(&IQuery, &IInfo);
    	if ((!bVisible) && (IInfo.m_hObject == this))
    		bVisible = true;
    
    	return bVisible;
    }
    bool __cdecl		ModelInstance::IsVisible()
    {
    	if (!this->IsValidBaseAddress())
    		return false;
    
    	auto camModel = g_pCShell->GetCameraObj();
    	if (camModel == NULL || !camModel->IsValidBaseAddress())
    		return false;
    
    	return this->IsVisible(camModel->GetPos());
    }
    bool __cdecl		ModelInstance::IsVisible(D3DXVECTOR3 src_pos)
    {
    	if (!this->IsValidBaseAddress())
    		return false;
    
    	return this->IsVisible(src_pos, this->GetPos());
    }
    
    bool				ILTClient::IntersectSegment(IntersectQuery* iQuery, IntersectInfo* Info)
    {
        typedef bool(__cdecl* fNIntersectSegment)(IntersectQuery*, IntersectInfo*);
        return GetVFunc<fNIntersectSegment>(this, t_IntersectSegment/*42 index*/)(iQuery, Info);
    }
    Last edited by jayjay153; 12-31-2020 at 08:07 AM.

  14. The Following User Says Thank You to jayjay153 For This Useful Post:

    akbargain (01-02-2021)

  15. #13
    Anger5K's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    70
    My Mood
    Lurking
    Offsets , Addresses, Pointers - January 2021 Update - CFWest/NA
    All Same Not thing changed
    My Own Hack!!!



  16. #14
    arhter.11's Avatar
    Join Date
    Oct 2020
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    Quote Originally Posted by Anger5K View Post
    Offsets , Addresses, Pointers - January 2021 Update - CFWest/NA
    All Same Not thing changed
    Bro Update Address please

  17. #15
    Anger5K's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    70
    My Mood
    Lurking
    Quote Originally Posted by arhter.11 View Post
    Bro Update Address please
    Are you stupid ??
    All Same Not thing changed
    My Own Hack!!!



  18. The Following User Says Thank You to Anger5K For This Useful Post:

    arhter.11 (01-13-2021)

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Offsets , Addresses, Pointers - November Update - CFWest/NA
    By Anger5K in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 02-17-2021, 04:38 AM
  2. [Release] Offsets , Addresses, Pointers - September Update - CFWest/NA
    By Anger5K in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 02-12-2021, 12:17 PM
  3. [Release] Offsets , Addresses, Pointers - October Update - CFWest/NA
    By Anger5K in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 11-21-2020, 06:00 PM
  4. [Release] Offsets , Addresses, Pointers - CF/PH
    By kelvinprosv in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 10-09-2020, 01:04 AM
  5. Offsets , Addresses, Pointers - July Update - CFWest/NA
    By TheGe2k in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 3
    Last Post: 07-10-2020, 05:04 AM