• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

How to remove Nexon & Wizet logo

Junior Spellweaver
Joined
Sep 20, 2019
Messages
108
Reaction score
8
Hello, i would like to know what to change in wich adresses to remove the logo from the localhost cuz i've been trying it by myself but didn't end well.

Seems like that reduce alot the ram that it uses, and in any case you have some others adresses of things that can be removed to liberate some ram these would be very welcome.

Thanks in advance.
 
Skilled Illusionist
Joined
Apr 26, 2015
Messages
302
Reaction score
77
I don't really think the logo would cause memory leaks since it's loaded only once.

Anyways, this removes the logo for v90:


Credits to Eric
 
Upvote 0
Junior Spellweaver
Joined
Sep 20, 2019
Messages
108
Reaction score
8
I have a localhost HD without the logo and a normal one with logo and i have to mention that when it reach the login screen the HD one have less memory in use that the 800*600 one that loads the bunch of images of the nexon and wizet screen.. And i forgot to mention that i'm using a V83 locahost.
 
Last edited:
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Aug 3, 2008
Messages
172
Reaction score
26
Code:
static VOID PatchCall(DWORD dwAddress, PVOID pDestination)
{
	WriteValue<BYTE>(dwAddress + 0, x86CALL);
	WriteValue<DWORD>(dwAddress + 1, relative_address(dwAddress, pDestination));
}

This is the patchCall function. Once this function is setup, you can then patchCall like so:
Code:
PatchCall(0x0062EDEA, 0x0062EEAE);

This will remove the Nexon/Wizet logo at the start of the game for v83
 
Upvote 0
Back
Top