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!

[S9E2 v.1.05x] How to enable warp list ("M") in Event Square

Junior Spellweaver
Joined
Feb 18, 2011
Messages
108
Reaction score
41
Put this line of code (or hard-code the .exe with the patch) in your dll:

Code:
*(unsigned char*)0x7F6546 = 0xEB;

This is just a jump over the code block that generates the error message when trying to open the warp list in Event Square.
 
Newbie Spellweaver
Joined
Jan 11, 2013
Messages
57
Reaction score
12
wow, this is exactly what i was looking for, thank you so much
And I have a question is how to let it operate in IGCN dll source
 
Junior Spellweaver
Joined
Feb 18, 2011
Messages
108
Reaction score
41
wow, this is exactly what i was looking for, thank you so much
And I have a question is how to let it operate in IGCN dll source

You can find the function DllMain() in the code and put this code bellow somewhere inside the the block "case DLL_PROCESS_ATTACH:":

Code:
// ...
DWORD OldProtect;
VirtualProtect((LPVOID)0x401000, 0xC68000, PAGE_EXECUTE_READWRITE, &OldProtect);
*(unsigned char*)0x7F6546 = 0xEB;
VirtualProtect((LPVOID)0x401000, 0xC68000, OldProtect, &OldProtect);
// ...
 
Back
Top