- Joined
- May 26, 2011
- Messages
- 1,201
- Reaction score
- 237
Here is the incredible dll to optimize your Mu Online reducing memory usage"before and after image"
Do hook from dll to main.exe using API Init can do it using StudPE
This tool allows us to hook dll to our main "StudPE"Download Files: StudPE and DLL "MemRelease.dll"
Download this Tools:StudPE and DLL OPTIMIZE
Source Code:
Tested on:
1.04j
zMain (zTeam Repack S6)
1.03K JPN
1.04D gmo
1.06F (Season10.3 IGCN)
muemu 1.04E with MHP
MuEMU 1.04D+ (Failures)
97d (Failures)

Do hook from dll to main.exe using API Init can do it using StudPE

This tool allows us to hook dll to our main "StudPE"Download Files: StudPE and DLL "MemRelease.dll"
Download this Tools:StudPE and DLL OPTIMIZE
Source Code:
#include <Windows.h>
//-------------------------------------------------------------
void StartAddress(LPVOID lpThreadParameter)
{
HANDLE v1;
HANDLE v2;
while ( TRUE )
{
Sleep(5000);
v1 = GetCurrentProcess();
SetProcessWorkingSetSize(v1, 0xFFFFFFFF, 0xFFFFFFFF);
v2 = GetCurrentProcess();
SetThreadPriority(v2, -2);
}
}
//-------------------------------------------------------------
BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
if ( fdwReason == 1 )
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)StartAddress, 0, 0, 0);
return 1;
}
Tested on:
1.04j
zMain (zTeam Repack S6)
1.03K JPN
1.04D gmo
1.06F (Season10.3 IGCN)
muemu 1.04E with MHP
MuEMU 1.04D+ (Failures)
97d (Failures)
Last edited: