#include <windows.h>
#include <process.h>
#include <iostream>
#include "hack1.h"
bool ready = true;
UINT WINAPI divinorum (LPVOID)
{
while (ready)//You can use this if you want to make a 'master key'
{
hack1();
Sleep(500);
}
return true;
}
BOOL WINAPI DllMain(HMODULE hDLL, DWORD dwReason, LPVOID lpvRe)
{
DisableThreadLibraryCalls(hDLL);
if(dwReason == DLL_PROCESS_ATTACH)
{
MessageBox(NULL, L"Visit MPGH.net!", L"Divinorum's base", MB_OK);
_beginthreadex(0,0,divinorum,0,0,0);
}
return true;
}
void hack1()
{
//Hack here
}
