Join Date: Apr 2009
Posts: 3
|
Also hat soeit alles mit ollybdg geklappt aber mit c++ gings nicht mehr hier mein Code:
TEXT Code: #include <cstdlib> #include <iostream> #include <windows.h> using namespace std; int main(int argc, char *argv[]) { HWND hl2 = NULL; byte flash[5] = { 0xE9, 0x5E, 0x04, 0x00, 0x00 }; cout << "CSS NoFlash - by chea77er\n Wait for hl2.exe"; while(hl2 == NULL) { hl2 = FindWindow(NULL, "Counter-Strike Source"); Sleep(200); } DWORD prozessid; GetWindowThreadProcessId(hl2, &prozessid); HANDLE handleprozess; handleprozess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, prozessid); DWORD puffer = NULL; WriteProcessMemory(handleprozess,(void*)(0x241D0D6D),&flash,sizeof(flash),&puffer); // No Flash CloseHandle(handleprozess); system("PAUSE"); return EXIT_SUCCESS; }
|