This is my PART 2 of needing HELP CFPH code Hack,now I've change the code But-----

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Fearless Black Market Mercenary
Onaylı Üye
Katılım
22 Tem 2021
Mesajlar
69
Çözümler
4
Tepki puanı
3
Yaş
26
4 HİZMET YILI
Kod:
#include <windows.h>
#include <ios>
#include <iostream>   
using namespace std;

//CShell_x64.dll + 97D76 - 48 3D B3779701 - mov rdi, [CShell_x64.dll + 1A0F530] {(0)} <====ADDRESS
//CShell_x64.dll + 97D7D - F3 0F11 4C 3E 38 - movss[rsi + rdi + 38], xmm1 <======Offset X
//CShell_x64.dll + 97D83 - F3 0F11 4C 3E 3C - movss[rsi + rdi + 3C], xmm1 <======Offset Y
//CShell_x64.dll + 97D89 - F3 0F11 4C 3E 40 - movss[rsi + rdi + 40], xmm1 <======Offset Z

//CShell_x64.dll + 5E5291 - 88 15 C1A74201 - mov edx, [CShell_64.dll + 1A0FA58] {(0)}

int GameStatus;

float Bacup [31];


bool a_backup;

void Engine()
{
   while (1)
   {
         DWORD64 CShell = (DWORD64) GetModuleHandleA ("CShell_64.dll");  // Get Module CShell x64
         if (CShell)
       {
             GameStatus = *(int*) (CShell + 0x1A0FA58);
              DWORD64 a____ModuleNode = *(DWORD64*)(CShell + 0x1A0F530);
             if(a____ModuleNode)
            {
               if (!a_backup)
                {
                for (int x = 0; x < 31; x++)
                      Bacup[x] = *(float*)(a____ModuleNode + 0x38 + (x * 0x9C));
                  a_backup = true;
                }
               else if (a_backup)
                {
                    if (GameStatus == 11)
                    {
                      for (int x = 0; x < 31; x++)
                       {
                         for (int y = 0; y < 3; y++)
                           {
                            
                              *(float*)(a____ModuleNode + 0x38 + (y * 4 ) + (x * 0x9C)) = 150; // size SUPERKILL big or small depends on here... for example 150
                            }
                            
                        }
                    }
                        
                }
                       else if (GameStatus != 11)
                       {
                             for (int x = 0; x < 31; x++)
                                   for (int y = 0; y < 3; y++)
                                      *(float*)(a____ModuleNode + 0x38 +  (y * 4) + ( x *0x9C)) = Bacup[x];
                       }

                          
            }
              
              
        } 
    }
            
    Sleep(50);
}
  


   BOOL APIENTRY DllMain(HMODULE hModule,
                         DWORD ul_reason_for_call,
                          LPVOID lpReserved
                         )

{
  switch (ul_reason_for_call)
    {
       case DLL_PROCESS_ATTACH:
           MessageBoxA(0,"Code By JDaniel","JD Private hack",MB_OK);
           CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Engine, 0 , 0, 0);
      case DLL_THREAD_ATTACH:
      case DLL_THREAD_DETACH:
      case DLL_PROCESS_DETACH:
           break;
     }

     return TRUE;

}
 

Ekli dosyalar

  • Untitled.png
    Untitled.png
    34.8 KB · Görüntüleme: 104
Seçkin Üye
Katılım
14 Şub 2020
Mesajlar
307
Çözümler
5
Tepki puanı
68
Ödüller
6
6 HİZMET YILI
I guess you should DM to one of the admin's of this site. They might help you.
 
Amateur Programmer
Onaylı Üye
Katılım
11 Haz 2018
Mesajlar
59
Çözümler
1
Tepki puanı
4
Ödüller
5
Yaş
35
7 HİZMET YILI
This might help you.
Bağlantıları görmek için lütfen Giriş Yap
 
Onaylı Üye
Katılım
30 Haz 2021
Mesajlar
59
Çözümler
1
Tepki puanı
2
Yaş
26
4 HİZMET YILI
What is happening to my life, I am an IT student and I can't do anything right XD
 
