วันพฤหัสบดีที่ 29 มีนาคม พ.ศ. 2561
กันโปรด้วยProcessของโปรแกรมเอาไปประยุคใช้ได้
กันโปรด้วยProcessของโปรแกรมเอาไปประยุคใช้ได้
//////////////////
ค้นหา
int win::ProcessSuspended()
------------------------
เพิ่มบนสุด
#include
#include
-------------------------
มองหา
int win::ProcessSuspended()
------------------------------------
แก้ไขตามนี้
int win::ProcessSuspended()
{
if(!bSuspended)
return FALSE;
MSG msg;
while(PeekMessage(&msg, NULL,0,0,PM_NOREMOVE))
{
if(!GetMessage (&msg, NULL, 0, 0))
return 1;
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return TRUE;
}
-----------------------------------
ค้นหา
void GetProcId(char* ProcName)
----------------------------------
แก้ไขตามนี้
void GetProcId(char* ProcName)
{
PROCESSENTRY32 pe32;
HANDLE hSnapshot = NULL;
pe32.dwSize = sizeof( PROCESSENTRY32 );
hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
if( Process32First( hSnapshot, &pe32 ) )
{
do{
if( strcmp( pe32.szExeFile, ProcName ) == 0 )
{
Sleep(5000); //ปรับเวลาหลุดของตัวเกมส์ได้
ExitProcess(0);
}
}while( Process32Next( hSnapshot, &pe32 ) );
}
if( hSnapshot != INVALID_HANDLE_VALUE )
CloseHandle( hSnapshot );
ProcId = pe32.th32ProcessID;
}
void ClasseCheckPross()
{
// Check the prosess name for me in this example is cheatengine.
// You can add a lot of name for the inject dll - cheat emulator ect....
GetProcId("cheatengine-x86_64.exe"); //เพิ่มProcess ของโปรแกรมโกงเกมส์ได้
}
----------------------------------
ค้นหา
game::PreInit();
---------------------
วาง
ClasseCheckPross();
******************************
บิ้วจบปิ้ง
Tanaphong Ket-in CD.
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
แต่กันเราไม่ได้ใช่มั้ยถ้าใช้โปร
ตอบลบ