in c++
MessageBoxA (0, "Your Text Here","Tittle Here",0); Sample : MessageBoxA (0, " The Best Site Multiplayer Game Hacking \n http://MPGH.net","INJECTED",0); use "\n" for make new line




BOOL WINAPI DllMain ( HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved )
{
if (dwReason == DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hDll);
MessageBoxA (0,"Hack Injected","Ups.....",0); // This message box before call hack
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HackThread, hDll, NULL, NULL);
}
return TRUE;
}
