Results 1 to 8 of 8
  1. #1
    EGOIST0162's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    4
    My Mood
    Yeehaw

    Fly Hack help in finding missing Adresses

    Can someone help me find the Right Adresses for GravityZ and LTPlayerClient if its not up to date ?



    #define LTPlayerClient 0x17C67A0 // Might be Up to date..
    #define GravityZ 0x00 //Missing This
    Last edited by EGOIST0162; 04-22-2020 at 12:41 AM.

  2. #2
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Quote Originally Posted by EGOIST0162 View Post
    Can someone help me find the Right Adresses for GravityZ and LTPlayerClient if its not up to date ?

    Code:
    #define LTPlayerClient 0x17C67A0 // Might be Up to date..
    #define GravityZ 0x00 //Missing This
    
    DWORD pCLTPlayerClient = *(DWORD*)((LTPlayerClient)+LTPlayerClient);
    
    
    				if (GetAsyncKeyState(VK_F11) & 1)
    				{
    					//=======================[Fly Hack ON]============================//
    
    					
    					if (pCLTPlayerClient)
    					{
    						old = *(float*)(pCLTPlayerClient + GravityZ);
    						*(float*)(pCLTPlayerClient + GravityZ) = -2.125f;
    
    					}
    
    				}
    Code:
    GravityPvp = 0xAAC 10 87 ?? ?? ?? ?? F3 0F 59 05 ?? ?? ?? ?? F3 0F 59 45 18 
    GravityZM =  0x9CC 10 87 ?? ?? ?? ?? F3 0F 59 05 ?? ?? ?? ?? F3 0F 59 45 18
    altcleintshell = 0x1AB09B0   8B 0D ?? ?? ?? ?? 3A C3 6A ?? 68 ?? ?? ?? ?? 8D 45 EC
    [Pubg Private Cheats]

    [Cf Private Cheats]


    [Combat Arms Cheats]
    Await.

  3. The Following User Says Thank You to (Virus) For This Useful Post:

    EGOIST0162 (04-22-2020)

  4. #3
    EGOIST0162's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    4
    My Mood
    Yeehaw
    I get a crossfire Cash when i run this:
    DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
    Can somebody tell me why ?

  5. #4
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Quote Originally Posted by EGOIST0162 View Post
    I get a crossfire Cash when i run this:
    DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
    Can somebody tell me why ?
    Code:
    DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + 0x78)/*Offset_LTPlayerClient)*/;
    [Pubg Private Cheats]

    [Cf Private Cheats]


    [Combat Arms Cheats]
    Await.

  6. The Following User Says Thank You to (Virus) For This Useful Post:

    EGOIST0162 (04-23-2020)

  7. #5
    EGOIST0162's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    4
    My Mood
    Yeehaw
    Still getting game Crash: Do you want to report error?

    Im using this source:

    Code:
    #define LTPlayerClient 0x1AB09B0
    #define GravityZ 0xAAC
    
    DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + 0x78)/*Offset_LTPlayerClient)*/;
    
    
    				if (GetAsyncKeyState(VK_F11) & 1)
    				{
    					//=======================[Fly Hack ON]============================//
    
    					
    					if (pCLTPlayerClient)
    					{
    						old = *(float*)(pCLTPlayerClient + GravityZ);
    						*(float*)(pCLTPlayerClient + GravityZ) = -2.125f;
    
    					}
    
    				}
    Thanks for Contributing @[Snake] but i am not used to this coding style with fancy classes.
    €dit: Tryed your code Snake but i cant seem to fly but at least no game crashes ...
    Last edited by EGOIST0162; 04-23-2020 at 01:45 PM.

  8. #6
    iknowitsfake26's Avatar
    Join Date
    Dec 2017
    Gender
    male
    Posts
    179
    Reputation
    10
    Thanks
    5
    My Mood
    Aggressive
    Code:
    #define PlayerClientAddress 0x000000 //3D ?? ?? ?? ?? 7C EE A1 // Update the addr by yourself search this pattern 
    #define PlayerClientOffset 0x7C	// 8B 4B ?? 85 C9 74 ?? 8B 01 FF 90
    
    void Init_Hacks(void)
    {
            if (!InGame()) return; // you should check it on InGame to prevent the errors in loading screen or in not InGame
    	DWORD CShell_Module = (DWORD)GetModuleHandle("CShell.dll");
    	if (CShell_Module == NULL) return;
    	DWORD PlayerClient_Fly = *(DWORD*)(CShell_Module + PlayerClientAddress + PlayerClientOffset);
    	if (PlayerClient_Fly != NULL)
    	{
    		if (GetAsyncKeyState(VK_SPACE)) // press space to fly
    		{
    			*(float*)(PlayerClient_Fly + 0xAAC) = -2.125f;
    		}
    		else
    		{
    			*(float*)(PlayerClient_Fly + 0xAAC) = 1.0f; // 1.0f is the default value try to log it
    		}
    	}
    }
    note: if still give error maybe there is something mistake on your code and this offset only works on old mode so if you try it on new mode it will give send error, if you want to prevent it just make 2 variables or just check it on gametype.
    Last edited by iknowitsfake26; 04-25-2020 at 03:44 AM.

  9. The Following User Says Thank You to iknowitsfake26 For This Useful Post:

    EGOIST0162 (05-05-2020)

  10. #7
    EGOIST0162's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    4
    My Mood
    Yeehaw
    I found the flaw now it works thanks you all for Contributing to my post. #closerequest

  11. #8
    TheAnger2's Avatar
    Join Date
    Apr 2020
    Gender
    male
    Location
    https://forum.guncheats.com/
    Posts
    2
    Reputation
    10
    Thanks
    1

    Fly All Maap

    Quote Originally Posted by EGOIST0162 View Post
    I get a crossfire Cash when i run this:
    DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
    Can somebody tell me why ?
    Fly Hack All Maap - Last updated - May 2020



    //Credit Anger [Here]


    #define FlyGravity 0xAAC
    #define FlyGravityAI 0x9CC
    void FlyHack(void)
    {
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD PlayerClient = *(DWORD*)(CShell + 0x1B18DD8 + 0x78 );

    if(PlayerClient !=NULL)
    {
    // Fly

    if (GetAsyncKeyState(VK_SPACE) && 1)
    {

    if (*(DWORD*)( PlayerClient + FlyGravityAI + 0xC ) == 0)
    {

    *(float*)(PlayerClient + FlyGravity) = -3.125f;
    }
    else
    {
    *(float*)(PlayerClient + FlyGravityAI) = -3.125f;
    }

    }
    else
    {
    if (*(DWORD*)( PlayerClient + FlyGravityAI + 0xC ) == 0)
    {
    *(float*)(PlayerClient + FlyGravity) = 1.0f;
    }
    else
    {
    *(float*)(PlayerClient + FlyGravityAI) = 1.0f;
    }
    }
    }
    }

    Last edited by TheAnger2; 05-27-2020 at 11:06 PM.

  12. The Following User Says Thank You to TheAnger2 For This Useful Post:

    Anger5K (06-01-2020)

Similar Threads

  1. Need help finding a King Arthurs gold teleport or fly hack
    By 1chidori1 in forum General Game Hacking
    Replies: 0
    Last Post: 10-27-2013, 01:42 AM
  2. [Help Request] help on fly hack for g force
    By arsenal1514 in forum CrossFire Help
    Replies: 7
    Last Post: 07-10-2011, 06:55 PM
  3. [Help] Help i need to find a public opk and fly hack with bypass
    By mccombietommm in forum Combat Arms Glitches
    Replies: 14
    Last Post: 05-05-2010, 07:07 PM
  4. Help i need to find a public telekill and fly hack with bypass
    By mccombietommm in forum Combat Arms Help
    Replies: 5
    Last Post: 05-04-2010, 08:52 PM
  5. Fly hack / Help
    By mysterieux in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 12-30-2008, 08:30 AM