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!

Mu Skins [Release] Custom Ex700 Login screen for low version (new)

Skilled Illusionist
Joined
Jun 22, 2017
Messages
363
Reaction score
557
Hello again,
this is remake ex700 login screen for low version and currently working on main 1.04E only.(100% original like)

ver 1.2:

How to use:

- Extract all to client
- Paste this code in your src

Code:
void InitLoginTheme()
{
    HMODULE module = LoadLibrary("logintheme.dll");

    if (module == 0)
    {
  return;
    }

    void(*Init)(int frame) = ((void(*)(int))GetProcAddress(module, "Init"));

    if (Init != 0)
    {
  Init(24); //frames per second (default: 24)
    }
}

Code:
InitLoginTheme();

enjoy !

Screens:
myheart - [Release] Custom Ex700 Login screen for low version (new) - RaGEZONE Forums


coming soon..
myheart - [Release] Custom Ex700 Login screen for low version (new) - RaGEZONE Forums


myheart - [Release] Custom Ex700 Login screen for low version (new) - RaGEZONE Forums


myheart - [Release] Custom Ex700 Login screen for low version (new) - RaGEZONE Forums


credits: myheart
 
Last edited:
Junior Spellweaver
Joined
May 3, 2010
Messages
102
Reaction score
10
Hmmm don't work with custom resolution....

myheart - [Release] Custom Ex700 Login screen for low version (new) - RaGEZONE Forums



PS: Can you leave at least the textures decrypted? because I like to modify the colors a little :):
 
Initiate Mage
Joined
Aug 8, 2018
Messages
77
Reaction score
14
Everything is in .pak file but the question is how to unpack and pack it again.
Share that thing with us myheart :love:
 
Back
Top