Well i never updated my source to 5/26 cause there was no need really. Just the fact that they changed it where any plugins have to have an later time/date than the MQ2Main.dll. Well today i saw how much of a pain in the ass it was to have the in the srouce now. so i looked around and found what needs to be takin out.. Open MQ2PluginHandler.cpp and remove each section of code.
Hope this helps anyone that compiles there own.
Rich (BB code):
DWORD checkme(char *module)
{
char *p;
PIMAGE_DOS_HEADER pd = (PIMAGE_DOS_HEADER)module;
PIMAGE_FILE_HEADER pf;
p = module + pd->e_lfanew;
p += 4; //skip sig
pf = (PIMAGE_FILE_HEADER) p;
return pf->TimeDateStamp;
}
static unsigned int mq2mainstamp = 0;
Rich (BB code):
if (!mq2mainstamp) {
mq2mainstamp = checkme((char*)GetModuleHandle("mq2main.dll"));
}
Rich (BB code):
return 0;
}
if (mq2mainstamp > checkme((char*)hmod)) {
DebugSpew("Please recompile %s %d %d", FullFilename, mq2mainstamp, checkme((char*)hmod));
FreeLibrary(hmod);


..