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] MUEMU - Files 4/6/8 FREE

Newbie Spellweaver
Joined
Mar 20, 2017
Messages
97
Reaction score
4
any guides on how to add commands and edit commands?

i would like to add /clearmlskills <name>

and change /gmpost to !<message>
 
Newbie Spellweaver
Joined
Mar 20, 2017
Messages
97
Reaction score
4
Dunno about /clearmlskills :p But you can add in Source :v

About /Gmpost Go to MUServer/Data/Message.txt then Edit /gmpost to /!
seedmaker when you're using /mreset does it also affect your master level? or have you setted only the skills will be resetted?



Dunno about /clearmlskills :p But you can add in Source :v

About /Gmpost Go to MUServer/Data/Message.txt then Edit /gmpost to /!

Do you know how to add that on source mate?
 
Master Summoner
Joined
Feb 17, 2017
Messages
580
Reaction score
72
@seedmaker when you're using /mreset does it also affect your master level? or have you setted only the skills will be resetted?





Do you know how to add that on source mate?

/mreset is Like /reset it means MasterReset :)
idont know about /mreset also but let me Check First

Bro you can Check the Settings in Command.dat ithink you can enable them :)

Yeah Maybe need a lot of Work about this xD
 
Last edited:

MAJ

Newbie Spellweaver
Joined
Jun 25, 2012
Messages
83
Reaction score
4
How to set party level limit?

Characters lvl 1 can do party with 400 now, I want to set it max. at 150 difference levels
 
Newbie Spellweaver
Joined
Jun 8, 2014
Messages
84
Reaction score
1
Hey. Does anyone have a fix in offexp close client? No reconnect? THX!
 
Newbie Spellweaver
Joined
Aug 3, 2014
Messages
26
Reaction score
1
Hello! how can i remove the license this files? (S6). have any guide?
 
Experienced Elementalist
Joined
Apr 15, 2012
Messages
203
Reaction score
25
Anyone can fixed the required level in the move list? With normal characters show the required level, but using Dark lord or MG shows a lower req level for move. Any idea?
 
selling server files is against RZ rules
Joined
Feb 26, 2013
Messages
542
Reaction score
131
Anyone can fixed the required level in the move list? With normal characters show the required level, but using Dark lord or MG shows a lower req level for move. Any idea?

it always has been.

Season 6 client code:
Code:
int GetMgTeleportLevel(int mapLevel)
{
    return mapLevel*2/3;//floor(mapLevel*2/3);
}


__declspec(naked) void ChangeMGLevel()
{
    static DWORD TpLevel=0;
    static DWORD retAddr = 0x00832ACE;
    __asm
    {
        MOV EAX, DWORD PTR SS:[EBP-0x30]
        MOV TpLevel, EAX
    }
    TpLevel = GetMgTeleportLevel(TpLevel);

    __asm
    {
        MOV EAX, TpLevel
        MOV DWORD PTR SS:[EBP-0x30],EAX
        jmp retAddr
    }
}

//Hook:
SetCompleteHook(0xE9,0x00832ABB,&ChangeMGLevel);
 
Experienced Elementalist
Joined
Apr 15, 2012
Messages
203
Reaction score
25
it always has been.

Season 6 client code:
Code:
int GetMgTeleportLevel(int mapLevel)
{
    return mapLevel*2/3;//floor(mapLevel*2/3);
}


__declspec(naked) void ChangeMGLevel()
{
    static DWORD TpLevel=0;
    static DWORD retAddr = 0x00832ACE;
    __asm
    {
        MOV EAX, DWORD PTR SS:[EBP-0x30]
        MOV TpLevel, EAX
    }
    TpLevel = GetMgTeleportLevel(TpLevel);

    __asm
    {
        MOV EAX, TpLevel
        MOV DWORD PTR SS:[EBP-0x30],EAX
        jmp retAddr
    }
}

//Hook:
SetCompleteHook(0xE9,0x00832ABB,&ChangeMGLevel);

Bro, can you teach me how to enable the assistant guild for accept guild request like the guild master?

im try in server side, but without good results.
 
selling server files is against RZ rules
Joined
Feb 26, 2013
Messages
542
Reaction score
131
Bro, can you teach me how to enable the assistant guild for accept guild request like the guild master?

im try in server side, but without good results.

Code:
__declspec(naked) void GuildAssistEx()
{
    static DWORD GuildAssistEx_Buff;
    _asm
    {
        mov GuildAssistEx_Buff, ecx
    }
    // ----

    if( GuildAssistEx_Buff == 128 || GuildAssistEx_Buff == 64)
    {
        _asm
        {
            mov GuildAssistEx_Buff, 0x0078F5FD
            jmp GuildAssistEx_Buff
        }
    }
    else
    {
        _asm
        {
            mov GuildAssistEx_Buff, 0x0078F57A
            jmp GuildAssistEx_Buff
        }
    }
}

//Hook
SetCompleteHook(0xE9,0x0078F56E,&GuildAssistEx);
 
Newbie Spellweaver
Joined
Jun 13, 2006
Messages
40
Reaction score
2
Hello, can you share your file again? The network disk has failed



MUEMU - Files 4.6.8 FREE
After the Files Broke in the Old Thread

so i found new One


CameraX401.rar 37 KB



CameraX603.rar 47 KB



CameraX803.rar 47 KB



ClientS4 Base.rar 235.2 MB



ClientS6 Base.rar 435.5 MB



ClientS8 Base.rar 526.2 MB



MuServerX401.rar 3.9 MB



MuServerX603.rar 4.0 M



MuServerX803.rar 4.2 MB



Package [SOURCE] MuEmu.rar
410.3 MB


ServerGUIDE.zip 2.4 MB



ToolsX401.rar 8.7 MB



ToolsX603.rar 8.7 MB



ToolsX803.rar 30.4 MB


Hello, can you share your file again? The network disk has failed
 
Back
Top