Seçkin Üye
Katılım
17 May 2020
Mesajlar
310
Çözümler
7
Tepki puanı
46
Ödüller
6
6 HİZMET YILI
bro go to site name unknowncheats search for it google there much programer there will help u lot
 
a simple Russian man who helps people
Uzman Üye
Katılım
16 Ağu 2020
Mesajlar
195
Çözümler
2
Tepki puanı
8
Ödüller
5
Yaş
26
5 HİZMET YILI
Thank you very much for helping
 
Onaylı Üye
Katılım
8 Nis 2018
Mesajlar
104
Tepki puanı
18
Ödüller
7
8 HİZMET YILI
Kod:
#include <windows.h>
#include <ios>
#include <iostream>  
using namespace std;

//CShell_x64.dll + 97D76 - 48 3D B3779701 - mov rdi, [CShell_x64.dll + 1A0F530] {(0)} <====ADDRESS
//CShell_x64.dll + 97D7D - F3 0F11 4C 3E 38 - movss[rsi + rdi + 38], xmm1 <======Offset X
//CShell_x64.dll + 97D83 - F3 0F11 4C 3E 3C - movss[rsi + rdi + 3C], xmm1 <======Offset Y
//CShell_x64.dll + 97D89 - F3 0F11 4C 3E 40 - movss[rsi + rdi + 40], xmm1 <======Offset Z

//CShell_x64.dll + 5E5291 - 88 15 C1A74201 - mov edx, [CShell_64.dll + 1A0FA58] {(0)}

int GameStatus;

float Bacup [31];


bool a_backup;

void Engine()
{
   while (1)
   {
         DWORD64 CShell = (DWORD64) GetModuleHandleA ("CShell_64.dll");  // Get Module CShell x64
         if (CShell)
       {
             GameStatus = *(int*) (CShell + 0x1A0FA58);
              DWORD64 a____ModuleNode = *(DWORD64*)(CShell + 0x1A0F530);
             if(a____ModuleNode)
            {
               if (!a_backup)
                {
                for (int x = 0; x < 31; x++)
                      Bacup[x] = *(float*)(a____ModuleNode + 0x38 + (x * 0x9C));
                  a_backup = true;
                }
               else if (a_backup)
                {
                    if (GameStatus == 11)
                    {
                      for (int x = 0; x < 31; x++)
                       {
                         for (int y = 0; y < 3; y++)
                           {
                           
                              *(float*)(a____ModuleNode + 0x38 + (y * 4 ) + (x * 0x9C)) = 150; // size SUPERKILL big or small depends on here... for example 150
                            }
                           
                        }
                    }
                       
                }
                       else if (GameStatus != 11)
                       {
                             for (int x = 0; x < 31; x++)
                                   for (int y = 0; y < 3; y++)
                                      *(float*)(a____ModuleNode + 0x38 +  (y * 4) + ( x *0x9C)) = Bacup[x];
                       }

                         
            }
             
             
        }
    }
           
    Sleep(50);
}
 


   BOOL APIENTRY DllMain(HMODULE hModule,
                         DWORD ul_reason_for_call,
                          LPVOID lpReserved
                         )

{
  switch (ul_reason_for_call)
    {
       case DLL_PROCESS_ATTACH:
           MessageBoxA(0,"Code By JDaniel","JD Private hack",MB_OK);
           CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Engine, 0 , 0, 0);
      case DLL_THREAD_ATTACH:
      case DLL_THREAD_DETACH:
      case DLL_PROCESS_DETACH:
           break;
     }

     return TRUE;

}

You just need to compile it with Visual Studio 2019.
All error will be solve
 
Onaylı Üye
Katılım
5 Kas 2021
Mesajlar
70
Çözümler
1
Tepki puanı
4
Ödüller
1
Yaş
27
4 HİZMET YILI
The Dev-C++ is freaking complicated to use. Just compile those code with visual studio
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst