OldSchoolHack

Registrieren / Anmelden Deutsch

GameHacking Tutorial Part 07

icon Thema: GameHacking Tutorial Part 07

Anmeldungsdatum: Apr 2009

Beiträge: 3

Also hat soeit alles mit ollybdg geklappt aber mit c++ gings nicht mehr hier mein Code:

TEXT Code:
  1.  
  2.  
  3. #include <cstdlib>
  4. #include <iostream>
  5. #include <windows.h>
  6.  
  7. using namespace std;
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11. HWND hl2 = NULL;
  12. byte flash[5] = { 0xE9, 0x5E, 0x04, 0x00, 0x00 };
  13. cout << "CSS NoFlash - by chea77er\n Wait for hl2.exe";
  14.  
  15. while(hl2 == NULL)
  16. {
  17. hl2 = FindWindow(NULL, "Counter-Strike Source");
  18. Sleep(200);
  19. }
  20.  
  21. DWORD prozessid; GetWindowThreadProcessId(hl2, &prozessid);
  22. HANDLE handleprozess; handleprozess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, prozessid);
  23.  
  24. DWORD puffer = NULL;
  25. WriteProcessMemory(handleprozess,(void*)(0x241D0D6D),&flash,sizeof(flash),&puffer); // No Flash
  26.  
  27. CloseHandle(handleprozess);
  28.  
  29. system("PAUSE");
  30. return EXIT_SUCCESS;
  31. }
  32.