Help Help how i put this code
How do I put this code with the Hack to show a message when i do inject
Code:
BOOL APIENTRY DllMain( HMODULE hModule,DWORD ul_reason_for_call,LPVOID lpReserved )
{
if (ul_reason_for_call == DLL_PROCESS_ATTACH)
{
MessageBoxA(0, "Made by Sroor Hckrs team ", "Have Fun", 0);
CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0, 0);
// system("start
http://www.mpgh.net");
}
return TRUE;
}