Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <iostream>
- #include <cstdio>
- #include <stdio.h>
- using namespace std;
- int main()
- {
- SetConsoleTitle("Merry Christmas - OrangePL 1.4.368");
- /* KS STUFF */
- BYTE ac130data[]={0x12};
- BYTE ospreydata[]={0x0F};
- BYTE juggdata[]={0x10};
- /* this defines their size */
- DWORD ac130datasize = sizeof(ac130data);
- DWORD juggdatasize = sizeof(juggdata);
- DWORD ospreydatasize = sizeof(ospreydata);
- /* END OF SIZE AND DEFINES */
- HWND hwnd;
- HANDLE phandle;
- DWORD pid;
- hwnd = FindWindow(NULL, "Call of Duty®: Modern Warfare® 3 Multiplayer");
- if (hwnd != 0) {
- GetWindowThreadProcessId(hwnd, &pid);
- phandle = OpenProcess(PROCESS_ALL_ACCESS, 0, pid);
- cout <<"Private killstreak exploit tool by OrangePL , www.itsmods.com"<<endl;
- cout <<"This will set your killstreak at first class to Juggernaut, AC130 and Osprey."<<endl;
- cout << "Process found. Press any key to do some hax magic. "<<endl;
- } else {
- cout << "Could not find the window. Launch MW3 and re-open the application.";
- std::getchar();
- return 0;
- }
- if(phandle != 0 )
- { std::getchar();
- WriteProcessMemory(phandle, (LPVOID)0x1CCF7B1, &ac130data, ac130datasize, NULL);
- cout<< "AC130 OK"<<endl;
- WriteProcessMemory(phandle, (LPVOID)0x1CCF7B3, &juggdata, juggdatasize, NULL);
- cout <<"JUGGERNAUT OK"<<endl;
- WriteProcessMemory(phandle, (LPVOID)0x1CCF7B5, &ospreydata, ospreydatasize, NULL);
- cout <<"OSPREY OK"<<endl;
- cout <<"Merry Christmas all ItsModders ! :)"<<endl;
- }
- std::getchar();
- }
Advertisement
Add Comment
Please, Sign In to add comment