Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Highly improve the performance of you Mu Online (DLL)

Newbie Spellweaver
Joined
Mar 19, 2017
Messages
22
Reaction score
19
Here is the incredible dll to optimize your Mu Online reducing memory usage"before and after image"
fantoma - [Release] Highly improve the performance of you Mu Online (DLL) - RaGEZONE Forums


Do hook from dll to main.exe using API Init can do it using StudPE
fantoma - [Release] Highly improve the performance of you Mu Online (DLL) - RaGEZONE Forums


This tool allows us to hook dll to our main "StudPE"Download Files: StudPE and DLL "MemRelease.dll" Link>

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:
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
39
Reaction score
19
Working with main 1.06F Season 10.3 IGCN, so much faster loading, etc.
fantoma - [Release] Highly improve the performance of you Mu Online (DLL) - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Mar 19, 2017
Messages
22
Reaction score
19
well for what version this work ? for 97d+99i work ? :glare:
Just test it and comment if it works (Solo pruebalo y comentanos si te funciono bro)

Working with main 1.06F Season 10.3 IGCN, so much faster loading, etc.
fantoma - [Release] Highly improve the performance of you Mu Online (DLL) - RaGEZONE Forums
Added to "main.exe" that can support
 
Last edited:
Newbie Spellweaver
Joined
Dec 2, 2015
Messages
94
Reaction score
4
Not working , test MuEMU 1.04D + MuEMU antihack. :\
 
Initiate Mage
Joined
May 22, 2014
Messages
2
Reaction score
1
thank you. Works well.
I have one question. has main crush or exception if i am apply this code?
 
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
39
Reaction score
19
can you share main with dll or teach how to hook it :D
1. Open stud_PE > File > Open PE file
Search your main.exe
2. Go to Functions > Right Click on what .dll you want, example SHELL32.dll > Add new import
Click Dll Select, search for MemRelease.dll > Open > Select func. > Init > Click ok > Click Add to list > Click ADD > OK
Done
 
Experienced Elementalist
Joined
Mar 18, 2012
Messages
255
Reaction score
20
1. Open stud_PE > File > Open PE file
Search your main.exe
2. Go to Functions > Right Click on what .dll you want, example SHELL32.dll > Add new import
Click Dll Select, search for MemRelease.dll > Open > Select func. > Init > Click ok > Click Add to list > Click ADD > OK
Done

I think its not working on season 10
 
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
39
Reaction score
19
It works, give me your main i will do this.
 
Back
Top