get the source of modeleditfix:
Code:
#include <Windows.h>
DWORD dwOffset = 0xFFFFFFFF; // Change this one!
BYTE bEnable = 0x01;
BYTE bDisable = 0x00;
int main(int argc, const char* argv[])
{
printf("\t# Starting ModelEditing-Fix.\n");
STARTUPINFO sInfo;
PROCESS_INFORMATION pInfo;
ZeroMemory(&sInfo, sizeof(sInfo));
sInfo.cb = sizeof(sInfo);
ZeroMemory(&pInfo, sizeof(pInfo));
if (CreateProcess(NULL, "WoW.exe", NULL, NULL, FALSE, CREATE_DEFAULT_ERROR_MODE, NULL, NULL, &sInfo, &pInfo)) // Change this one!
{
if (WriteProcessMemory(pInfo.hProcess, (LPVOID)dwOffset, &bEnable, sizeof(bEnable), NULL))
{
while (!(GetAsyncKeyState(VK_END)&1))
{
Sleep(1);
}
printf("\t# Stopping Application.");
WriteProcessMemory(pInfo.hProcess, (LPVOID)dwOffset, &bDisable, sizeof(bDisable), NULL);
}
}
CloseHandle(pInfo.hProcess);
CloseHandle(pInfo.hThread);
}
- insert the right offset (Live 2.1.3: 0xC4DF97 i think)
- change "WoW.exe" to the name of your maximizer.
- compile
-- schlumpf