Informacion de gracias

Show post that are related to the Thank-O-Matic. It will show the topics where you give a Thank You to an other users. (Related to the first post.)


Messages - mundomuc

Posteado: June 17, 2025, 01:09:45 PM 2 MuOnline / Guias / Configuración de Antihack ( common.dat)

Buenas.!

Esta es mi primera guía.
Hubo un tiempo donde necesitaba saber configurar el Antihack del lado Server , Configuración que se encuentra en :

* Muserver / Gameserver/Data/Common.dat



Aca les dejo:






Muchas gracias todos.!

 please

Posteado: May 06, 2025, 11:21:55 PM 3 MuOnline / Sources Generales / Source s6 WideScreen

Instrucciones de Instalación

Modificar stdafx.h
Agrega la siguiente línea:
#define Wide_Screen 1


1. Modificar Interface.cpp
Agregas:
#include "DakosmuWide.h"
#include "DakosmuS6.h"

Buscas:
void Interface::LoadImages()

Agregas
Spoiler for Hiden:
//DakosmuWide Imagenes Cliente
pLoadImage("Custom\\DakosmuWide\\Wide_1.tga", 87968, 0x2601, 0x2901, 1, 0);
pLoadImage("Custom\\DakosmuWide\\Wide_2.tga", 87969, 0x2601, 0x2901, 1, 0);
pLoadImage("Custom\\DakosmuWide\\Wide_3.tga", 61546, GL_LINEAR, GL_CLAMP, 1, 0);
pLoadImage("Custom\\DakosmuWide\\Wide_4.tga", 61547, GL_LINEAR, GL_CLAMP, 1, 0);
pLoadImage("Custom\\DakosmuWide\\Wide_5.tga", 31337, 9729, 10496, 1, 0);
//Dakosmu

2. Descargar los Archivos


3. Colocar Dentro del Cliente
Ruta
Data\Custom\DakosmuWide


4. Buscar y Modificar Main.cpp

Agregas
#include "DakosmuWide.h"
#include "DakosmuS6.h"


Buscas:
pLoadSomeForm();


Agregar
Spoiler for Hiden:
DakosmuInterfaceNew.Load_Image(); //Las Imagenes Wide_1,2,3,4,5

Buscas
Spoiler for Hiden:
extern "C" _declspec(dllexport) void EntryProc() // OK

Agregas
Spoiler for Hiden:
//WideScreen
DakosmuWide1.InitFrameOpenGL();
DakosmuInterfaceNew.Load();
//WideScreen

DakosmuBytes.cpp
Spoiler for Hiden:
#include "stdafx.h"
#include "DakosmuBytes.h"
#include "../../Util/libjpeg/jpeglib.h"
#include "Util.h"

#include <Shlwapi.h>

#pragma comment(lib, "Shlwapi.lib")

#pragma comment(lib, "jpeg.lib")

#define pOpen        ((FILE*(*)(const char *,const char*))0x009D0040)
#define pSeek        ((int*(*)(FILE*,long,int))0x009D6A53)
#define pRead        ((DWORD*(*)(void*,DWORD,DWORD,FILE*))0x009CFF5F)

void* DakosmuJpegBuffer;
DWORD DakosmuJpegBufferSize;

void DakosmuDec()
{
    SetCompleteHook(0xE9, 0x004FC7AC, &DakosmuOpenJpegBuffer1);
    SetCompleteHook(0xE9, 0x004FCB85, &DakosmuOpenJpegBuffer2);

    SetCompleteHook(0xE9, 0x004FCCBA, &DakosmuOpenTga);
    SetCompleteHook(0xE9, 0x0054C28C, &DakosmuOpenBmd);
    SetCompleteHook(0xE9, 0x005D68FF, &DakosmuOpenAtt);
    SetCompleteHook(0xE9, 0x005D6ECF, &DakosmuOpenMap);
    SetCompleteHook(0xE9, 0x005F34A8, &DakosmuOpenObj);

    SetCompleteHook(0xFF, 0x004FC6C7, &DakosmuOpenFile);
    SetCompleteHook(0xFF, 0x004FCC3E, &DakosmuOpenFile);
    SetCompleteHook(0xFF, 0x0054C21D, &DakosmuOpenFile);
    SetCompleteHook(0xFF, 0x005D6826, &DakosmuOpenFile);
    SetCompleteHook(0xFF, 0x005D6E64, &DakosmuOpenFile);
    SetCompleteHook(0xFF, 0x005F3402, &DakosmuOpenFile);
}

FILE* DakosmuOpenFile(const char* path, const char* f)
{
    char encpath[MAX_PATH] = { 0 };

    wsprintf(encpath, "%s.enc", path);

    if (PathFileExists(encpath) != 0)
    {
        return pOpen(encpath, f);
    }

    return pOpen(path, f);
}

int DakosmuCheckFile(FILE* hFile)
{
    BYTE Buffer[0x18] = { 0 };

    pSeek(hFile, 0, SEEK_SET);
    pRead(Buffer, 1, sizeof(Buffer), hFile);

    if (Buffer[0] != 'E' || Buffer[1] != 'N' || Buffer[2] != 'C')
    {
        return 0;
    }

    if (Buffer[3] == 1)
    {
        return 2;
    }

    return 1;
}

BOOL DakosmuDecryptFile(FILE* hFile, BYTE* Buffer, int Size, int Origin, int Offset)
{
    if (DakosmuCheckFile(hFile) != 0)
    {
        pSeek(hFile, 0x18, SEEK_SET);
        pRead(Buffer, 1, Size, hFile);

        for (int n = 0; n < (Size - 0x18); n++)
        {
            Buffer[n] += (BYTE)(0xA0 ^ HIBYTE(n));
            Buffer[n] ^= (BYTE)(0xAB ^ LOBYTE(n));
        }

        return 1;
    }

    pSeek(hFile, Offset, SEEK_SET);
    pRead(Buffer, 1, Size, hFile);

    return 0;
}

__declspec(naked) void DakosmuOpenJpegBuffer1()
{
    static DWORD Address1 = 0x004FC7C2;
    static DWORD Address2 = 0x004FC7C2;
    static DWORD Address3 = 0x009CFF5F;
    static DWORD Address4 = 0x009D6A53;
    static DWORD Address5 = 0x009D6CF0;
    static DWORD Address6 = 0x009D00C5;

    _asm
    {
        Push 2
        Push 0x18
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x2C4]
        Push Ecx
        Call[Address4]
        Add Esp, 0x0C
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x2C4]
        Push Ecx
        Call[Address5]
        Add Esp, 0x04
        Mov DakosmuJpegBufferSize, Eax
        Push 0
        Push 0x18
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x2C4]
        Push Ecx
        Call[Address4]
        Add Esp, 0x0C
        Push DakosmuJpegBufferSize
        Call[Address6]
        Add Esp, 0x04
        Push 0x18
        Push 0
        Mov DakosmuJpegBuffer, Eax
        Push DakosmuJpegBufferSize
        Push DakosmuJpegBuffer
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x2C4]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Test Eax, Eax
        Je EXIT
        Mov Edx, DakosmuJpegBufferSize
        Sub Edx, 0x18
        Push Edx
        Mov Eax, DakosmuJpegBuffer
        Add Eax, 0x18
        Push Eax
        Lea Ecx, Dword Ptr Ss : [Ebp - 0x2A4]
        Push Ecx
        Call[jpeg_mem_src]
        Add Esp, 0x0C
        Jmp Address1
        EXIT :
        Push DakosmuJpegBufferSize
            Push DakosmuJpegBuffer
            Lea Ecx, Dword Ptr Ss : [Ebp - 0x2A4]
            Push Ecx
            Call[jpeg_mem_src]
            Add Esp, 0x0C
            Jmp Address2
    }
}

__declspec(naked) void DakosmuOpenJpegBuffer2()
{
    static DWORD Address1 = 0x004FCB8C;
    static DWORD Address2 = 0x009CF11A;

    _asm
    {
        Push DakosmuJpegBuffer
        Call[Address2]
        Add Esp, 0x04
        Mov DakosmuJpegBuffer, 0
        Mov Byte Ptr Ss : [Ebp - 0x325] , 1
        Jmp Address1
    }
}

__declspec(naked) void DakosmuOpenTga()
{
    static DWORD Address1 = 0x004FCCD0;
    static DWORD Address2 = 0x004FCCD0;

    _asm
    {
        Push 0
        Push 0x18
        Mov Edx, Dword Ptr Ss : [Ebp - 0x34]
        Push Edx
        Mov Eax, Dword Ptr Ss : [Ebp - 0x44]
        Push Eax
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x3C]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Jmp Address1
    }
}

__declspec(naked) void DakosmuOpenBmd()
{
    static DWORD Address1 = 0x0054C2A2;
    static DWORD Address2 = 0x0054C2A2;

    _asm
    {
        Push 0
        Push 0x18
        Mov Edx, Dword Ptr Ss : [Ebp - 0x64]
        Push Edx
        Mov Eax, Dword Ptr Ss : [Ebp - 0x68]
        Push Eax
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x18]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Jmp Address1
    }
}

__declspec(naked) void DakosmuOpenAtt()
{
    static DWORD Address1 = 0x005D6915;
    static DWORD Address2 = 0x005D6915;

    _asm
    {
        Push 0
        Push 0x18
        Mov Edx, Dword Ptr Ss : [Ebp - 0x14]
        Push Edx
        Mov Eax, Dword Ptr Ss : [Ebp - 0x0C]
        Push Eax
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x8]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Test Eax, Eax
        Je EXIT
        Mov Edx, Dword Ptr Ss : [Ebp - 0x14]
        Sub Edx, 0x18
        Mov Dword Ptr Ss : [Ebp - 0x14] , Edx
        Jmp Address1
        EXIT :
        Jmp Address2
    }
}

__declspec(naked) void DakosmuOpenMap()
{
    static DWORD Address1 = 0x005D6EE5;
    static DWORD Address2 = 0x005D6EE5;

    _asm
    {
        Push 0
        Push 0x18
        Mov Edx, Dword Ptr Ss : [Ebp - 0x14]
        Push Edx
        Mov Eax, Dword Ptr Ss : [Ebp - 0x0C]
        Push Eax
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x8]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Test Eax, Eax
        Je EXIT
        Mov Edx, Dword Ptr Ss : [Ebp - 0x14]
        Sub Edx, 0x18
        Mov Dword Ptr Ss : [Ebp - 0x14] , Edx
        Jmp Address1
        EXIT :
        Jmp Address2
    }
}

__declspec(naked) void DakosmuOpenObj()
{
    static DWORD Address1 = 0x005F34BE;
    static DWORD Address2 = 0x005F34BE;

    _asm
    {
        Push 0
        Push 0x18
        Mov Edx, Dword Ptr Ss : [Ebp - 0x18]
        Push Edx
        Mov Eax, Dword Ptr Ss : [Ebp - 0x10]
        Push Eax
        Mov Ecx, Dword Ptr Ss : [Ebp - 0x8]
        Push Ecx
        Call[DakosmuDecryptFile]
        Add Esp, 0x14
        Test Eax, Eax
        Je EXIT
        Mov Edx, Dword Ptr Ss : [Ebp - 0x18]
        Sub Edx, 0x18
        Mov Dword Ptr Ss : [Ebp - 0x18] , Edx
        Jmp Address1
        EXIT :
        Jmp Address2
    }
}

DakosmuBytes.h
Spoiler for Hiden:
#pragma once

void DakosmuDec();
FILE *DakosmuOpenFile(const char *path, const char *f);
int DakosmuCheckFile(FILE *hFile);
BOOL DakosmuDecryptFile(FILE *hFile, BYTE *Buffer, int Size, int Origin, int Offset);
void DakosmuOpenJpegBuffer1();
void DakosmuOpenJpegBuffer2();
void DakosmuOpenTga();
void DakosmuOpenBmd();
void DakosmuOpenAtt();
void DakosmuOpenMap();
void DakosmuOpenObj();

Dakosmudefine.h
Spoiler for Hiden:
#pragma once
//WideScreem
#define DakosmuCoorX                *(DWORD *)(*(DWORD *)0x7BC4F04 + 0xAC)
#define DakosmuCoorY                *(DWORD *)(*(DWORD *)0x7BC4F04 + 0xB0)
#define DakosmuSupremo                    ((void(__cdecl*)())0x00637A30)
#define DakosmuSetFont                ((int(__thiscall*)(LPVOID This, int a2)) 0x420120)
#define DakosmuFontBold                *(HGDIOBJ*)0x00E8C58C
#define DakosmuAlphaTest                        ((void(__cdecl*)(BYTE Mode)) 0x635FD0)
#define DakosmuBitmap                ((void(__cdecl*)(int ImageID, float PosX, float PosY, float Width, float Height, float Arg6, float Arg7, float ScaleX, float ScaleY, bool ScaleSize, bool ScalePosition, float ScaleAlpha)) 0x00637C60)
#define DakosmuMouseOver                ((bool(__cdecl*)(int a1, int a2, int a3, int a4)) 0x00790B10)
#define DakosmuBuffer33                            ((signed int(__cdecl*)(int a1, int a2, int a3)) 0x006D6C20)
#define Dakosmu_7BC4F04                        *(DWORD*)0x7BC4F04
#define Dakosmu_8128AC8                        *(DWORD*)0x8128AC8
#define Dakosmu_8793384                        *(BYTE*)0x8793384
#define Dakosmu_8793380                        *(BYTE*)0x8793380
#define Dakosmu_8128ABC                        *(DWORD*)0x8128ABC
#define DakosmuSkillLine                    ((void(__thiscall*)(int a1, float a5, int a6, int a7, int a8, int a9)) 0x00772EA0)
#define DakosmuWidth                *(GLsizei*)0x0E61E58
#define DakosmuHeight                *(GLsizei*)0x0E61E5C
//WideScreem

import.cpp
Spoiler for Hiden:
#include "stdafx.h"
#include "Import.h"
#include "DakosmuWide.h"
#include "DakosmuS6.h"
#include "DakosmuBytes.h"

signed int sub_9CEBF0_2(double a1)
{
    return (signed int)a1;
}

bool pCheckMouseOverMiddle(int x, int y, int w, int h)
{
    int Addr = (pWinWidth / pWinHeightReal / 2) - 320;
    return pCheckMouseOver(x + Addr, y, w, h);
}

void RenderBitmapMiddle(int ImageID, float PosX, float PosY, float Width, float Height, float Arg6, float Arg7, float ScaleX, float ScaleY, bool ScaleSize, bool ScalePosition, float ScaleAlpha)
{
    int Addr = (pWinWidth / pWinHeightReal / 2) - 320;

    RenderBitmap(ImageID, PosX + Addr, PosY, Width, Height, Arg6, Arg7, ScaleX, ScaleY, ScaleSize, ScalePosition, ScaleAlpha);
}

void RenderBitmapRight(int ImageID, float PosX, float PosY, float Width, float Height, float Arg6, float Arg7, float ScaleX, float ScaleY, bool ScaleSize, bool ScalePosition, float ScaleAlpha)
{
    int Addr = pWinWidth / pWinHeightReal - 640;

    RenderBitmap(ImageID, PosX + Addr, PosY, Width, Height, Arg6, Arg7, ScaleX, ScaleY, ScaleSize, ScalePosition, ScaleAlpha);
}

void CRenderImageMiddle(int a1, float a2, float a3, float a4, float a5)
{
    int Addr = (pWinWidth / pWinHeightReal / 2) - 320;

    pDrawGUI(a1, a2 + Addr, a3, a4, a5);
}

void CRenderImageRight(int a1, float a2, float a3, float a4, float a5)
{
    int Addr = pWinWidth / pWinHeightReal - 640;

    pDrawGUI(a1, a2 + Addr, a3, a4, a5);
}

void BarFormMiddle(float PosX, float PosY, float Width, float Height, float Arg5, int Arg6)
{
    int Addr = (pWinWidth / pWinHeightReal / 2) - 320;

    pDrawBarForm(PosX + Addr, PosY, Width, Height, Arg5, Arg6);
}

void BarFormRight(float PosX, float PosY, float Width, float Height, float Arg5, int Arg6)
{
    int Addr = pWinWidth / pWinHeightReal - 640;

    pDrawBarForm(PosX + Addr, PosY, Width, Height, Arg5, Arg6);
}

void pDrawButtonMiddle(DWORD ModelID, float X, float Y, float W, float H, float CurrentX, float CurrentY)
{
    int Addr = (pWinWidth / pWinHeightReal / 2) - 320;
    pDrawButton(ModelID, X + Addr, Y, W, H, CurrentX, CurrentY);
}


double sub_636450_2(float a1)
{
    return (float)((double)(unsigned int)pWinHeight * a1 / 480.0);
}
Descargar Archivos Necesarios

Posteado: May 06, 2025, 03:02:08 AM 4 MuOnline / Sources Generales / Social S3 repack

no sé si esto ya lo subieron o no pero esta fuente yo la había comprado el año pasado y como voy a formatear mi computadora no me sirve



Posteado: May 05, 2025, 02:42:53 AM 5 MuOnline / Sources Generales / Optimización mu

esto es un aporte algo simple y muy beneficioso para alguno
a la hora de abrir el mu automáticamente te va a optimizar toda la computadora te va a mejorar el uso de la ram y el de cpu si cierra el Mu se cancela la optimización
yo la había puesto adentro del cliente en el maí.c  pero cambié un poquito el código y lo puse para que se pueda ejecutar usando MHP y launcher
esto se beneficia aquello que tengan computadora muy vieja

Gracias:

golias14, joackle, davidrcj, somlee, Vladenuel, hald22, tucumanito, Extreme, PCEmulador, nofeara, b0n3v, keyzor, Daniel@, rekis, caminhada, armamor, xtestx, Davi, matan3599, zeronycs, Crowley, iRvX, llZeuzll, zerg24, cachorroquente, realman, Domedica, lozthiensu, football, pnicacio, vcore30, NghienMU, BaTmaaN, Lotto4K4k, load_01, Kenpachi Zaraki, congacp1, juan1997, kaisudo, matheusgomesb, hsowaty, Creazsia, resistant, Tester1838a, backerchen, birdy491, beibei, Split, Darki12345, bin9xhn2, Nargakh, mu2020, GabrielDev, hanzel, AlejandrO777, PhantomKr, Underworld, lthai2021, NexusMu, louis, herjuni, thziin, anonymousgh, malke, Malkom99, pulsefire, vnfiac, truongtienhp, manfromvn, Dieguinho, lczro, 2str0kE, mael55, Dragonvl15, InFamous, redf0x, nacho,ignacio, wellwisher22, erickmalfoy, pedrob, nietof04, joaovithor1, Cartman, williandv, Vazamento, vampzao123, AnDeR, Genilson23, Viper, zodiacobr, muccone, jhonneduard, zurect, Ryzenn, emersonx13, mundomuc, kayito, bulk9995, Matt1995, thangnvv92, dangnhapnee, ProTecno, DeveloperMU, ILUVATAR, pedornela, Odisk, Atlans, xxyan1xx, mubro, KhongGianOL, lucasvieira, calibur, neeck1234, zHammer, zodiacddos, dakosmu, Hugo, ledemkhoc, Betell Host, Genius05, makyntosh, saske98, stark98, s00x, zhujianhui, kskooper, mustx1, Shatter, andyw, k33n00, ValkyrieDevs, imjay8, Kosh, chuckhai, khdoop, hoangha001, z348870672, animator, josehdrago, dizzys, Thedevilslefthand, chipcoidj, superrin, Azzlaer, Smudevelop, Dizzy, phuongcuongmsqm, HaPKoTuK, mugloves99, roshux, nelson, Hoangsy99, spartacus, skinmuonline, zhangjianle865, npt.formu, z0lik, dahouzi, SaintZeus, bigrealtk92, tuyendam, Nakamura, djagripnos, ArcaneMU, hoangtammedia, legacy101, Marceliin, smil158, DrakonuS

Posteado: April 27, 2025, 05:36:02 PM 7 MuOnline / Season6 / Files Rox Gaming UPD 14 CON SETS AGREGADOS HASTA LA S19!!

LES COMPARTO ESTOS FILES DE DENIS ALVEZ LE AGREGUE UNOS CUANTOS SETS Y WEAPONS HASTA LA S19.

*SE PUEDE CREAR CUENTAS DESDE EL CLIENTE Y TIENE SAVE PASSWORD:







*Sistema Flag (agregue unas cuantas) :





*Flags + Wings:



*Sistema Luky Wheel:


*Sistema Buy Warehouse:


*Sistema Bank Jewel:


*INVENTARIO CON SLOTS PARA EARRINGS Y PETS Y MONTURAS :
(AGREGUE LOS EARRINGS Y RINGS Y PENDANTS DE SEASSON ALTAS SOLO FALTA AGREGARLE LAS OPCIONES EN LAS TOOLS EN EL CUSTOMITEMTOOLTIP.TXT)










ESTO ES PARA EL QUE QUIERA SEGUIR TRABAJANDO EN ESTE PROYECTO AGREGANDOLE COSAS FALTA AGREGARLE LOS MAPS CUSTOM, PETS, MONTURAS Y TAMBIEN ESTA LA SOURCE Q FUE LIBERADA PARA QUE SE PUEDA FIXEAR CUALQUIER BUG Y PROBLEMA:


Gracias:

josrob21, josrob21, itamarsrosa, felipedr, EvertonSc, KAKA, lyndo013, CIUDADELA22, SupremoBM, joaovithor1, kameleonu, davian, rugaro, rafaelpqd157, aranclub02, VERNERON, imjay8, nescafe, favianxp, luisito, amawaoi999, wil613pk, koito89, santiagolp3, Refleiger, zHammer, ailsoncost, cauchubn1, exu9x, lizbeth, xsasuke19x, notengo, fedepelain, STARTS, DjGamer, CAPITOL, conter, smil158, Dear, jessy, maco11, DevMapper, anhnt, Marceliin, elcarpintero2, LastName, BaTmaaN, djagripnos, Leon, jukas, XertroV, Lee11, victorrz17, danilo7799, motocarj, pandark, xscorpx, monoki, jhosel, suzukiyam, dairyum, xianwen, erikmorato, voladito, 16dopex, answer, fengyun52894, kapella, GabrielDev, adamdouglascl, ILUVATAR, eduardocol, tiestoh, llhenryxpxx, lqrwr123, badabuu, samsunggon, criptonauk, quinho109, Williansj, scring, Gamst, alexjgv, jeferson, whisky123, refederal, rodrigoxd, theshield, roshux, chinagames, fghuy__444@hotmail.com, chokito669, Syamon9966, neeck1234, z348870672, kove0816, Dragonvl15, nekroz520, natsu00, Genius05, Peluuca, PCEmulador, mastergd2023, nippdmo01, malinkhii, Eu7760119, abelito, chaprao, thuongneo, coolgepds, Demon, Matt1995, bravo99, danielgalboa, Hax.Gaming, luisdaniel, maradona2.0, matan3599, miiadlp87, birdy491, Farias, GameNet, lucasvieira, sauron215, HQDevil, remamakiller, bond2012, adicales1, GATITO, elcaverao, KhanhVuOnline, Thedevilslefthand, Mazepa, andyw, mu2020, Atlans, mitrandir69, nhantac, DeveloperMU, unnamedsk1, beibei, kayatokid, tltzgltc, kekedodo, Vazamento, exterminio, panda, mundomuc, ballas, piter, jeffzkie69, SacroAFM, tacabalarj, dakosmu, zhangjianle865, caminhada, fantasma02, k33n00, marlo1x1, Dizzy, Eronrw1
SERVER FILES XTEAM VIETNAM + MAIN 5.2 + ANTIHACK + FPS ~160 + FULL FEATURE [UP 20]





PATCH UPDATE UP 21
Citar
Update 21 (Main 5.2) -  12/05/2025

[GS+Main] Add EnableSlotAcessory
[Main]  Reset Registration Form
[Main] ITEM STAFF MAGIC TOOLTIP
[Main] Custom Bow Skill Effect (BowEffect.txt)
[GS] Command Setlevel (Command.txt)
[Main] Item Value
[GS+Main] Add Relifes
[GS] Add Respawn Location
[GS] Add Check XDameHack
[GS+Main] Add Smith Item
[GS+Main] Add Custom Skin
[GS+Main] Add Custom Skin Wing
[GS+Main] Add Custom Ring Effect
[GS+Main] Add New XTEAM_CustomMix.xml
[GS] Fix Event Invasion count
[GS] Add SetItemOption Buff id 128 - 133

Link download :








Pass unzip : muxteam.com




































Gracias:

davidrcj, mara777, khanhhuypc1993, life1026, edinson, nhochanam, manfromvn, longcon91, VipPMR, Fentagm311, gatinho94, lyndo013, nh0xpr075, ques44, ld0902, ntt2010, s00x, vanhellsing, minhchap, Marceliin, ilidan99, VERNERON, lucas1993, miruii, python, tuyen195, BrayanMDZ, Flashxxx, someonekillhim, im.maisonth, narugamy, ndchung263, herikeri, anhtruongui, seckep, jessy, cuongcon333, generalhbk, itamarsrosa, answer, cuong1372, bolast, Betell Host, lemonsrt8, luis12345, pquintal, fuyunji123@gmail.com, Lotto4K4k, nguyetteen, eduardocol, misterclir, danilo7799, Cshinichi1, wozhangjia, surdido, yokkjll, mircosn123, qq670348570@hotmail, Damphir, darath, manhls123, exu9x, Joaquin93, zeruskill, Orion88, giangpha, stereo2010, angelokl7, pandark, lucaseconomo@gmail.com, MuOnlineMakers, michi28, 0333111, asdrucs, lukaz2z, quyanxu, 1272388338, diorandy, vantruong, xlockee, kamus, dannys, carlossgyn, dahouzi, bubik, multipleer, TheLindoKiko, vanhung21, shu2004, sauron215, luckianm, duelmaster01, KhanhVuOnline, lkmorais, eliasnogue, wenleiady, ukvayha, thode1226, felipe8745, springsea, djagripnos, thanhnp90, meokute, bymxrm, allysonacbm, scring, 2448778229, guhan10, wildriff66, MUXP, Gamst, chinagames, abanaljhon, nhaixuong, k33n00, xpzinho, vlgtre, 16dopex, devoter4, zpzwb113, jeffzkie69, whisky123, midala23, 297457989, tedomi, ongchu3x, theshield, formlovefern12, thieugia, mitrandir69, long.hpvn, tmaxpro, Syamon9966, fengyun52894, swedka, ChuotLang, zurdo, Vitaminka, kove0816, ToShirico, xd22troxa, liron, anh2hp, Psi, foqlai, imjay8, ttqh92, utsmile, ronglovel, maco11, congacp1, khdoop, peteran, rafael222, lavetien, nghia382829, cppcw, lu18887, tungns0695, Eu7760119, havanty, yamahahond, samsunggon, gingpawer, Dragonvl15, Jey, nujd00, whj123, BaTmaaN, lqrwr123, xuanyuan, manaman, thuongneo, Hax.Gaming, jayprotect2013, aujindo, Matt1995, oxey.mu, mukingbr, AnDeR, andyw, 29013735, Axelfvm, nhockute, hoangcungclub, bond2012, elcaverao, Smudevelop, chokito669, bin9xhn2, khangdz19, phambaophong, zeronycs, kamyk22, beibei, murcielago, zhujianhui, kayatokid, conter, techtower, xianwen, malinkhii, bigmed, Dizzy, csedit, vietbang, HazzdeN, wener1992, trungpv, anhnt, lucasvieira, Vazamento, hyonzinho666, zzzvuhoaisonzzz, xlbiellx, hfhmu, lomgtomy, Eronrw1, CAPITOL, mubongma, prohards26, chinchin, mustx1, Farias, renatovips, erickmalfoy, forumid, JamesR5, legacy101, Dieguinho, Split, KhongGianOL, HQDevil, awdawd, raphaeldx1993, npt.formu, zhangjianle865, mu2020, kekedodo, HayllanderBR, ellite3, kaiocnx, mauriciobrus, kskooper, superrin, GATITO, zHammer, Thedevilslefthand, smil158, Kosh, mundomuc, Creazsia, Duel1992, Icloud3d, lahn, xscorpx, cuzito, arthurtri, mupdl2022, vnfiac, marlo1x1, geovanio, tincho1993, lanxin3243, kronosal, StyLLer, jeangdr, wellwisher22, junin, Eymen2121, mugloves99, Genius05, weberson, moskorosi, uBroken, dario, gladistoni joga, MatiasBaxter, NexusMu, hola23, dakosmu, saske98, MiniBestia, ieie10, layzen1985, Nakamura

Posteado: April 16, 2025, 06:51:14 PM 10 MuOnline / Extras / LOGIN SCREEN - Dark Wizard

LOGIN SCREEN - Dark Wizard


Demo




Descargar




Como Colocar?

Abrir el MainInfo.ini colocar DLL

Code: [Select]
ClientSerial = TbYehR2hFUPBKgZj
WindowName = MU
ScreenShotPath = ScreenShots\Screen(%02d_%02d-%02d-%02d)-%04d.jpg
ClientName = Main.exe
PluginName = Effects.dll
PluginName1 = LoginScreen.dll
CameraName = Camera.dll

Luego Colocar el archivo loginscreen.exi dentro de su carpeta del cliente en la ruta /Client/Data/

Si desean crear sus videos aqui todo el tutorial https://tuservermu.com.ve/index.php?topic=46114.0#top

Posteado: April 11, 2025, 08:07:27 AM 11 MuOnline / Season6 / CLIENTE+MUSERVER+SOURCE-BASE TAKUMI-GAMEMASTER

CLIENTE+MUSERVER+SOURCE-GAMEMASTER(11/04/2025 .

NO RECUERDO BIEN LO QUE LE HICE PERO SE ESTUVO TRABAJANDO DESDE LA SRC. SON ESTABLES Y MUY FLUIDAS..

CREDITOS : TAKUMI.

LINK: .


































Gracias:

mgajat, anjinhoxd, VERNERON, marlo1x1, ntt2010, as0908, exu9x, kostasalex, tuyen195, minhchap, Zoeyjf, congacp1, nduchoang97, ndchung263, vampzao123, luisdaniel, favianxp, binhvt1ad, kini, Gamst, mara777, powerpatic, formlovefern12, badabuu, gmmuchang, 16dopex, elchuyo30, newplayer, panda, yaoge, Williansj, vietbang, shaito22, lqrwr123, LoveZoee, miiadlp87, infernal, ellite3, tanju02, ieie10, MuvnzPlus, lozthiensu, theshield, Fabiven, Shaper, tmaxpro, nhockute, idluiz, jesus1994, RAGNAR111, bebefox, benjitrench, eacv, dragonier5l, kove0816, STARTS, Crowley, voladito, phucdz, laulinh2, sinketz0r, 689072@gmail.com, larkan28, maguado, nguyenthanhquoc47589, Rindy, ryuzahi, thuongneo, Dear, cristhian50, Hiếu Đại Ca, dutrinha2222, eduardo253, Wazzap28, football, itamar, guiespi, tiestoh, swedka, proof, forumid, vnshell, sauron215, congpho, shadde, gruviasuncha, danielgalboa, csedit, jeronemo2707, Vitaminka, bykakuv, slavea, zeronycs, mitrandir69, Macario, cavalcante, lucasvieira, bond2012, malinkhii, prohards26, rando, coolgepds, euthanoisocial, vantruong, Matt1995, getmam, k33n00, son1xx2, DeveloperMU, gega, bin9xhn2, jeffzkie69, Peluuca, edangel4, Orion88, mu2020, BaTmaaN, smil158, bigrealtk92, xianwen, mundomuc, Thedevilslefthand, llZeuzll, bubik, Dragonvl15, JhonaTanLR, spartacus, skinmuonline, utsmile, dakosmu, vnfiac, jeangdr, MMOTOP100, HazzdeN, makyntosh, T-LEGENDARY, bealex, binhchivn, thesonic, PhantomKr, nhantac, blogger02, mustx1, kazuha, felipesanto, exterminio, cybercomaqp, Thebollo, Genius05, hoangha001, facufunesok, kingbr, AreS, c4nhsatcodong, lomgtomy, Eymen2121, kyoshiro654, awdawd, FOX, hoangtammedia, whisky123, josehdrago, Watuyusei, joselagos, MatiasBaxter, KhongGianOL, noobteam, Dizzy, xampoulis, pedornela, Hax.Gaming, elcaverao, beibei, victhorinox, pkdomal, mugloves99

Posteado: April 05, 2025, 09:42:43 AM 13 MuOnline / Season6 / REPACK PARA LICENCIAS DE LOUIS UDT 38 S6.20

BUENO AMIGOS ACA LES TRAIGO OTRO HERMOSO REPACK DE LA SEASON 6.20 ESPERO LO DISFRUTEN

MUSERVER

CLIENTE








SI DESEAN VPS HAY ALGUNOS QUE ALQUILAN CON LICENCIAS DE LOUIS

Gracias:

rafaelpqd157, JavixFer, lemiks, youfilme, gordodotoi, yuyu2013, solangelsi, ovangu, kleber, krovax13, crownmu, whodhell, Eternity, AlfredoL, DimensionX, pedornela, manextro, Leon, MrRabbit, petrec, itamarsrosa, Yukki, piero1, xxkarxx, crowtrash, favianxp, Damphir, kini, samueru, kapella, refederal, rhuanhudson, alvaronfirehd, Josec19, badabuu, giovani10, maco11, ochurus, Yondaime, Sistem, cuongnm, theshield, nduchoang97, rodrigoxd, Thedevilslefthand, Syamon9966, DeveloperMU, ToShirico, chinagames, platik89, wenchito, zzzvuhoaisonzzz, Alucard, mythch3ck, heto3000, edinson, yaphetsion, pandark, camilo, Arcane21, layzen1985, PoccHaHa, loyd, angelokl7, armamor, sinketz0r, eav0208, Lucyan, MatiasBaxter, rosicon, Icloud3d, josecarlos, azuko, Fabiven, esmac15321, notengo, wener1992, xfroast, maiconlive, lvlfp, shiun, surdido, Muavefenix542, muzin, 16dopex, triplexp, mubalance, nekroz520, Specifier, kove0816, tacabalarj, Whinchest, Evangelio, resistant, bcould, c4nhsatcodong, gerdixon, antoniodel, HazzdeN, johne123, brunoap, auromajon, TrystVenerious, kailknight, rubar47, ronglovel, eliasnogue, thealdair, zvuhoaisonz, felipe8745, jessy, allysonacbm, forumid, lephat298, milguer15, luis12345, alejamdro0, Eronrw1, danielgalboa, monky1, skhirtlo, csedit, meokute, Vitaminka, Wazzap28, vitrex, rafael10, radrains010, kingbr, enzoenzo, nujd00, slavea, ongchu3x, phillippecarvalho, -THOR-, erick232, conter, jeangdr, fantasma02, princekannon001, kaulinh90, mantios, jozal, Lisandro, DragonIsland, imyuda, satan2k24, Kitty, Exclusive88, shadowK, thuongneo, ILUVATAR, bebow16, perla, PhantomKr, bubik, coolgepds, adicales1, 0333111, bhilou, Bé Phanh, Doujutsu, krause8, llZeuzll, thziin, pincelp, koito89, lucasvieira, daias2, stonegameplay, tosadorin1, elcaverao, xianwen, jinfansub, Dellux, divertidoperu, dragusxd, chinchin, jhonneduard, amaral51, Francot7, terrygoth, NexusMu, carflores, Judas, Pudge, ballas, xsasuke19x, nhockute, redf0x, malinkhii, npt.formu, Eymen2121, bond2012, esteban, fuyunji123@gmail.com, Creazsia, jonasbss, Dhiablo, bamster89, shadowsz, awdawd, xxgasti13x, nhantac, bebefox, Macario, zeromaster, duglas_nike9, Louisemu, mu2020, maiker138, iDani, jeffzkie69, unico, kekedodo, maurao, 19215588, samsunggon, luizinhosk, havanty, cybercomaqp, Matt1995, bmxfenix1, DjGamer, Cshinichi1, ousado, psyqo, shinryoken, TroYans, Network Peru, daimer, bobzznnn, myloveax, daniellk, chapulaz, JhonaTanLR, venezuelagamer1, vladonsio, gega, Hessen, tiestoh, mitrandir69, Betell Host, deathsquad, POSTHanc, AlejandrO777, Alec, leandroiron, pirazok, gicorox, Odisk, chuvito, Terran, dario, Andre1981, mundomuc, hahaha11, KAKA, cley, Cheke, birdy491, CodeByte, keky, punktano1, HQDevil, SHILDKING, usuariomassiel, Dragonvl15, Marceliin, tungns0695, vnfiac, FOX, LokoFred, Fakuzz, BANGUber, lucaspereir22, Jhonaiker2023, zHammer, kathaleya, Duel1992, lczro, D A R I U S, briner2016, herjuni, fernandex3, unitmaru, nilo, MG1978, Farias, xYan, noobteam, joelxd004, alevarxz

Posteado: April 02, 2025, 09:51:22 PM 14 MuOnline / Season6 / Muserver Season 6 Premium (Update 31) by louis

Hello everyone

It's been a long time since I've released anything for the community, so here's a belated Christmas present.

Full unlimited premium update 31 for you.

Images:






Watch videos abouts all updates on my youtube channel:
https://www.youtube.com/@louisemulator

CHANGELOG:
Spoiler for Hiden:
UPDATE 12:
JULY 2018
- Custom NPC move
- CustomCommandInfo (v2)
- Custom RankUser OverHead
- Custom Party Icon(s4/s6)
- Trade Value
- Party Disable PK
- New Anti SpeedHack Skill System
- Update TvtEvent new requistes
- Add Auto Heal Skill in /Attack
- Add Global Password System
- Option to show Rankuser in all places
- Option to Hide Reset in Rankuser
- Option to Hide MReset in Rankuser
- Option to Change MReset name in Rankuser
- Disable Party HpBar option
- Increase CustomShops to 100
- Fixes in custom buy vip windows
- Others fixes

UPDATE 13:
AUGUST
- GS and GSCS new interface
- MasterReset remove fixed resets
- Command Start Invasion
- Command Start Custom Arena
- Custom Quest Command (v2)
- Custom EventTime (v2)
- Custom Npc Quest
- Custom Npc Name up to 100
- Custom Pick (v2)
- Add Custom Pick Excelent
- Add Custom Pick Socket
- Add Custom Pick SetItem
- Enable Lucky item trade
- Disable Duel Restore HP
- Disable Duel Restore SD
- Require Reset/MResets to enter in room
- Add Reset/MasterReset Requisite on Create Character
- Fixes in MapServerMove
- Other fixes

UPDATE 14:
SEPTEMBER
- Custom RF Gloves (S6)
- Custom Start Item
- Custom Interdace (S6)
- Speed SkillHack auto bloc account
- Add PK disable shop option
- Add PK disable trade option
- Add SummonMonsterRate in CustomMonster.txt
- Show ping in game option
- Show Fps in game option
- Stop Auto Reset when vip is over
- Fix auto move from Icarus if dinorant/fenrir died
- Fix Custom CommandInfo (S8)
- Fix DL Summon Party Skill (PK)
- Fix Pk Item drop to PkLevel 3 only
- Fix BuyVip + CustomStore
- Fix GuildWareHouse + Lock command
- Fix Reset remove zen
- Fix OffPvp command in Events
- Fix RankUser in GameMaster
- Fix Start event option
- Fix in Disconnect Accounts
- Fix Npc Quest Add Buff

UPDATE 15:
OCTUBER
- Add Duel MaxScore Option
- Add CustomMove to CustomNpcCommand
- Add CustomExchangeCoin to CustomNpcCommand
- Add Pk Drop Item by map Option
- Add Berserker buff(SUM) in Custom Attack
- Auto Reward Online Users System
- Auto Party buff Mana shield in Custom Attack
- Custom Exchange Coin Command
- Custom Duel Bet
- Custom Mix
- Custom disable item glow
- Guils vs Guils Event
- Skill Summon enable PK Move Option
- MapManager.txt updated
- Skill Damage System
- Guild Assistant/Battle Master can get Cs Crown
- Fix S6 Duel Score with Custom Interface S1/S2/S3
- Fix update MasterReset/Reset in rank user
- Fix Master Reset check in Custom Move
- Fix Guild Warehouse Dupe

UPDATE 16:
- Add GVG Event to Client Event Time
- Client Error logs moved to Logs folder (S6)
- Custom Bow/Crossbow (V2)
- Custom Gloves for RF(S8)
- Custom Pets System
- Disable Move List (M) Option
- Disable Set +15 Effect Option
- Increased Set items limite to 255(S6)
- Increased Item color Name(S6)
- Increased Custom Bow limit to 100
- Increased Custom Effects to 5000
- Increased Custom Item Description to 2000(S4)
- Increased Custom NpcName to 200
- Fix mini wing preview
- Fix Swith character when dying
- Fix Kalima ticket gate level
- Fix Set item drop rate
- Fix Party request when dying
- Fix GVG and TVT required item
- Fix Custom Gloves inventory position(S6)
- Fix War score + custom interface(S6)
- Fix Personal Store change item price
- Fix Custom Store close button(s6)

UPDATE 17:
- Add Keep DL command status option
- Add Option CS Reset Accumulated Time when die
- Command OffPvP by Map
- Command Helper by Map
- Command SetParty
- Command Bloc Chat
- Custom Advanced Status
- Custom Increase FPS
- Custom Jewel Bank
- Custom Npc Requirement(VIP NPC)
- Custom Monster Power Table
- Custom Monster Information (Alt+Mouse Over)
- Fix Custom Interface + Crywolf Score(S4/s6)
- Fix Custom Interface + Cs Minimap (S4/s6)
- Fix Custom Interface Dark heaven skill position(S6)
- Fix Custom Item inventory turn on mouse over(S6)
- Fix mob movement when it is dying
- Fix Guild password (removed)
- Fix Ring Starter increase damage and speed attack
- Fix Battle Royale issues
- Fix Lucky Itens Options(S6)
- Fix CS gates damage when open
- Fix CS Statue/Gate attack by defensive guild
- Fix Party Special Experience
- Fix Summon ChaosMix (S8)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan
- Fix ChaosMachine+Expansion Invent problem(S6)
- Fix Master Scrolls without master level
- Fix Master Scrolls of Battle and Strength
- Increase GameServer performance
- New Resistence Calc System (Ring,Pendant)
- New Custom Pets Options
- Pets & Guardians no descrease life option
- Ranking GvG
- Ranking Battle Royale
- Update Character Damage Calc

UPDATE 18:
- Auto Disable Custtom Attack Command when vip is over
- Auto Disable Custtom Pick Command when vip is over
- Auto Disable Auto Reset Command when vip is over
- Auto Disable OffPvp Command when vips is over
- Allow Mu Helper + Inventory Option(S6/S8)
- Boss Top Hit item drop count System
- Command Set PK
- Custom Npc Quest Reward LevelUpPoint and Zen Option
- Custom Quest Save Monster Count
- Custom Quest Reward LevelUpPoint and Zen Option
- Custom Pet New Moviment (V3)
- Custom Pet New Options (v2)
- Custom Pet Static Effect System
- Custom Pet Dynamic Effect System
- Custom Pet increased to 100
- Disable Die effect Option
- Disable Battle Royale item drop time
- Disable Time to Pick Up a dropped item option
- Disable CashShop Option (X) (S6)
- Disable Command Window (D) Option (S4/S6)
- Disable FullMap (Tab) Option (S6)
- Increased Custom Monster performance
- Increased Death Stab Skill performance
- Increased Mu Helper Max Time(S6/S8)
- JoinServer Updated to disconnect accounts
- Map by AccountLevel(Auto Move when vip is over)
- MonsterSetBase increased to 10000
- Rakilion(selupan) enable pvp option
- Trade By Map option
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S6)
- Fix Battle Royale Trade
- Fix Summon Monster with Rank User
- Fix Custom Interface Numbers (S4)
- Fix Custom Interface favorite skill number (S4/S6)
- Fix Battle Royale DL command reset
- Fix Battle Royale Skins reset
- Fix TvtEvent Remove disconnected player
- Fix TvtEvent disable pvp in stand time

UPDATE 19:
- Custom Cloak
- Custom Jewel Updated
- Custom NPC requeriment - Class
- Custom disable ItemGlow/Excellent Effect(S4/S6)
- Custom Disable Systems(S4/S6)
- Custom Pet Glow
- Combo Effect when die
- Command Jewel Pack & UnPack (V2)
- Death Stab Skill hit multiplier option
- ItemMove.txt Updated
- New Menu System (S4/S6)
- Marry Command pk can't move option
- Lock Command bloc cashshop gift
- Fix Plasma Storm Skill decrease defense/durability
- Fix Castle siege Teleport Skill Bugs
- Fix Battle Royale Increase Health Effect
- Fix Custom Pet Dinorant type Height (S6)
- Fix GvG move when get disconnect
- Fix Custom Jewel green slot on mouse over (S6)
- Fix Custom Quest issues
- Fix party byff crash (s8)
- Fix Remedy of love effect
- Fix Guardian Effect

UPDATE 20
- Allow EarthQuake skill in a Custom DarkHorse
- Change Character Delete level option
- Custom Off Attack Auto Resume
- Custom Off Store Auto Resume
- Personal Store save values
- Global Chat show server name
- Custom Item by VIP, Resets, MasterResets
- Increase max invasion to 50
- Custom Font (S4/S6)
- Custom Post Item (S4/S6)
- Server Time
- Message.txt multi-language
- Reflect Damage by class balance
- Server Allow/Disallow Pk enter
- PersonalShop(Bless,Soul,Chaos) works toghether JewelBank
- Fix Cant disable Commands withou requisites
- Fix when Gvg and Tvt starts you can pvp in other maps
- Fix Reload quiz event
- Fix Duel Bet GS Crash (S8)
- Fix Double Goer move party
- Fix chat in russian language
- Fix Custom Jewel ancient apply on non-ancient items
- Fix Item 0,41 repair (S4,S6)
- Fix Summon Party closes the CS Gate
- Fix Switch character in Kalima
- Fix Set Party command issues
- Fix CustomBow auto reload arrow
- Fix Spirit of Guardian descrease damage in Pvp
- Fix PrintScreen in 1366x768 resolution
- Removed MuError.log (S4/S6)

Update 21:
- Add 9 New Maps Slots (Total 18) (S4,S6)
- Increase Max Custom Monsters to 200
- Incresed Max Global Message size
- Show Level+Master level in the status(S4/S6)
- Changed ExpBar in the interface Season 2/8 (S4/S6)
- New Custom Interfaces (S4/S6)
- New Downgrade Options (S4/S6)
- Quest Window
- Reduce Memory use (V2)
- RankUser by quets
- Fix Marry track/trace move in events
- Fix Marlon Auto move
- Fix Hamrmony Itens use 62 ~ 72 (S4)
- Fix Cashshop button with Season 2 interface
- Fix Lugard Window fix text on Wide resolution
- Fix DisableSkillEffect client crashs
- Fix CustomWing max durability
- Fix can trade/party when dying
- Fix update monster power table when reset/mreset
- Fix Rank user vip type to works with multi-lang
- [AntiDupe] Disabled Helper Config window click when use the Chaos maxhine
- [AntiDupe] New System antidupe to show in log the dupes
- [AntiDupe] Disabled CashShop open when have a item in the Chaos
- [AntiDupe] Check Dupes when move item in the Warehouse and inventory
- [AntiDupe] Check Dupes when logout chacter
- [AntiDupe] Check dupes before send a Jewel to Jewel Bank
- [AntiDupe] Check dupes before pack and unpack

Update 22:
- AntiFlood System - Add Dragon Sky Switch ON/OFF
- Custom Attack Skill Control
- Custom Monster Effect
- Custom Monster Glow
- Character Max Rate Settings
- Right Click move item to chaos
- Right Click Equip/Unquip items
- Rank User show level + master level option
- Select Character change interface(map)/char position(S4/S6)
- Select Character show level + master level option
- Select Character show reset/mreset option
- Select character show rank user option
- Select character animations option
- Select server change room names
- Custom Summon Scroll sytem
- Custom Npc quest auto open windown when click in the NPC
- Change min monster level party formula option
- Hack Skill Check New Type
- Disable attack when use teleport skill option
- Reset Keep DL Command Point by Account level
- Elf Buffer Show Quest Window Option (S6/S8)
- Fix chat for russian language (S8)
- Fix max ip connection problem with offattack/store
- Fix stop Sky dragon when invasion ends
- Fix common shop custom value index 256 ~ 512
- Fix SpeedHackSkill type 4 - bloc account
- Fix monster(traps) show rank user
- Fix Pet block stuck
- Fix add basic skill when reset/mreset
- Fix add basic skill when use changeclass command
- Fix Cutom Item Vip
- Fix Custom Pet Dinorant type Height (S4)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S4)
- Fix marry pk trace/track
- Fix two attack at the same time (CustomAttack)
- Fix Excellent items glow (S8)
- Fix Dark Horse look around (S4/S6)
- Fix Custom Monster HP Bar (S8)
- Fix DragonSky in the GSCS
- Fix Personal store open/buy with the lock command enabled
- Fix Mu Rummy cards desappear (S8)
- Fix Show JOH option in the ancient items (S8)
- Fix marry track trace move to/from kanturu
- Fix Blood Castle drop event item loot time
- Fix IllusionTemple drop event item loot time
- Fix show pets damage decrease on advanced status
- Fix Damage PvP 380 item
- Fix new Dupe Type
- Fix Rename less than 4 characters
- Fix QuestWorld count kill monsters in party
- Fix Move from icarus if no use a wing or pet
- Fix Equip transformation rings double change skin (s8)
- Fix Boss Monster no drops
- Fix Reflect Damage (NewDamageCalc = 1)
- Fix Mana shield max Rate
- Fix Greater Life Skill in party

UPDATE 23:
- Added warning message in the Duel bet
- Auction system (max 200 auctions)
- Change Item power system(Dmg,Def)
- Command Rename show global message option (ON/OFF)
- Command Reset add coins reward option
- Command Master Reset add coins reward option
- Guild War improvements
- Increased max customjewel to 50
- Increased max custom monster glow to 400
- Increased Max ItemtooltipLine to 1024(S6/S8)
- Increased Max CustomMix to 32.000
- New GS Interface
- New Store procedure WZ_SetPlayerKiller
- New Store procedure WZ_GetPlayerKiller
- New Store procedure WZ_RankingAll
- Master Skill upgraded (s6)
- Party Level Gap Option
- Pvp championship event
- Fix Battle royale trade
- Fix Battle royale others
- Fix Commands that didn't charge coins
- Fix Client Crashs when use panda ring in Kanturu
- Fix server close withot offilines
- Fix Show +Skill in the drop name
- Fix King of Mu Event
- Fix use teleport skill using CustomAttack
- Fix Master skill issues
- Fix customn quest inventory space
- Fix equip two transformation rings with right click

Update 24:
- Added 5 extra plugins in maininfo
- Anti Speed Hack Movement
- Battle Royale Event Drop itens when die option
- Blood Castle aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Devil Square aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Imp.Guardian aplly the exp by rate of ExperienceTable
- Custom Client Icon
- Custom Item Power increased to 1000
- Custom Monster Skill
- Custom Mix (v2)
- Disable Teleport Skill when Immobilized
- New Castle Siege damage rate options
- Disable Twist slash multi skill on cs option
- Item inventory reskin (Ex. Horn of fenrir)
- EventItemBag drops in inventory option
- New Character name style
- AllowWings380Opt (house skype) verificar
- Show Monster name (S4/S6)
- Change monster name color
- Mount Stuck rate option
- Reset Monster Hit damage when player die option
- Kundun boss use OrderOfProtection and Reffil HP
- Promotional Banner when enter in game
- Fix UserHp bar position
- Fix Illusion temple remove effects when enter
- Fix Npc Delgado window (lucky coin)(S8)
- Fix Mount speed s8 (S8)
- Fix Custom Jewel aplly on Arrow/Bolt
- Fix Master Experience after reset
- Fix move when is stuned
- Fix SetItem especial values
- Fix Item tooltip bugs (s6)
- Fix Items Name in the Auction/Customquest systems
- Fix Christmas ring
- Fix Box of Kundun glow (S8)

UPDATE 25:
- Auto resume OffHelper (S4/S8)
- Add Blood Castle allow buff in safe zone option
- Add Blood Castle allow pvp option
- Add Character close time option
- Add Command /Makeall /MakeallMap
- Add Command /DropAll /DropllMap
- Add ExcellentOptionRate.txt
- Add Imperial guardian reward experience option
- Add ItemOptionWing.txt
- Add Kanturu Multi-language system
- Add Russian Roulette Remove Rate option
- Add Status Points by master level option
- Advanced event item bag updated
- Combo with 1 or 2 skills
- Custom Menu Option
- Custom MiniMap type 2
- Custom Name Style (V2) (S4/S6)
- Custom sign by VIP or RankUser
- Event Entry Count Limit
- EventItemBag coins reward option
- GS Monster Drop info system
- Key Ctrl Attack enable/disable
- Main show confirmation messagebox to close option
- Max Game Instances
- Max Master Skill tree points
- Monster health bar updated(S4/S6)
- New MonsterSetBase system
- Npc Invasion option
- PK Zone system
- Fix Blood Castle gm wings
- Fix Blood Castle shows archangel on the back
- Fix Custom Jewel excellent in Wings 2nd
- Fix Custom Jewel excellent remove without using
- Fix Custom Jewel excellent add max options on wings
- Fix Custom Jewel option add random type in wings
- Fix Friend mail + trade zen bug
- Fix Kanturu global message only in kanturu map
- Fix Lock command can buy from a personal store
- Fix Some Skills use on Custom pet
- Fix duel command with command lock activeted
- Fix bottom black bar with Custom Interface(S4/S6)
- Fix turn into pk when kill other pk
- Fix snow lorencia/noria
- Fix Jewel bank + Npc Guardsman
- Fix Black shadow + Npc Guardsman
- Fix Illustion temple ticket right-click
- Fix impale skill with custom mounts pets

UPDATE 26:
- Add ItemLevel in the ItemOption.txt
- Add EventGvGMaxGuildMembers Option
- Custom Flag System
- Custom Pet Damage decrease option
- Disable Guild PK Option
- Gremory Case System
- New DefaultClassStatus.txt file
- New MasterResetTable.txt file
- Reset Reward item
- Master Reset Reward Item
- Online time Reward Item
- Party Search System(S4/S6)
- Store Search System(S4/S6)
- Open Store in Hunt zone Option
- Two Weapons Damage Rate
- Pk Limit Option
- Fix Indulgence item (13,60)
- Fix mastered frozen stab attack speed effetct
- Fix OffHelper items level name
- Fix TopHit Monster coin reward
- Fix Skill Inside Option
- Fix Custom Quest no inventory Space
- Fix Custom Quest LevelUpPoints when reset
- Fix Online time save into database
- Fix CustomRankUser by quest no save
- Fix Gvg Max guild option
- Fix Party Gap in the JoinParty command
- Fix Teleport skill bug with sleep or stun
- Fix Map move bug with sleep or stun effect
- Fix character can't use skill with Ice arrow.
- Fix Can move when use the Summon Skill
- Fix Dark spirit postion in view port (safezone)(créditos rafhael)
- Fix Personal store view port close when die
- Fix white boots when evolve to 3rd class

UPDATE 27:
- Blood Castle event by level/reset/mreset (S4/S6)
- Devil Square event by level/reset/mreset (S4/S6)
- Character Combo Skill Damage Settings to All class
- Character.dat Max Attack Speed Option
- Common shop items with serial
- Command Remaster v2
- Command delay save
- Command delay by vip
- Dropped item tooltip
- CustomPet allow skills in mount option
- CustomNpcRequeriment check if is pk to use option
- Item Option Combination
- Guild Warehouse Message
- Marathon Event
- Improvements to the Item Serial System
- Invasion Manager Updated
- Block pk move in gate.txt option
- New EventBags for marathon and PVP championship
- Block Gens leave option
- Increase Max Buff effects to 32(S6)
- Max Custom Item description increased to 3000 (S4)
- Max Custom gloves incresed to 40 (S6/S8)
- MasterReset required stats points option
- Fix Character creation cards (S6)
- Fix reset monster top hit damage when change/close character
- Fix Master skill table points
- Fix MG skill stop attacking if have a bk using twist slash(ex)
- Fix Twist slash when riding a mount (S6)
- Fix Marry trace/track to vulcanus
- Fix Personal store inventory full block other purchases
- Fix Seach store gameserver crash
- Fix CustomNpcQuest item expire time
- Fix CustomMonster summon respaw
- Fix JewelBank + Duel bet dupe jewels
- Fix Mini map click/walk in the s8 interface(S6)
- Fix Personal Shop Tittle cut (S6)

Update 28:
- Custom Auto Move
- Custom Invasion Information(v2)
- Custom Npc Collector (v2)
- Custom skin system
- Custom stack item
- Custom Item Bank
- Custom Shop v3(S4/S6)
- Custom Chat Interfaces(S4/S6)
- ItemOptionRate.txt Updated
- Reuse removed socket option
- Multiwarehouse interface (S4/S6)
- Fix Summ Attack speed when add status points
- Fix some problems in the marathon event
- Fix Heal and potions when use MuHelper
- Fix Custom add status with some buffs
- Fix CustomAddStatus open chat when press enter
- Fix ConfirmBox open chat when press enter
- Fix Custom Monster Sound problems

Update 29:
- Allow use asan Of Mobility after reset Option
- Allow pet mount in safezone option
- Infinity Arrow option
- Custom buff icon (S4/S6)
- Custom Item Fusion
- Custom Item title color (S6)
- Custom Item Power(v2) (S4/S6)
- Custom Lucky Wheel
- Custom Model effect
- Custom pet pick item (Muun Type)
- Custom PK reward
- Custom reset/master reset button
- New hack movement check options
- MapManager Drop Type
- Quest zyro system (S6/S8)
- Fix Infinity arrow reload when offline
- Fix Master Skill tree rebuild(S4)
- Fix use hack to crash the Gameserver
- Fix Monster name behind the invasion button
- Fix duel buff removed (S6/S8)
- Fix Custom pet mount sit in the game seates

Update 30:
- Allow Guild War by map option
- Allow Marry commands by map option(trace/track)
- Allow Cashshop by map option
- Auto Save Login
- Command Message Box
- Command Reward/Rewardall multilanguage message(S6/S8)
- Create account in game
- Custom Event Time (V2)
- Custom Guild Effect
- Custom Item Description
- Notice multilanguage(S6/S8)
- Max rate of Lesser Damage Skill by class option
- Max rate of Lesser Defense Skill by class option
- Max Coins limit
- Monster invasion amount by online players count
- Incoming Message icon and Warning
- Ice Arrow Skill rate/time option
- Party Master Experience
- Reload Map/Terrain Option
- Reload Message/Notice
- Fix Castle siege after click switch can't move(S6)
- Fix Gift command with Delay
- Fix Marry trace
- Fix MonsterPowerTable by Master level
- Fix Wz_Setcoin with cashshop disabled

Update 31:
- Chaos Mix item log
- Character Start Gate by map
- Command /make /drop updated
- Experience rate option
- Gate/Move check Level+Master level
- Guild Alliance Disable PK Option
- Item plus remove level amount option
- Max Level 65000
- New Admin commands
- Required item level check master level option
- Server log utf-8 option
- Fix remove iron skill when reset master skill tree(S8)
- Fix total points in the skill tree, over 255 (S6)
- Fix Life Stone drop in the common GS
- Fix EventItemBag stack drop
- Fix Castle siege icon change when get the crown
- Fix item info close client in widescreen (S6)
- Fix menu icon type 1 when shows item info window(S6)

Downloads:


 :beer :beer :beer

Créditos:
X-team
MuEmu
louis
Haziel
Smiley
Mentor
Hugo
Hinetworks
Emershow
MyHeart
Takumi
Adrian(SSEMU)

Gracias:

Andriw17, comodind, mara777, Rivasj21, ArnoldGarcia, envideaBK, shu2004, bandido, btz750, nonoks01, remamakiller, lucio519, OldDeadly, TyKx, GoodCreator, oogunzoo, Atomixurbanx, hivin, bartmano, mazetudo, roymustang, Yondaime, goarkeys@gmail.com, William2099, carlos1989, Hessen, sauerlp, andresern98, gumay, BKPERUANO, nhochanam, wolfgo, akuma, rafaelpqd157, PKLEO, cesarjunior, akiles1345, Avatar111, lahn, delviorre, widermann, maiconsouza1997, magmapool32, BladeMaster21, andresdavi, sacox, minhchap, DaiveSN, GOMEZAR, yyf127, 1512925, as0908, imjay8, skyper0365, LokoFred, boogle, jonamix, renansmoke, vargas16, Zoeyjf, jessy, achiki, brenoamadors, Darkaizer, dark32, gastong87, becasito, Beelzebub, usuariomassiel, pklhy45, blyuv, geishy, pepito0308, HaPKoTuK, stickman23, 161012, vokisking, anhnt, Evil38, walter17, porta409, pedrinh350, muclassicbr, pinoasdasd, needlesrtt, mario12, tuyen195, nahire, EmilioJzB, ryan22, racso123, encore999, Patrii, aremylight, duongcao, RIKIRICON, Cuongkame, kreithner, nazar1, system5002, MUPHOENIXADV, CODA, vicente, vovan_9233, niconx, Hathor, maradona2.0, skullmask, GameNet, Skillz, waayangel, 2448778229, gingpawer, dialdise, Strike_161, juancarri, shgomez, alyssonaran, krishnaxDD, matiasnahu, im.maisonth, pretzel00, michaelmv, Dragojr, divertidoperu, n1mkoy, zetayepe, marcobh1, manuelrivas, tiagozika, Emeikae00, joshua420, narugamy, fakenha, ro.mirandaa, ledzem, mcalbert1, legacy101, wuachukeik, danarius123, DreamLay, congacp1, wallisonsb, ChopperJG, nofeara, riffvexx, panzes, tsunade10, suzukiyam, virusgs, Verdant, ndchung263, Rydeen, Jo3.28, carnal17, SURFRAiT, cris87, losgedes, felipedr, pokeniu, MyAugusto97, Lee11, Dode, degom10, Leon, rubar47, cuongcon333, zerpen, peleo, loco010, mhcvision, kincxh, XTREME, ninnetyer, AriesMaster, pepimusik, gsstraw, monk, xrisosx, HunStarr, elmaury99, anhtruongui, miguel1616, carflores, itamarsrosa, lokito9124, astefanov, criptonauk, truongtienhp, demanator, JesexD360, Bruno Macedo, iviih90, POLO, andinh, Esteman, lavetien, Action, stanger777, punkjaja, Nahuel1911, jhosel, rekis, dairyum, gordodotoi, Coff, deneraguiar, ocros, Sadmales, skay11, davian, motocarj, mkenetc, gop808, Victor-CC-TSM, Swagod, gatamal12, davicohab, 776655, beru1992, eris101, SoulKill3r, Sosukeivan, DjJuancito, nescafe, Mineiro, yaphetsion, Caligrasa, fer73, Kurito, tarikata, erikmorato, ngluan, Retros, HashiramaSenju, mumexico, masterlord13, tuwang1984, Small0012, renzoco, DESINGMASTHER, lukaon, natha, blizzter, binhvt1ad, jancsi182, bingamer, Tvirus, YakuzaRFF, liron, kocv123, srsti, nanito2611, xfiles20, judiltibu, sicfactory, Kev2218, eduardocol, xxkarxx, sauron2000, Fentagm311, jussez, Cruzade, julito55, lucasvieira, Dixer, panicodv, SdMasters, ichigo1234, Luck, grensoxd, saturno, Thedanier, favianxp, elcanarioloco, exu9x, Joacoar98, max1, HavertsMU, jtetux123, Joaquin93, namnotto1, manhls123, mulover15, warklock2912, kini, mechaloco, nicolasrl, ques44, PeixotoBR, goldmoney, dkfalcon, prasmatnus, xXoscarxX, rogerio013, Thgvncs, 1995744, llhenryxpxx, joelxd004, Snow, SysSolutions, raccoon, Cryztal, zeronycs, sacrilege, locobo0mer, eldemons5395, faeeiry, Puma22, carfraher, azuko, kamus, xXJanOXx30, valdera28, MetaZone, qq1988620, ZeuQram, hugo24, afonso2, mudevsbr, charsa, foster, Butiks, nguqua, BrFusion, SlayerDT16, answer, kimbo2004, snickerize, facuman471, wizardry99, betorock21, will2525, GabrielDev, latingaming, ISAER HOST, ultimatun, ppiu12, camilo, qdai241291, Lpanicio, negoveio, armflo, MsotoC, siebenpatricio, lukinhasu, Juanakin, armflo12, MilwOrm, midala23, buayza2499, xakeruli, duelmaster01, lordtazo, Zoldyck, rafael10, xxwillians, mantega, trungnttb, victormvw, multipleer, sergoj1994, jhonattanfragoso, LoveZoee, gderre, elpile, hikaru333, bymxrm, keyzor, gerchu, eze21, Timon, carlosacoli, neurosi, eddloso, Shaman, meokute, tincho088, ediany, xXTurnerxD, Gamst, gordoari, alexjgv, lukkas155, sheker, MuvnzPlus, 16dopex, elrama1323, Volk, robinson2051, ccc011993, smil158, marvin540, JORDEL, pabulosnow, 297457989, guibm, Wolfox, wendyll, C4nn4b1s, rbfd, badabuu, v1rusjkee, Lekito5, iluaan, wireshark, xeru00, emersonx13, tosadorin1, carlossgyn, zxcqwe, flower11, phamloi7710, Thebestxd1, joandry19, ramireo123, jmckpo123, rodrigobad, batianyu746, madmax24, capocimic, gutotjspe, Sarmiento21, mizubutty, Brgoogle07, danilo7799, gondar, xRaquiem, abctoz, Syamon9966, kimera, phillippecarvalho, Xiris215, yuyu2013, laditope1, chicorita, laurentiuitk, Tzadik, chokito669, yaoge, 153789086, michel22, Xyomar, marianoherrero95, hector153, makyntosh, ALCONMU, zurdo, daddy, Darkheim, osvaley, herjuni, areliux, Williansj, CAPITOL, rodrigoxd, Breno123, angel3858, Payne00, Lord perdido, Jey, Heitaok77, James, comovenga, jayprotect2013, LeninSL, CemalEroz, facufunesok, Miisoia, aof10022535, OMEGANETWORKS, awitariel15, Yerts, Fanto, cucua4, Bondan, shaito22, ADMtec, panicao1578, Ekeba, chinagames, djvenusoriginal, zzorro123, bigrealtk92, Lordknight, Mlukezic, alexfy, golias14, muedit, brunoap, Thedevilslefthand, Blaze, blackcoxd, akumaxis, nippdmo01, vikhanh92, TryMenow, Nmore25, thode1226, pokimon, moskorosi, refederal, mauryu, Phyrate, kevinx9, mupp159, flako12, armamor, noobgamer, Arcane21, wlnsouza, weymmar, JamesR5, infernal, barbudo939393, LiesMaster, hoanmaster, encode777666, wenchito, andre453, juliomu, admwoods14, trungpv, tuananh92, rafael222, cattube992, CComputer, kapella, maco11, janzkurt, SaidQ, rodrigoo22, josecarlos, jhones001, soulmagna, ritogames31, pedrinix, sk8erpig, Sistem, ttqh92, life1026, andredeco, sachaf, francos123, NanoLuiz, Atlans, theshield, tammadall, 0342043033, RayTk, jinfansub, najiko2017, dvarela, jorgegabrielromano, kuya03, Thony, david1234, kamyk22, hans.ns, 八零宙斯, progdamm, bons3gust, esmac15321, cuong1372, nghia382829, elfazor, INFIERNO, frenzo2009, lozlomoka, ZabiinoOo, Jonathan12, marcelino, wilber789, Alucard, phuc1991, Vers4ce1906, daiuycong, sinketz0r, 7glorious, ronglovel, abelito, DarkSkullSoldier, heydj, juno_kz, dr3ick, hu7vo6, sankaplayer, satanikk, pandark, gatomanhoso, juanca, pisquila, anonymousgh, empalador7, Louisemu, Chacotey, Moyo11, stadrian99, muserver15, Yuumi, Matias9, josehdrago, eacv, benjitrench, Shaper, berlim, MuCanibal, cbp777, yokkjll, MiniBestia, khangdz19, vnshell, alejamdro0, altoperu, kirinuh, manoxxx, kunygames, triplexp, jeringa21, BANGUber, ruhkennedy, khdoop, yundaime007, rota, rosicon, aujindo, LastName, nicolas420, muzin, jazsvencoop, Ratax1, rafapsi, mubalance, miracleouz, Deloxck2707, horfeo, tungns0695, saske98, 5KRTTTT, Minervil, wener1992, josue3pc, voladito, Archangelito, nbazelin, MADARGO, UnCleanOne, leocrew23, M4kr0s, TKOMCZ, awkan, bollanog, abanaljhon, Evangelio, ruidodemate, MUOrigen, STARTS, KynoxX, keitrox, juliog, juan7654321, muonline.ch, MARIANO21MZA, oatpnet, Josue8A, hanhanmu, Londes1, casperinc, muservermaker, judakiss21, dedek1, Rindy, mrbeng296, loconvm, quyanxu, mubi2, darkhice, chaprao, maximusmax, z69bardo, Hitsuzin, josiwls2, eduardo253, TheHerous, weekmu, zvuhoaisonz, ADMAndre, jhoonelpardo, carla20, allysonacbm, FixedMU, Doujutsu, unitmaru, lance2521, shadde, kennybuihp, reubs, larkan28, CezarMaster, 689072@gmail.com, Shrimp, HazzdeN, danielgalboa, slayer9987, nekroz520, datcom, pirazok, blakcklass, kodai, gaaraenixmu, matan3599, jeronemo2707, Wazzap28, eicrag123, dasty, dab30, prohards26, maphewxander, nduchoang97, VipPMR, Janela, mututhan, blogger02, pablitox13, Lotto4K4k, scring, tmaxpro, Dilong, oswaldoxo, Lisandro, pauloricardo, imyuda, emanuel72, Malyk, thenostop, lomgtomy, fedepelain, desugan, mtoo, Nazghul, punktano1, perla, bafta100, mameluc, csedit, sukerwold, lqrwr123, lucasnuutz22, itamar, davidrcj, raphaeldx1993, eliasnogue, nico73, loutlawl, Berlan Barbalho, misterioso12, nunuyjuan1231, Bafomet, ColorMu, byweltin@gmail.com, elmaxis1, satan2k24, wesleyjackie, elitingo, stereo2010, herikeri, ballas, aalexisdev, Underworld, gaito18, koito89, Fokuro23, dannys, cybercomaqp, Phantasm, pkdomal, thuclv, jpra110, SbaGomez, ProTecno, THOTH, yan1992, AnDeR, bravo99, Francot7, jozal, KALYXDX1993, bubik, wilkergrcv, lealeo123, Jhoser, anjazz, addictedbrr, ILUVATAR, theyagrara, alvaronfirehd, krause8, th3matu22, element420, xfoxk, xsasuke19x, Pinponw, malinkhii, omgsf, kasah, shadowsz, ApocalisisEMU, thuongneo, gustavo.f, egon, xianwen, daydreampy, tiago, tiestoh, daias2, xxalexandrexx11, hahaha11, exterminio, joeluis25, congpho, 5h1s0, unnamedsk1, hipnomaster, MonkeyVzla, boypost, walkeny, Kitty, crowtrash, cristhian50, andrex219, luisiro, kobe10, soutovp, andyw, oxey.mu, victorck21, briner2016, beliyniger92, xscorpx, mantios, Matt1995, kove0816, mundomuc, mugloves99, wellwisher22, notengo, Cshinichi1, demoncard, thienma, fuyunji123@gmail.com, coolgepds, piscis007, ailsoncost, bebefox, dario, singor009, Duel1992, mitrandir69, TidusDW, Andre1981, Yukki, lordspike, AreS, mael55, 19215588, Eronrw1, Dragonvl15, adicales1, helirj, King12, skinmuonline, sediento, Wam30, fantasma02, AlejandrO777, xxgasti13x, POSTHanc, notfound, Vitaminka, myway, gohancs, PCEmulador, princekannon001, zpzwb113, johne123, daimer, T-LEGENDARY, comelon666, luxgames21, hackluv, GATITO, ZagenWTF, jhonneduard, RAGNAR111, darkjano, ioryblood, FOX, RoleS123, bond2012, xXSiniestroXx, Hoangsy99, kayatokid, nujd00, vladonsio, pedornela, Jheff, hoangtammedia, esteban, agtanalata, Juninsj22, gega, nhaixuong, kekedodo, Alec, rodriexpulsados, stonegameplay, xampoulis, elcaverao, Mizuki, Part1zanBelarus, Betell Host, football, DjGamer, adryan, HQDevil, allhoy, Marceliin, Dizzy, nguyenthanhquoc47589, Viper, KAKA, cley, miiadlp87, jeangdr, zhangjianle865, guhan10, tuyentc, pasmador, danilorossim, Infame_On, Eymen2121, samsunggon, luisdaniel, tuyendam, luisrobles, dutrinha2222, elperro, awdawd, whodhell, Orion88, umperlook, JhonaTanLR, leandro3, Watuyusei, unico, PhantomKr, forumid, Domedica, losgrin7472, Dieguinho, yamahahond, victhorinox, hola23, calibur, BrayanMDZ, jeffzkie69, sauron215, Cartman, tincho1993, Nakamura, HayllanderBR, llZeuzll, dakosmu, layzen1985, keky, jhampool13

Posteado: March 23, 2025, 01:55:52 PM 16 MuOnline / Sources Generales / Source Projeto Inicial S3 Base 5.2

Bom dia, Tarde, Noite!

Segue o código-fonte inicial do meu projeto 1.04J Season 3 com base no Main 5.2.

Visto que vendi para uma pessoa e agora ela apareceu com outras e estão se beneficiando, e para evitar golpes, segue a mesma.

Lembrando que o projeto é de 2023 e não se compara ao atual!

Nada se cria, tudo se copia. Como a 1.1, aqui está a S3 da atualidade!

observação não tenho mais o cliente e as imagens do meu atual são diferentes então vao ter que montar o cliente e o muserver pode usar qualquer um, tanto o original webzen quanto a muemu!

Algumas Imagens:
https://imgur.com/a/fX4wFgj



boa sorte a todos!

se eu tiver tempo na semana penso em montar o repack e postar para todos!

Creditos:

Webzen

Louis / Ogocx Limpar a source

Hugo

Gracias:

wesleypam, zeroalenda, VERNERON, iCoder, magos22, WTeam Dev, djkaku, zehel62, cavalcante, thekillrj, kendy93, keyzor, iRvX, Matheus Marquezan, atlansdev, cri0, Plate98, milagros1229, alivejr, DemetrioJC, damayen, lemg2408, Shellshock, cuong1372, Underworld, anonymousgh, stark98, prohards26, finalfts24, Supremo, wolaizidiqiu, 0nii123, warklock2912, victorrz17, DeilanSasame, pimkungclub, JhonaTanLR, imjay8, Sub-Zero, Saxius, vantruong, brunoap, neto66, goodsfire, feins150, buayza2499, Genius05, thieugia, boylasd, matheusgomesb, baldino, RoleS123, Malyk, loyd, articuno2025, Hoangtu34, Hiếu Đại Ca, 297457989, ledemkhoc, foolish, xeru00, GabrielDev, conter, Davi, wanwaycom, CemalEroz, T-LEGENDARY, newman, Eureka26, rando, 161012, dangnhapnee, herjuni, juno_kz, itamar, wildriff66, kove0816, frogarfun, pulsefire, zhujianhui, k33n00, Axelfvm, KAKA, 29013735, roshux, Xingaw, laulinh2, maksuel, manojl, dreamboy7, 331515194, kimjfsim, nylanpro, luckystar, Hoangsy99, zhangjianle865, draco425, manfromvn, sagat202, pirazok, alankakaroto, nilomaster, pnicacio, Lotto4K4k, resistant, Ryzenn, Sasukedb, AnDeR, ScottLy, 2str0kE, navossoc, pkdomal, MU-Soul, chuckhai, mantios, trungpv, ukvayha, son1xx2, beecubin, mubongma, tuyendam, cybercomaqp, samsunggon, hoangcungclub, havanty, junin, Kosh, jukas, test10, Sentinela, Chupulum, nghia382829, mocorongo, HHugo27, Zeus, qq670348570@hotmail, abung, muedit, fengyun52894, tammadall, NghienMU, legacy101, s00x, hald22, hahaha11, pepeeh, amuleto2023, danilodc, nelson, Tester1838a, bond2012, Macario, shiftlopes, josepedro, Dexign, eraclio1, tcbaoanh, andreyzz, vcore30, skhirtlo, bubik, BaTmaaN, princekannon001, Odisk, KhongGianOL, blacksexy, 4312204, vnshell, elcaverao, HazzdeN, pedornela, kimrubi, Androjd123, Rindy, Viper, quyanxu, lucasvieira, jeronemo2707, sannea, Matt1995, Sweng, Marceliin, HaPKoTuK, hola23, bin9xhn2, xufqing, MMOTOP100, Bé Phanh, Watuyusei, birdy491, Orion88, Pyke, anhnt, SPK, hoanmaster, dahouzi, smil158, Shatter, chipcoidj, coolgepds, BDCAM, novoletto, phuongcuongmsqm, sayfmaster, hoangtammedia, c4nhsatcodong, lthai2021, xlockee, skinmuonline, zodiacddos, malke, backerchen, muccone, axell, unico, lunaticodeveloper, erickmalfoy, plyn, zAri0ns, davidrcj, viorb, myway, Malkom99, lukaz2z, beibei, mugloves99, josehdrago, gutto, Dieguinho, DjGamer, vnfiac, Thedevilslefthand, Split, williandv, subdark05, tarikata, lkt22, xxdgabriel, xlbiellx, dakosmu, short, m1sterio, Ga4umy4u, antoniodel, makyntosh, Part1zanBelarus, mu2020, mundomuc, Eternity, kellington, stanger777, Smudevelop, MUXP, saske98, gang, daimer, zHammer, MADRUGA, zeronycs, carper, vampzao123, Dizzy, wellihard, mavine, InFamous, joaovithor1, kaiocnx

Posteado: March 21, 2025, 11:56:14 AM 17 MuOnline / Season4 / Muserver Season 4 Premium (Update 31) by louis

Hello everyone

It's been a long time since I've released anything for the community, so here's a belated Christmas present.

Full unlimited premium update 31 for you.

Images:










Watch videos abouts all updates on my youtube channel:
https://www.youtube.com/@louisemulator

CHANGELOG:
Spoiler for Hiden:
UPDATE 12:
JULY 2018
- Custom NPC move
- CustomCommandInfo (v2)
- Custom RankUser OverHead
- Custom Party Icon(s4/s6)
- Trade Value
- Party Disable PK
- New Anti SpeedHack Skill System
- Update TvtEvent new requistes
- Add Auto Heal Skill in /Attack
- Add Global Password System
- Option to show Rankuser in all places
- Option to Hide Reset in Rankuser
- Option to Hide MReset in Rankuser
- Option to Change MReset name in Rankuser
- Disable Party HpBar option
- Increase CustomShops to 100
- Fixes in custom buy vip windows
- Others fixes

UPDATE 13:
AUGUST
- GS and GSCS new interface
- MasterReset remove fixed resets
- Command Start Invasion
- Command Start Custom Arena
- Custom Quest Command (v2)
- Custom EventTime (v2)
- Custom Npc Quest
- Custom Npc Name up to 100
- Custom Pick (v2)
- Add Custom Pick Excelent
- Add Custom Pick Socket
- Add Custom Pick SetItem
- Enable Lucky item trade
- Disable Duel Restore HP
- Disable Duel Restore SD
- Require Reset/MResets to enter in room
- Add Reset/MasterReset Requisite on Create Character
- Fixes in MapServerMove
- Other fixes

UPDATE 14:
SEPTEMBER
- Custom RF Gloves (S6)
- Custom Start Item
- Custom Interdace (S6)
- Speed SkillHack auto bloc account
- Add PK disable shop option
- Add PK disable trade option
- Add SummonMonsterRate in CustomMonster.txt
- Show ping in game option
- Show Fps in game option
- Stop Auto Reset when vip is over
- Fix auto move from Icarus if dinorant/fenrir died
- Fix Custom CommandInfo (S8)
- Fix DL Summon Party Skill (PK)
- Fix Pk Item drop to PkLevel 3 only
- Fix BuyVip + CustomStore
- Fix GuildWareHouse + Lock command
- Fix Reset remove zen
- Fix OffPvp command in Events
- Fix RankUser in GameMaster
- Fix Start event option
- Fix in Disconnect Accounts
- Fix Npc Quest Add Buff

UPDATE 15:
OCTUBER
- Add Duel MaxScore Option
- Add CustomMove to CustomNpcCommand
- Add CustomExchangeCoin to CustomNpcCommand
- Add Pk Drop Item by map Option
- Add Berserker buff(SUM) in Custom Attack
- Auto Reward Online Users System
- Auto Party buff Mana shield in Custom Attack
- Custom Exchange Coin Command
- Custom Duel Bet
- Custom Mix
- Custom disable item glow
- Guils vs Guils Event
- Skill Summon enable PK Move Option
- MapManager.txt updated
- Skill Damage System
- Guild Assistant/Battle Master can get Cs Crown
- Fix S6 Duel Score with Custom Interface S1/S2/S3
- Fix update MasterReset/Reset in rank user
- Fix Master Reset check in Custom Move
- Fix Guild Warehouse Dupe

UPDATE 16:
- Add GVG Event to Client Event Time
- Client Error logs moved to Logs folder (S6)
- Custom Bow/Crossbow (V2)
- Custom Gloves for RF(S8)
- Custom Pets System
- Disable Move List (M) Option
- Disable Set +15 Effect Option
- Increased Set items limite to 255(S6)
- Increased Item color Name(S6)
- Increased Custom Bow limit to 100
- Increased Custom Effects to 5000
- Increased Custom Item Description to 2000(S4)
- Increased Custom NpcName to 200
- Fix mini wing preview
- Fix Swith character when dying
- Fix Kalima ticket gate level
- Fix Set item drop rate
- Fix Party request when dying
- Fix GVG and TVT required item
- Fix Custom Gloves inventory position(S6)
- Fix War score + custom interface(S6)
- Fix Personal Store change item price
- Fix Custom Store close button(s6)

UPDATE 17:
- Add Keep DL command status option
- Add Option CS Reset Accumulated Time when die
- Command OffPvP by Map
- Command Helper by Map
- Command SetParty
- Command Bloc Chat
- Custom Advanced Status
- Custom Increase FPS
- Custom Jewel Bank
- Custom Npc Requirement(VIP NPC)
- Custom Monster Power Table
- Custom Monster Information (Alt+Mouse Over)
- Fix Custom Interface + Crywolf Score(S4/s6)
- Fix Custom Interface + Cs Minimap (S4/s6)
- Fix Custom Interface Dark heaven skill position(S6)
- Fix Custom Item inventory turn on mouse over(S6)
- Fix mob movement when it is dying
- Fix Guild password (removed)
- Fix Ring Starter increase damage and speed attack
- Fix Battle Royale issues
- Fix Lucky Itens Options(S6)
- Fix CS gates damage when open
- Fix CS Statue/Gate attack by defensive guild
- Fix Party Special Experience
- Fix Summon ChaosMix (S8)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan
- Fix ChaosMachine+Expansion Invent problem(S6)
- Fix Master Scrolls without master level
- Fix Master Scrolls of Battle and Strength
- Increase GameServer performance
- New Resistence Calc System (Ring,Pendant)
- New Custom Pets Options
- Pets & Guardians no descrease life option
- Ranking GvG
- Ranking Battle Royale
- Update Character Damage Calc

UPDATE 18:
- Auto Disable Custtom Attack Command when vip is over
- Auto Disable Custtom Pick Command when vip is over
- Auto Disable Auto Reset Command when vip is over
- Auto Disable OffPvp Command when vips is over
- Allow Mu Helper + Inventory Option(S6/S8)
- Boss Top Hit item drop count System
- Command Set PK
- Custom Npc Quest Reward LevelUpPoint and Zen Option
- Custom Quest Save Monster Count
- Custom Quest Reward LevelUpPoint and Zen Option
- Custom Pet New Moviment (V3)
- Custom Pet New Options (v2)
- Custom Pet Static Effect System
- Custom Pet Dynamic Effect System
- Custom Pet increased to 100
- Disable Die effect Option
- Disable Battle Royale item drop time
- Disable Time to Pick Up a dropped item option
- Disable CashShop Option (X) (S6)
- Disable Command Window (D) Option (S4/S6)
- Disable FullMap (Tab) Option (S6)
- Increased Custom Monster performance
- Increased Death Stab Skill performance
- Increased Mu Helper Max Time(S6/S8)
- JoinServer Updated to disconnect accounts
- Map by AccountLevel(Auto Move when vip is over)
- MonsterSetBase increased to 10000
- Rakilion(selupan) enable pvp option
- Trade By Map option
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S6)
- Fix Battle Royale Trade
- Fix Summon Monster with Rank User
- Fix Custom Interface Numbers (S4)
- Fix Custom Interface favorite skill number (S4/S6)
- Fix Battle Royale DL command reset
- Fix Battle Royale Skins reset
- Fix TvtEvent Remove disconnected player
- Fix TvtEvent disable pvp in stand time

UPDATE 19:
- Custom Cloak
- Custom Jewel Updated
- Custom NPC requeriment - Class
- Custom disable ItemGlow/Excellent Effect(S4/S6)
- Custom Disable Systems(S4/S6)
- Custom Pet Glow
- Combo Effect when die
- Command Jewel Pack & UnPack (V2)
- Death Stab Skill hit multiplier option
- ItemMove.txt Updated
- New Menu System (S4/S6)
- Marry Command pk can't move option
- Lock Command bloc cashshop gift
- Fix Plasma Storm Skill decrease defense/durability
- Fix Castle siege Teleport Skill Bugs
- Fix Battle Royale Increase Health Effect
- Fix Custom Pet Dinorant type Height (S6)
- Fix GvG move when get disconnect
- Fix Custom Jewel green slot on mouse over (S6)
- Fix Custom Quest issues
- Fix party byff crash (s8)
- Fix Remedy of love effect
- Fix Guardian Effect

UPDATE 20
- Allow EarthQuake skill in a Custom DarkHorse
- Change Character Delete level option
- Custom Off Attack Auto Resume
- Custom Off Store Auto Resume
- Personal Store save values
- Global Chat show server name
- Custom Item by VIP, Resets, MasterResets
- Increase max invasion to 50
- Custom Font (S4/S6)
- Custom Post Item (S4/S6)
- Server Time
- Message.txt multi-language
- Reflect Damage by class balance
- Server Allow/Disallow Pk enter
- PersonalShop(Bless,Soul,Chaos) works toghether JewelBank
- Fix Cant disable Commands withou requisites
- Fix when Gvg and Tvt starts you can pvp in other maps
- Fix Reload quiz event
- Fix Duel Bet GS Crash (S8)
- Fix Double Goer move party
- Fix chat in russian language
- Fix Custom Jewel ancient apply on non-ancient items
- Fix Item 0,41 repair (S4,S6)
- Fix Summon Party closes the CS Gate
- Fix Switch character in Kalima
- Fix Set Party command issues
- Fix CustomBow auto reload arrow
- Fix Spirit of Guardian descrease damage in Pvp
- Fix PrintScreen in 1366x768 resolution
- Removed MuError.log (S4/S6)

Update 21:
- Add 9 New Maps Slots (Total 18) (S4,S6)
- Increase Max Custom Monsters to 200
- Incresed Max Global Message size
- Show Level+Master level in the status(S4/S6)
- Changed ExpBar in the interface Season 2/8 (S4/S6)
- New Custom Interfaces (S4/S6)
- New Downgrade Options (S4/S6)
- Quest Window
- Reduce Memory use (V2)
- RankUser by quets
- Fix Marry track/trace move in events
- Fix Marlon Auto move
- Fix Hamrmony Itens use 62 ~ 72 (S4)
- Fix Cashshop button with Season 2 interface
- Fix Lugard Window fix text on Wide resolution
- Fix DisableSkillEffect client crashs
- Fix CustomWing max durability
- Fix can trade/party when dying
- Fix update monster power table when reset/mreset
- Fix Rank user vip type to works with multi-lang
- [AntiDupe] Disabled Helper Config window click when use the Chaos maxhine
- [AntiDupe] New System antidupe to show in log the dupes
- [AntiDupe] Disabled CashShop open when have a item in the Chaos
- [AntiDupe] Check Dupes when move item in the Warehouse and inventory
- [AntiDupe] Check Dupes when logout chacter
- [AntiDupe] Check dupes before send a Jewel to Jewel Bank
- [AntiDupe] Check dupes before pack and unpack

Update 22:
- AntiFlood System - Add Dragon Sky Switch ON/OFF
- Custom Attack Skill Control
- Custom Monster Effect
- Custom Monster Glow
- Character Max Rate Settings
- Right Click move item to chaos
- Right Click Equip/Unquip items
- Rank User show level + master level option
- Select Character change interface(map)/char position(S4/S6)
- Select Character show level + master level option
- Select Character show reset/mreset option
- Select character show rank user option
- Select character animations option
- Select server change room names
- Custom Summon Scroll sytem
- Custom Npc quest auto open windown when click in the NPC
- Change min monster level party formula option
- Hack Skill Check New Type
- Disable attack when use teleport skill option
- Reset Keep DL Command Point by Account level
- Elf Buffer Show Quest Window Option (S6/S8)
- Fix chat for russian language (S8)
- Fix max ip connection problem with offattack/store
- Fix stop Sky dragon when invasion ends
- Fix common shop custom value index 256 ~ 512
- Fix SpeedHackSkill type 4 - bloc account
- Fix monster(traps) show rank user
- Fix Pet block stuck
- Fix add basic skill when reset/mreset
- Fix add basic skill when use changeclass command
- Fix Cutom Item Vip
- Fix Custom Pet Dinorant type Height (S4)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S4)
- Fix marry pk trace/track
- Fix two attack at the same time (CustomAttack)
- Fix Excellent items glow (S8)
- Fix Dark Horse look around (S4/S6)
- Fix Custom Monster HP Bar (S8)
- Fix DragonSky in the GSCS
- Fix Personal store open/buy with the lock command enabled
- Fix Mu Rummy cards desappear (S8)
- Fix Show JOH option in the ancient items (S8)
- Fix marry track trace move to/from kanturu
- Fix Blood Castle drop event item loot time
- Fix IllusionTemple drop event item loot time
- Fix show pets damage decrease on advanced status
- Fix Damage PvP 380 item
- Fix new Dupe Type
- Fix Rename less than 4 characters
- Fix QuestWorld count kill monsters in party
- Fix Move from icarus if no use a wing or pet
- Fix Equip transformation rings double change skin (s8)
- Fix Boss Monster no drops
- Fix Reflect Damage (NewDamageCalc = 1)
- Fix Mana shield max Rate
- Fix Greater Life Skill in party

UPDATE 23:
- Added warning message in the Duel bet
- Auction system (max 200 auctions)
- Change Item power system(Dmg,Def)
- Command Rename show global message option (ON/OFF)
- Command Reset add coins reward option
- Command Master Reset add coins reward option
- Guild War improvements
- Increased max customjewel to 50
- Increased max custom monster glow to 400
- Increased Max ItemtooltipLine to 1024(S6/S8)
- Increased Max CustomMix to 32.000
- New GS Interface
- New Store procedure WZ_SetPlayerKiller
- New Store procedure WZ_GetPlayerKiller
- New Store procedure WZ_RankingAll
- Master Skill upgraded (s6)
- Party Level Gap Option
- Pvp championship event
- Fix Battle royale trade
- Fix Battle royale others
- Fix Commands that didn't charge coins
- Fix Client Crashs when use panda ring in Kanturu
- Fix server close withot offilines
- Fix Show +Skill in the drop name
- Fix King of Mu Event
- Fix use teleport skill using CustomAttack
- Fix Master skill issues
- Fix customn quest inventory space
- Fix equip two transformation rings with right click

Update 24:
- Added 5 extra plugins in maininfo
- Anti Speed Hack Movement
- Battle Royale Event Drop itens when die option
- Blood Castle aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Devil Square aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Imp.Guardian aplly the exp by rate of ExperienceTable
- Custom Client Icon
- Custom Item Power increased to 1000
- Custom Monster Skill
- Custom Mix (v2)
- Disable Teleport Skill when Immobilized
- New Castle Siege damage rate options
- Disable Twist slash multi skill on cs option
- Item inventory reskin (Ex. Horn of fenrir)
- EventItemBag drops in inventory option
- New Character name style
- AllowWings380Opt (house skype) verificar
- Show Monster name (S4/S6)
- Change monster name color
- Mount Stuck rate option
- Reset Monster Hit damage when player die option
- Kundun boss use OrderOfProtection and Reffil HP
- Promotional Banner when enter in game
- Fix UserHp bar position
- Fix Illusion temple remove effects when enter
- Fix Npc Delgado window (lucky coin)(S8)
- Fix Mount speed s8 (S8)
- Fix Custom Jewel aplly on Arrow/Bolt
- Fix Master Experience after reset
- Fix move when is stuned
- Fix SetItem especial values
- Fix Item tooltip bugs (s6)
- Fix Items Name in the Auction/Customquest systems
- Fix Christmas ring
- Fix Box of Kundun glow (S8)

UPDATE 25:
- Auto resume OffHelper (S4/S8)
- Add Blood Castle allow buff in safe zone option
- Add Blood Castle allow pvp option
- Add Character close time option
- Add Command /Makeall /MakeallMap
- Add Command /DropAll /DropllMap
- Add ExcellentOptionRate.txt
- Add Imperial guardian reward experience option
- Add ItemOptionWing.txt
- Add Kanturu Multi-language system
- Add Russian Roulette Remove Rate option
- Add Status Points by master level option
- Advanced event item bag updated
- Combo with 1 or 2 skills
- Custom Menu Option
- Custom MiniMap type 2
- Custom Name Style (V2) (S4/S6)
- Custom sign by VIP or RankUser
- Event Entry Count Limit
- EventItemBag coins reward option
- GS Monster Drop info system
- Key Ctrl Attack enable/disable
- Main show confirmation messagebox to close option
- Max Game Instances
- Max Master Skill tree points
- Monster health bar updated(S4/S6)
- New MonsterSetBase system
- Npc Invasion option
- PK Zone system
- Fix Blood Castle gm wings
- Fix Blood Castle shows archangel on the back
- Fix Custom Jewel excellent in Wings 2nd
- Fix Custom Jewel excellent remove without using
- Fix Custom Jewel excellent add max options on wings
- Fix Custom Jewel option add random type in wings
- Fix Friend mail + trade zen bug
- Fix Kanturu global message only in kanturu map
- Fix Lock command can buy from a personal store
- Fix Some Skills use on Custom pet
- Fix duel command with command lock activeted
- Fix bottom black bar with Custom Interface(S4/S6)
- Fix turn into pk when kill other pk
- Fix snow lorencia/noria
- Fix Jewel bank + Npc Guardsman
- Fix Black shadow + Npc Guardsman
- Fix Illustion temple ticket right-click
- Fix impale skill with custom mounts pets

UPDATE 26:
- Add ItemLevel in the ItemOption.txt
- Add EventGvGMaxGuildMembers Option
- Custom Flag System
- Custom Pet Damage decrease option
- Disable Guild PK Option
- Gremory Case System
- New DefaultClassStatus.txt file
- New MasterResetTable.txt file
- Reset Reward item
- Master Reset Reward Item
- Online time Reward Item
- Party Search System(S4/S6)
- Store Search System(S4/S6)
- Open Store in Hunt zone Option
- Two Weapons Damage Rate
- Pk Limit Option
- Fix Indulgence item (13,60)
- Fix mastered frozen stab attack speed effetct
- Fix OffHelper items level name
- Fix TopHit Monster coin reward
- Fix Skill Inside Option
- Fix Custom Quest no inventory Space
- Fix Custom Quest LevelUpPoints when reset
- Fix Online time save into database
- Fix CustomRankUser by quest no save
- Fix Gvg Max guild option
- Fix Party Gap in the JoinParty command
- Fix Teleport skill bug with sleep or stun
- Fix Map move bug with sleep or stun effect
- Fix character can't use skill with Ice arrow.
- Fix Can move when use the Summon Skill
- Fix Dark spirit postion in view port (safezone)(créditos rafhael)
- Fix Personal store view port close when die
- Fix white boots when evolve to 3rd class

UPDATE 27:
- Blood Castle event by level/reset/mreset (S4/S6)
- Devil Square event by level/reset/mreset (S4/S6)
- Character Combo Skill Damage Settings to All class
- Character.dat Max Attack Speed Option
- Common shop items with serial
- Command Remaster v2
- Command delay save
- Command delay by vip
- Dropped item tooltip
- CustomPet allow skills in mount option
- CustomNpcRequeriment check if is pk to use option
- Item Option Combination
- Guild Warehouse Message
- Marathon Event
- Improvements to the Item Serial System
- Invasion Manager Updated
- Block pk move in gate.txt option
- New EventBags for marathon and PVP championship
- Block Gens leave option
- Increase Max Buff effects to 32(S6)
- Max Custom Item description increased to 3000 (S4)
- Max Custom gloves incresed to 40 (S6/S8)
- MasterReset required stats points option
- Fix Character creation cards (S6)
- Fix reset monster top hit damage when change/close character
- Fix Master skill table points
- Fix MG skill stop attacking if have a bk using twist slash(ex)
- Fix Twist slash when riding a mount (S6)
- Fix Marry trace/track to vulcanus
- Fix Personal store inventory full block other purchases
- Fix Seach store gameserver crash
- Fix CustomNpcQuest item expire time
- Fix CustomMonster summon respaw
- Fix JewelBank + Duel bet dupe jewels
- Fix Mini map click/walk in the s8 interface(S6)
- Fix Personal Shop Tittle cut (S6)

Update 28:
- Custom Auto Move
- Custom Invasion Information(v2)
- Custom Npc Collector (v2)
- Custom skin system
- Custom stack item
- Custom Item Bank
- Custom Shop v3(S4/S6)
- Custom Chat Interfaces(S4/S6)
- ItemOptionRate.txt Updated
- Reuse removed socket option
- Multiwarehouse interface (S4/S6)
- Fix Summ Attack speed when add status points
- Fix some problems in the marathon event
- Fix Heal and potions when use MuHelper
- Fix Custom add status with some buffs
- Fix CustomAddStatus open chat when press enter
- Fix ConfirmBox open chat when press enter
- Fix Custom Monster Sound problems

Update 29:
- Allow use asan Of Mobility after reset Option
- Allow pet mount in safezone option
- Infinity Arrow option
- Custom buff icon (S4/S6)
- Custom Item Fusion
- Custom Item title color (S6)
- Custom Item Power(v2) (S4/S6)
- Custom Lucky Wheel
- Custom Model effect
- Custom pet pick item (Muun Type)
- Custom PK reward
- Custom reset/master reset button
- New hack movement check options
- MapManager Drop Type
- Quest zyro system (S6/S8)
- Fix Infinity arrow reload when offline
- Fix Master Skill tree rebuild(S4)
- Fix use hack to crash the Gameserver
- Fix Monster name behind the invasion button
- Fix duel buff removed (S6/S8)
- Fix Custom pet mount sit in the game seates

Update 30:
- Allow Guild War by map option
- Allow Marry commands by map option(trace/track)
- Allow Cashshop by map option
- Auto Save Login
- Command Message Box
- Command Reward/Rewardall multilanguage message(S6/S8)
- Create account in game
- Custom Event Time (V2)
- Custom Guild Effect
- Custom Item Description
- Notice multilanguage(S6/S8)
- Max rate of Lesser Damage Skill by class option
- Max rate of Lesser Defense Skill by class option
- Max Coins limit
- Monster invasion amount by online players count
- Incoming Message icon and Warning
- Ice Arrow Skill rate/time option
- Party Master Experience
- Reload Map/Terrain Option
- Reload Message/Notice
- Fix Castle siege after click switch can't move(S6)
- Fix Gift command with Delay
- Fix Marry trace
- Fix MonsterPowerTable by Master level
- Fix Wz_Setcoin with cashshop disabled

Update 31:
- Chaos Mix item log
- Character Start Gate by map
- Command /make /drop updated
- Experience rate option
- Gate/Move check Level+Master level
- Guild Alliance Disable PK Option
- Item plus remove level amount option
- Max Level 65000
- New Admin commands
- Required item level check master level option
- Server log utf-8 option
- Fix remove iron skill when reset master skill tree(S8)
- Fix total points in the skill tree, over 255 (S6)
- Fix Life Stone drop in the common GS
- Fix EventItemBag stack drop
- Fix Castle siege icon change when get the crown
- Fix item info close client in widescreen (S6)
- Fix menu icon type 1 when shows item info window(S6)

Downloads:


 :beer :beer :beer

Créditos:
X-team
MuEmu
louis
Haziel
Smiley
Mentor
Hugo
Hinetworks
Emershow
MyHeart

Gracias:

wolfgo, isaacmigeul, leonardofcruz, ques44, nbazelin, muclassicbr, losgedes, lemiks, akumaxis, Patrii, raikusou, 689072@gmail.com, Eronrw1, zeloco, llorru, loco010, wallisonsb, gatamal12, ppiu12, Overkomp, mantega, Matheus Marquezan, itamarsrosa, arthbs, felipe8745, JesexD360, Claudio1992, rickmattar, maiconsouza1997, sauron2000, carlossgyn, juniorspindola, blizzter, gordodotoi, toitinho, FluooR, andrels31, answer, michel9, tribosnet, Thedanier, exu9x, theshield, kronosal, zxmkji, marcosprazeres, MARIANO21MZA, mario531, lucasrag15, faeeiry, brunoap, jtetux123, wellmtt, anjazz, arios, betorock21, matheusgom, 331515194, bymxrm, cavalcante, keyzor, InFamous, slasherpro, sebelt, tedateamos, DjGamer, lukkas155, Marceliin, francos123, KALYXDX1993, rodrigobad, 297457989, flako12, marianoherrero95, rickluosha, HUESO, JuniorBt, TKOMCZ, chinagames, ljouan, nippdmo01, weekmu, wlnsouza, cattube992, abelito, dab30, parkianboy12, SaidQ, noobgamer, HavertsMU, eraclio1, RayTk, 八零宙斯, ronanpires, wesleypam, tarikata, nduchoang97, yokkjll, cotoco11, STARTS, nagatooo, tmaxpro, kini, k33n00, tiestoh, muexiled, izanderson, wener1992, khangdz19, mtoo, sinketz0r, Malkom99, sankaplayer, zeronycs, luciano259, prohards26, joelxd004, kaiowills, Vitaminka, maathp, virtue, itamar, tltzgltc, pauloricardo, desugan, lomgtomy, aykuang123, MonkeyVzla, eliasnogue, wesleyjackie, sk8erpig, jozal, lthai2021, delvisyg2, kyssysbk, Shaper, 5h1s0, luxgames21, johne123, hoangtammedia, AnDeR, xuanyuan, helirj, fantasma02, satan2k24, forumid, yakuu13, adicales1, musouls, loutlawl, bebefox, TidusDW, pokimon, llades, keky, HayllanderBR, nhaixuong, cristhian50, andyw, leidy002, pasmador, koito89, emiliano31, davidplima, YANKIS, volps, mael55, reidomall2, shinryoken, zHammer, MU-Soul, mantios, Buff, axell, williandv, test10, hartleybr, gutto, bond2012, Azzlaer, dangelo, jhampool13, ILUVATAR, lobinhopk, angelo0412, Fakuu08, 7glorious, quyanxu, Mizuki, ADMtec, dutrinha2222, BrayanMDZ, ioryblood, nelson, babait, betinhokpa, SHILDKING, lucasale, crazy, xsasuke19x, chapulaz, kekedodo, vladonsio, gohancs, murcielago, jeronemo2707, rujirot, bbbbcccc, zeusadm, Shaman, maxmus, almiron, blakcklass, umperlook, dakosmu, daias2, ranatube, DaiveSN, al-kapone, 19215588, samsunggon, Alec, agtanalata, venezuelagamer1, hola23, kove0816, guhan10, Cryztal, ld0902, iopq123, emersonM1, lucasvieira, hipnomaster, anhdeepmu, sauron215, tiago, xXTurnerxD, robson, BaTmaaN, luisdaniel, dedek1, Gamst, anhnt, chinchin, tuyentc, Josec19, Soft Servers mu, kingbr, punktano1, josue3pc, awdawd, Orion88, xakeruli, frenzo2009, Matt1995, phambaophong, Dizzy, MMOTOP100, ZabiinoOo, miiadlp87, djagripnos, xxalexandrexx11, unico, Yukki, mubi2, Kitty, darkjano, jeangdr, daimer, exterminio, ZagenWTF, comelon666, muzin, martinmaya, kayatokid, princekannon001, bubik, xxgasti13x, lahn, sknfvck, mundomuc, kellington, cley, T-LEGENDARY, saske98, Betell Host, thienma, elcaverao, pirazok, pedornela, wellwisher22, antony05, Eymen2121, layzen1985, xXSiniestroXx

Posteado: March 18, 2025, 07:59:25 PM 18 MuOnline / Season8 / Muserver Season 8 Premium (Update 31) by louis

Hello everyone

It's been a long time since I've released anything for the community, so here's a belated Christmas present.

Full unlimited premium update 31 for you.

Images:












Watch videos abouts all updates on my youtube channel:
https://www.youtube.com/@louisemulator

CHANGELOG:
Spoiler for Hiden:
UPDATE 12:
JULY 2018
- Custom NPC move
- CustomCommandInfo (v2)
- Custom RankUser OverHead
- Custom Party Icon(s4/s6)
- Trade Value
- Party Disable PK
- New Anti SpeedHack Skill System
- Update TvtEvent new requistes
- Add Auto Heal Skill in /Attack
- Add Global Password System
- Option to show Rankuser in all places
- Option to Hide Reset in Rankuser
- Option to Hide MReset in Rankuser
- Option to Change MReset name in Rankuser
- Disable Party HpBar option
- Increase CustomShops to 100
- Fixes in custom buy vip windows
- Others fixes

UPDATE 13:
AUGUST
- GS and GSCS new interface
- MasterReset remove fixed resets
- Command Start Invasion
- Command Start Custom Arena
- Custom Quest Command (v2)
- Custom EventTime (v2)
- Custom Npc Quest
- Custom Npc Name up to 100
- Custom Pick (v2)
- Add Custom Pick Excelent
- Add Custom Pick Socket
- Add Custom Pick SetItem
- Enable Lucky item trade
- Disable Duel Restore HP
- Disable Duel Restore SD
- Require Reset/MResets to enter in room
- Add Reset/MasterReset Requisite on Create Character
- Fixes in MapServerMove
- Other fixes

UPDATE 14:
SEPTEMBER
- Custom RF Gloves (S6)
- Custom Start Item
- Custom Interdace (S6)
- Speed SkillHack auto bloc account
- Add PK disable shop option
- Add PK disable trade option
- Add SummonMonsterRate in CustomMonster.txt
- Show ping in game option
- Show Fps in game option
- Stop Auto Reset when vip is over
- Fix auto move from Icarus if dinorant/fenrir died
- Fix Custom CommandInfo (S8)
- Fix DL Summon Party Skill (PK)
- Fix Pk Item drop to PkLevel 3 only
- Fix BuyVip + CustomStore
- Fix GuildWareHouse + Lock command
- Fix Reset remove zen
- Fix OffPvp command in Events
- Fix RankUser in GameMaster
- Fix Start event option
- Fix in Disconnect Accounts
- Fix Npc Quest Add Buff

UPDATE 15:
OCTUBER
- Add Duel MaxScore Option
- Add CustomMove to CustomNpcCommand
- Add CustomExchangeCoin to CustomNpcCommand
- Add Pk Drop Item by map Option
- Add Berserker buff(SUM) in Custom Attack
- Auto Reward Online Users System
- Auto Party buff Mana shield in Custom Attack
- Custom Exchange Coin Command
- Custom Duel Bet
- Custom Mix
- Custom disable item glow
- Guils vs Guils Event
- Skill Summon enable PK Move Option
- MapManager.txt updated
- Skill Damage System
- Guild Assistant/Battle Master can get Cs Crown
- Fix S6 Duel Score with Custom Interface S1/S2/S3
- Fix update MasterReset/Reset in rank user
- Fix Master Reset check in Custom Move
- Fix Guild Warehouse Dupe

UPDATE 16:
- Add GVG Event to Client Event Time
- Client Error logs moved to Logs folder (S6)
- Custom Bow/Crossbow (V2)
- Custom Gloves for RF(S8)
- Custom Pets System
- Disable Move List (M) Option
- Disable Set +15 Effect Option
- Increased Set items limite to 255(S6)
- Increased Item color Name(S6)
- Increased Custom Bow limit to 100
- Increased Custom Effects to 5000
- Increased Custom Item Description to 2000(S4)
- Increased Custom NpcName to 200
- Fix mini wing preview
- Fix Swith character when dying
- Fix Kalima ticket gate level
- Fix Set item drop rate
- Fix Party request when dying
- Fix GVG and TVT required item
- Fix Custom Gloves inventory position(S6)
- Fix War score + custom interface(S6)
- Fix Personal Store change item price
- Fix Custom Store close button(s6)

UPDATE 17:
- Add Keep DL command status option
- Add Option CS Reset Accumulated Time when die
- Command OffPvP by Map
- Command Helper by Map
- Command SetParty
- Command Bloc Chat
- Custom Advanced Status
- Custom Increase FPS
- Custom Jewel Bank
- Custom Npc Requirement(VIP NPC)
- Custom Monster Power Table
- Custom Monster Information (Alt+Mouse Over)
- Fix Custom Interface + Crywolf Score(S4/s6)
- Fix Custom Interface + Cs Minimap (S4/s6)
- Fix Custom Interface Dark heaven skill position(S6)
- Fix Custom Item inventory turn on mouse over(S6)
- Fix mob movement when it is dying
- Fix Guild password (removed)
- Fix Ring Starter increase damage and speed attack
- Fix Battle Royale issues
- Fix Lucky Itens Options(S6)
- Fix CS gates damage when open
- Fix CS Statue/Gate attack by defensive guild
- Fix Party Special Experience
- Fix Summon ChaosMix (S8)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan
- Fix ChaosMachine+Expansion Invent problem(S6)
- Fix Master Scrolls without master level
- Fix Master Scrolls of Battle and Strength
- Increase GameServer performance
- New Resistence Calc System (Ring,Pendant)
- New Custom Pets Options
- Pets & Guardians no descrease life option
- Ranking GvG
- Ranking Battle Royale
- Update Character Damage Calc

UPDATE 18:
- Auto Disable Custtom Attack Command when vip is over
- Auto Disable Custtom Pick Command when vip is over
- Auto Disable Auto Reset Command when vip is over
- Auto Disable OffPvp Command when vips is over
- Allow Mu Helper + Inventory Option(S6/S8)
- Boss Top Hit item drop count System
- Command Set PK
- Custom Npc Quest Reward LevelUpPoint and Zen Option
- Custom Quest Save Monster Count
- Custom Quest Reward LevelUpPoint and Zen Option
- Custom Pet New Moviment (V3)
- Custom Pet New Options (v2)
- Custom Pet Static Effect System
- Custom Pet Dynamic Effect System
- Custom Pet increased to 100
- Disable Die effect Option
- Disable Battle Royale item drop time
- Disable Time to Pick Up a dropped item option
- Disable CashShop Option (X) (S6)
- Disable Command Window (D) Option (S4/S6)
- Disable FullMap (Tab) Option (S6)
- Increased Custom Monster performance
- Increased Death Stab Skill performance
- Increased Mu Helper Max Time(S6/S8)
- JoinServer Updated to disconnect accounts
- Map by AccountLevel(Auto Move when vip is over)
- MonsterSetBase increased to 10000
- Rakilion(selupan) enable pvp option
- Trade By Map option
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S6)
- Fix Battle Royale Trade
- Fix Summon Monster with Rank User
- Fix Custom Interface Numbers (S4)
- Fix Custom Interface favorite skill number (S4/S6)
- Fix Battle Royale DL command reset
- Fix Battle Royale Skins reset
- Fix TvtEvent Remove disconnected player
- Fix TvtEvent disable pvp in stand time

UPDATE 19:
- Custom Cloak
- Custom Jewel Updated
- Custom NPC requeriment - Class
- Custom disable ItemGlow/Excellent Effect(S4/S6)
- Custom Disable Systems(S4/S6)
- Custom Pet Glow
- Combo Effect when die
- Command Jewel Pack & UnPack (V2)
- Death Stab Skill hit multiplier option
- ItemMove.txt Updated
- New Menu System (S4/S6)
- Marry Command pk can't move option
- Lock Command bloc cashshop gift
- Fix Plasma Storm Skill decrease defense/durability
- Fix Castle siege Teleport Skill Bugs
- Fix Battle Royale Increase Health Effect
- Fix Custom Pet Dinorant type Height (S6)
- Fix GvG move when get disconnect
- Fix Custom Jewel green slot on mouse over (S6)
- Fix Custom Quest issues
- Fix party byff crash (s8)
- Fix Remedy of love effect
- Fix Guardian Effect

UPDATE 20
- Allow EarthQuake skill in a Custom DarkHorse
- Change Character Delete level option
- Custom Off Attack Auto Resume
- Custom Off Store Auto Resume
- Personal Store save values
- Global Chat show server name
- Custom Item by VIP, Resets, MasterResets
- Increase max invasion to 50
- Custom Font (S4/S6)
- Custom Post Item (S4/S6)
- Server Time
- Message.txt multi-language
- Reflect Damage by class balance
- Server Allow/Disallow Pk enter
- PersonalShop(Bless,Soul,Chaos) works toghether JewelBank
- Fix Cant disable Commands withou requisites
- Fix when Gvg and Tvt starts you can pvp in other maps
- Fix Reload quiz event
- Fix Duel Bet GS Crash (S8)
- Fix Double Goer move party
- Fix chat in russian language
- Fix Custom Jewel ancient apply on non-ancient items
- Fix Item 0,41 repair (S4,S6)
- Fix Summon Party closes the CS Gate
- Fix Switch character in Kalima
- Fix Set Party command issues
- Fix CustomBow auto reload arrow
- Fix Spirit of Guardian descrease damage in Pvp
- Fix PrintScreen in 1366x768 resolution
- Removed MuError.log (S4/S6)

Update 21:
- Add 9 New Maps Slots (Total 18) (S4,S6)
- Increase Max Custom Monsters to 200
- Incresed Max Global Message size
- Show Level+Master level in the status(S4/S6)
- Changed ExpBar in the interface Season 2/8 (S4/S6)
- New Custom Interfaces (S4/S6)
- New Downgrade Options (S4/S6)
- Quest Window
- Reduce Memory use (V2)
- RankUser by quets
- Fix Marry track/trace move in events
- Fix Marlon Auto move
- Fix Hamrmony Itens use 62 ~ 72 (S4)
- Fix Cashshop button with Season 2 interface
- Fix Lugard Window fix text on Wide resolution
- Fix DisableSkillEffect client crashs
- Fix CustomWing max durability
- Fix can trade/party when dying
- Fix update monster power table when reset/mreset
- Fix Rank user vip type to works with multi-lang
- [AntiDupe] Disabled Helper Config window click when use the Chaos maxhine
- [AntiDupe] New System antidupe to show in log the dupes
- [AntiDupe] Disabled CashShop open when have a item in the Chaos
- [AntiDupe] Check Dupes when move item in the Warehouse and inventory
- [AntiDupe] Check Dupes when logout chacter
- [AntiDupe] Check dupes before send a Jewel to Jewel Bank
- [AntiDupe] Check dupes before pack and unpack

Update 22:
- AntiFlood System - Add Dragon Sky Switch ON/OFF
- Custom Attack Skill Control
- Custom Monster Effect
- Custom Monster Glow
- Character Max Rate Settings
- Right Click move item to chaos
- Right Click Equip/Unquip items
- Rank User show level + master level option
- Select Character change interface(map)/char position(S4/S6)
- Select Character show level + master level option
- Select Character show reset/mreset option
- Select character show rank user option
- Select character animations option
- Select server change room names
- Custom Summon Scroll sytem
- Custom Npc quest auto open windown when click in the NPC
- Change min monster level party formula option
- Hack Skill Check New Type
- Disable attack when use teleport skill option
- Reset Keep DL Command Point by Account level
- Elf Buffer Show Quest Window Option (S6/S8)
- Fix chat for russian language (S8)
- Fix max ip connection problem with offattack/store
- Fix stop Sky dragon when invasion ends
- Fix common shop custom value index 256 ~ 512
- Fix SpeedHackSkill type 4 - bloc account
- Fix monster(traps) show rank user
- Fix Pet block stuck
- Fix add basic skill when reset/mreset
- Fix add basic skill when use changeclass command
- Fix Cutom Item Vip
- Fix Custom Pet Dinorant type Height (S4)
- Fix Custom Pet Dinorant type Fly Icarus/Tarkan(S4)
- Fix marry pk trace/track
- Fix two attack at the same time (CustomAttack)
- Fix Excellent items glow (S8)
- Fix Dark Horse look around (S4/S6)
- Fix Custom Monster HP Bar (S8)
- Fix DragonSky in the GSCS
- Fix Personal store open/buy with the lock command enabled
- Fix Mu Rummy cards desappear (S8)
- Fix Show JOH option in the ancient items (S8)
- Fix marry track trace move to/from kanturu
- Fix Blood Castle drop event item loot time
- Fix IllusionTemple drop event item loot time
- Fix show pets damage decrease on advanced status
- Fix Damage PvP 380 item
- Fix new Dupe Type
- Fix Rename less than 4 characters
- Fix QuestWorld count kill monsters in party
- Fix Move from icarus if no use a wing or pet
- Fix Equip transformation rings double change skin (s8)
- Fix Boss Monster no drops
- Fix Reflect Damage (NewDamageCalc = 1)
- Fix Mana shield max Rate
- Fix Greater Life Skill in party

UPDATE 23:
- Added warning message in the Duel bet
- Auction system (max 200 auctions)
- Change Item power system(Dmg,Def)
- Command Rename show global message option (ON/OFF)
- Command Reset add coins reward option
- Command Master Reset add coins reward option
- Guild War improvements
- Increased max customjewel to 50
- Increased max custom monster glow to 400
- Increased Max ItemtooltipLine to 1024(S6/S8)
- Increased Max CustomMix to 32.000
- New GS Interface
- New Store procedure WZ_SetPlayerKiller
- New Store procedure WZ_GetPlayerKiller
- New Store procedure WZ_RankingAll
- Master Skill upgraded (s6)
- Party Level Gap Option
- Pvp championship event
- Fix Battle royale trade
- Fix Battle royale others
- Fix Commands that didn't charge coins
- Fix Client Crashs when use panda ring in Kanturu
- Fix server close withot offilines
- Fix Show +Skill in the drop name
- Fix King of Mu Event
- Fix use teleport skill using CustomAttack
- Fix Master skill issues
- Fix customn quest inventory space
- Fix equip two transformation rings with right click

Update 24:
- Added 5 extra plugins in maininfo
- Anti Speed Hack Movement
- Battle Royale Event Drop itens when die option
- Blood Castle aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Devil Square aplly the exp by rate of ExperienceTable
- Chaos Castle aplly the exp by rate of ExperienceTable
- Imp.Guardian aplly the exp by rate of ExperienceTable
- Custom Client Icon
- Custom Item Power increased to 1000
- Custom Monster Skill
- Custom Mix (v2)
- Disable Teleport Skill when Immobilized
- New Castle Siege damage rate options
- Disable Twist slash multi skill on cs option
- Item inventory reskin (Ex. Horn of fenrir)
- EventItemBag drops in inventory option
- New Character name style
- AllowWings380Opt (house skype) verificar
- Show Monster name (S4/S6)
- Change monster name color
- Mount Stuck rate option
- Reset Monster Hit damage when player die option
- Kundun boss use OrderOfProtection and Reffil HP
- Promotional Banner when enter in game
- Fix UserHp bar position
- Fix Illusion temple remove effects when enter
- Fix Npc Delgado window (lucky coin)(S8)
- Fix Mount speed s8 (S8)
- Fix Custom Jewel aplly on Arrow/Bolt
- Fix Master Experience after reset
- Fix move when is stuned
- Fix SetItem especial values
- Fix Item tooltip bugs (s6)
- Fix Items Name in the Auction/Customquest systems
- Fix Christmas ring
- Fix Box of Kundun glow (S8)

UPDATE 25:
- Auto resume OffHelper (S4/S8)
- Add Blood Castle allow buff in safe zone option
- Add Blood Castle allow pvp option
- Add Character close time option
- Add Command /Makeall /MakeallMap
- Add Command /DropAll /DropllMap
- Add ExcellentOptionRate.txt
- Add Imperial guardian reward experience option
- Add ItemOptionWing.txt
- Add Kanturu Multi-language system
- Add Russian Roulette Remove Rate option
- Add Status Points by master level option
- Advanced event item bag updated
- Combo with 1 or 2 skills
- Custom Menu Option
- Custom MiniMap type 2
- Custom Name Style (V2) (S4/S6)
- Custom sign by VIP or RankUser
- Event Entry Count Limit
- EventItemBag coins reward option
- GS Monster Drop info system
- Key Ctrl Attack enable/disable
- Main show confirmation messagebox to close option
- Max Game Instances
- Max Master Skill tree points
- Monster health bar updated(S4/S6)
- New MonsterSetBase system
- Npc Invasion option
- PK Zone system
- Fix Blood Castle gm wings
- Fix Blood Castle shows archangel on the back
- Fix Custom Jewel excellent in Wings 2nd
- Fix Custom Jewel excellent remove without using
- Fix Custom Jewel excellent add max options on wings
- Fix Custom Jewel option add random type in wings
- Fix Friend mail + trade zen bug
- Fix Kanturu global message only in kanturu map
- Fix Lock command can buy from a personal store
- Fix Some Skills use on Custom pet
- Fix duel command with command lock activeted
- Fix bottom black bar with Custom Interface(S4/S6)
- Fix turn into pk when kill other pk
- Fix snow lorencia/noria
- Fix Jewel bank + Npc Guardsman
- Fix Black shadow + Npc Guardsman
- Fix Illustion temple ticket right-click
- Fix impale skill with custom mounts pets

UPDATE 26:
- Add ItemLevel in the ItemOption.txt
- Add EventGvGMaxGuildMembers Option
- Custom Flag System
- Custom Pet Damage decrease option
- Disable Guild PK Option
- Gremory Case System
- New DefaultClassStatus.txt file
- New MasterResetTable.txt file
- Reset Reward item
- Master Reset Reward Item
- Online time Reward Item
- Party Search System(S4/S6)
- Store Search System(S4/S6)
- Open Store in Hunt zone Option
- Two Weapons Damage Rate
- Pk Limit Option
- Fix Indulgence item (13,60)
- Fix mastered frozen stab attack speed effetct
- Fix OffHelper items level name
- Fix TopHit Monster coin reward
- Fix Skill Inside Option
- Fix Custom Quest no inventory Space
- Fix Custom Quest LevelUpPoints when reset
- Fix Online time save into database
- Fix CustomRankUser by quest no save
- Fix Gvg Max guild option
- Fix Party Gap in the JoinParty command
- Fix Teleport skill bug with sleep or stun
- Fix Map move bug with sleep or stun effect
- Fix character can't use skill with Ice arrow.
- Fix Can move when use the Summon Skill
- Fix Dark spirit postion in view port (safezone)(créditos rafhael)
- Fix Personal store view port close when die
- Fix white boots when evolve to 3rd class

UPDATE 27:
- Blood Castle event by level/reset/mreset (S4/S6)
- Devil Square event by level/reset/mreset (S4/S6)
- Character Combo Skill Damage Settings to All class
- Character.dat Max Attack Speed Option
- Common shop items with serial
- Command Remaster v2
- Command delay save
- Command delay by vip
- Dropped item tooltip
- CustomPet allow skills in mount option
- CustomNpcRequeriment check if is pk to use option
- Item Option Combination
- Guild Warehouse Message
- Marathon Event
- Improvements to the Item Serial System
- Invasion Manager Updated
- Block pk move in gate.txt option
- New EventBags for marathon and PVP championship
- Block Gens leave option
- Increase Max Buff effects to 32(S6)
- Max Custom Item description increased to 3000 (S4)
- Max Custom gloves incresed to 40 (S6/S8)
- MasterReset required stats points option
- Fix Character creation cards (S6)
- Fix reset monster top hit damage when change/close character
- Fix Master skill table points
- Fix MG skill stop attacking if have a bk using twist slash(ex)
- Fix Twist slash when riding a mount (S6)
- Fix Marry trace/track to vulcanus
- Fix Personal store inventory full block other purchases
- Fix Seach store gameserver crash
- Fix CustomNpcQuest item expire time
- Fix CustomMonster summon respaw
- Fix JewelBank + Duel bet dupe jewels
- Fix Mini map click/walk in the s8 interface(S6)
- Fix Personal Shop Tittle cut (S6)

Update 28:
- Custom Auto Move
- Custom Invasion Information(v2)
- Custom Npc Collector (v2)
- Custom skin system
- Custom stack item
- Custom Item Bank
- Custom Shop v3(S4/S6)
- Custom Chat Interfaces(S4/S6)
- ItemOptionRate.txt Updated
- Reuse removed socket option
- Multiwarehouse interface (S4/S6)
- Fix Summ Attack speed when add status points
- Fix some problems in the marathon event
- Fix Heal and potions when use MuHelper
- Fix Custom add status with some buffs
- Fix CustomAddStatus open chat when press enter
- Fix ConfirmBox open chat when press enter
- Fix Custom Monster Sound problems

Update 29:
- Allow use asan Of Mobility after reset Option
- Allow pet mount in safezone option
- Infinity Arrow option
- Custom buff icon (S4/S6)
- Custom Item Fusion
- Custom Item title color (S6)
- Custom Item Power(v2) (S4/S6)
- Custom Lucky Wheel
- Custom Model effect
- Custom pet pick item (Muun Type)
- Custom PK reward
- Custom reset/master reset button
- New hack movement check options
- MapManager Drop Type
- Quest zyro system (S6/S8)
- Fix Infinity arrow reload when offline
- Fix Master Skill tree rebuild(S4)
- Fix use hack to crash the Gameserver
- Fix Monster name behind the invasion button
- Fix duel buff removed (S6/S8)
- Fix Custom pet mount sit in the game seates

Update 30:
- Allow Guild War by map option
- Allow Marry commands by map option(trace/track)
- Allow Cashshop by map option
- Auto Save Login
- Command Message Box
- Command Reward/Rewardall multilanguage message(S6/S8)
- Create account in game
- Custom Event Time (V2)
- Custom Guild Effect
- Custom Item Description
- Notice multilanguage(S6/S8)
- Max rate of Lesser Damage Skill by class option
- Max rate of Lesser Defense Skill by class option
- Max Coins limit
- Monster invasion amount by online players count
- Incoming Message icon and Warning
- Ice Arrow Skill rate/time option
- Party Master Experience
- Reload Map/Terrain Option
- Reload Message/Notice
- Fix Castle siege after click switch can't move(S6)
- Fix Gift command with Delay
- Fix Marry trace
- Fix MonsterPowerTable by Master level
- Fix Wz_Setcoin with cashshop disabled

Update 31:
- Chaos Mix item log
- Character Start Gate by map
- Command /make /drop updated
- Experience rate option
- Gate/Move check Level+Master level
- Guild Alliance Disable PK Option
- Item plus remove level amount option
- Max Level 65000
- New Admin commands
- Required item level check master level option
- Server log utf-8 option
- Fix remove iron skill when reset master skill tree(S8)
- Fix total points in the skill tree, over 255 (S6)
- Fix Life Stone drop in the common GS
- Fix EventItemBag stack drop
- Fix Castle siege icon change when get the crown
- Fix item info close client in widescreen (S6)
- Fix menu icon type 1 when shows item info window(S6)

Downloads:



 :beer :beer :beer

Créditos:
X-team
MuEmu
louis
Haziel
Smiley
Mentor
Hugo
Hinetworks
Emershow
MyHeart

Gracias:

marvin540, chuckhai, widermann, degom10, monk, manaman, boogle, lukinn, MUPHOENIXADV, tarikata, minhvn12, kheyziitow12, kurogg, walter17, enks10, nbazelin, malayo270, bons3gust, Skillz, lemiks, DarkovaX, Lee11, tsunade10, bamster89, paulinunix, reonu, kincxh, gsstraw, peleo, KairosREX, miguel1616, lendwen, 689072@gmail.com, Josec19, Dixer, Nahuel1911, marti007, 776655, gilbert5, gokudo86, hugo24, blogger02, helirj, exu9x, answer, MilwOrm, Joacoar98, theshield, Lisandro, Jess, faeeiry, Joaquin93, charsa, eliasnogue, Juanakin, betorock21, berlim, carlossgyn, TKOMCZ, Gamst, midala23, fghuy__444@hotmail.com, zinox, panicao1578, weekmu, AnDeR, Specifier, desugan, LokoFred, 153789086, LuisEADM, LeninSL, ziquielbr, abelito, noobgamer, idluiz, franchezca2024, scring, wesleypam, imyuda, rafapsi, sankaplayer, daiuycong, juno_kz, Aerys, nduchoang97, viper026, Matias9, fedepelain, mubalance, rota, shinryoken, janklaw, k33n00, memitocs, jozal, Ketamine, gmxxmu, Caryfuk, z69bardo, anjazz, kksa132456, prohards26, thaibun, kaiowills, Ederson23, TheHerous, jayprotect2013, thuongneo, xianwen, unitmaru, egon, bafta100, OMEGANETWORKS, wesleyjackie, KarLi, krause8, ramilidol, Fanto, daniellk, 5h1s0, laulinh2, element420, wellihard, forumid, luxgames21, takumi12, bebefox, satooosogui, andyw, 774455, dario, Thony, TidusDW, itamar, delaguila, mario12, YANKIS, awdawd, bigrealtk92, dutns1, reidomall2, unnamedsk1, test10, shadowK, xsasuke19x, 19215588, lqrwr123, mantios, leasnetwork, Andre1981, LEITOK, reubs, Stampfer, kocv123, baurock81900, bubik, nghia382829, GM-Supremo, Tave96, mumexico, gutto, magenta, Slayerbr, Hiếu Đại Ca, Crowley, mcalbert1, Alec, crazy, kayatokid, lukaosaw, lucasale, sannea, samuel121, bloodknigh, perla, ceafvzla, bbbbcccc, druwks, josehdrago, blakcklass, muzin, Jaazo7u7, maxmus, ballas, ahmetoz27, T-LEGENDARY, criptonauk, anhnt, rbfd, kove0816, lczro, guhan10, lvlfp, emersonM1, MatiasBaxter, maphewxander, sauron215, Cheke, tiago, rastuza, hikaru333, GATITO, Thteko, 2str0kE, KAKA, rodrigoo22, notfound, martinmaya, miiadlp87, lahn, GabrielDev, kellington, DaiveSN, ILUVATAR, cristhian50, antony05, bulk9995, jhampool13, 0333111, Hanx, luisrojashp, fuyunji123@gmail.com, vladonsio, YOUNGJU KIM, sharkll, josue3pc, yosuel99, lavangty, Archangelito, Mr-K, lautha, boypost, Dear, SupremoBM, CAPITOL, namnotto1, sadas23, pinit, ZabiinoOo, addictedbrr, notengo, jesus1994, daimer, llhenryxpxx, Kitty, darkjano, carnal17, elcaverao, Eternity, daias2, AlejandrO777, drendy, comelon666, lomgtomy, jaakov09, Extreme, hola23, Dode, stereo2010, mugloves99, binhchivn, umperlook, exterminio, ellite3, ailsoncost, lupart, mundomuc, robson, dakosmu, unico, mael55, HazzdeN, Dizzy, pirazok, wellwisher22, Hessen, ADMtec, thienma, bealex, ZagenWTF, Judas, pretzel00, slayersc, Orion88, Matt1995, kekedodo, bond2012, agtanalata, djagripnos, quyanxu, tuyendam, hoangbon, DjGamer, Underworld, hoangtammedia, muphantom, hfhmu, Eymen2121, Vazamento, sonytfm, calibur, nhaixuong, Malkom99, Watuyusei, yamahahond, beibei, llZeuzll, exodo47, lucasvieira, samsunggon, Eronrw1, Kingt, adryan, traxxx, Viper, nelson
SOURCER LAUNCHER MAIS CORREÇÃO DE ERRO! E ESTAVEL





CORREÇAO DE FALHA LOGIN
CORREÇAO DE EMAIL
CORREÇAO DE UPDATE
CORREÇAO DE RECUPERAÇAO DE ARQUIVOS PERDIDOS
CORREÇAO DE DELAY LAUNCHER





LAUNCHER 100% CORRIGIDO



DESFRUTE DO MELHOR LAUNCHER DA NET


ABRIGADO A TODOS!









SENHA:17182025


Posteado: March 17, 2025, 02:43:05 AM 20 MuOnline / Extras / El famoso Guardian Path



No se ni como ni porque nadie resubio este maraviloso parche de MU ONLINE siendo que es uno de los mas buscados y que todos sus links en internet son de hace 10 años pero que nadie se dio o atrevio a recrear el parche.

Esto no es un HACK y no afecta al juego mismo o causara problemas al servidor, yo creo que esto le da mas realismo al juego pero tendras que saber que solo funciona con los mapas originales de MU ONLINE de: LORENCIA, DEVIAS y NORIA.
La Lorencia que tiene la fuente de agua original y la noria no expandida y la devias original sin las modificaciones que luego le pusieron de arenas pvp y demas.

Pero que hace este parche?

Basicamente se edito el archivo TERRAIN para que el cliente entrara a las zonas "LIBRES" en las zonas "SAFE" entonces el usuario podra volar si es que tiene alas, podra correr, podra ver las mascotas de los demas usuarios, y podra tirar poderes en la ciudad.

OJO EL PODER DE TIRAR PODERES EN LA CIUDAD NO ES UN HACK NI PODRA MATAR USUARIOS PORQUE SENCILLAMENTE EL SERVIDOR TAMBIEN TIENE SU PROPIO "TERRAIN" DE CADA MAPA.

Si el TERRAIN de lado servidor estuviera configurado para que haya PvP en la ciudad tendrias que configurarlo tambien en cliente y asi creo que funcionaria, jajaj ya no recuerdo, tendria que volver a testearlo pero no tengo ganas de montar todo xDDD

ME DEJAN COMENTARIO SI PROBARON Y FUNCIONO.

Me pueden dar BAN por esto?

Lamentablemente hay muchas personas hoy en dia que dicen ser ADM que no tienen ni la mas puta idea de que estas haciendo y te terminan dando BAN porque no saben que hiciste ni como y que te dieron BAN prque estabas tirando poderes en la ciudad XDDDDDDDDDDDDD

Se puede restablecer a como estaba luego de usar el Guardian Path?

Si y es facil, solo debes tener los archivos originales que reemplazaste al principio o bajar el cliente de nuevo de tu servidor que estes jugando.

Puedo manipularlo y/o modificarlo para dar mejoras

Si puedes modificarlo usando cualquier MuWorldEditor o Pentium Tools para mas profesionalismo y mejores detalles, pero para principiantes es mejor MuWorldEditor.

Puedo hacer esto con cualquier mapa que tenga ciudad?

Siii tambien podras generarlo con Tarkan, Elbeland, cualquier mapa que tenga CIUDAD, en el editor es facil de entender, las zonas ROJAS son PvP, las zonas VERDES son NoPvP, y las amarillas son las zonas que estan liberadas tal y como lo hicimos ahora en GUARDIAN PATH.

Hay forma de proteger el cliente para que esto no pase o no lo hagan los users?

Si puedes hacerlo de diferentes razones, si tienes un launcher que comprueba CRC del cliente solo debes agregar a tu lado SERVIDOR DE ACTUALIZACIONES el archivo "Terrain" de tu cliente, al momento de abrir el Launcher este se actualize, la otra seria en agregar la proteccion al ANTIHACK que estes utilizando pero al hacerlo estaras excluyendo al usuario vaya a saber cuantos minutos o directamente le diste BAN automatico, todo eso tendras que revisar para tener un buen cliente.

IMAGENES DEL ANTES DE PONER EL PARCHE






IMAGENES DEL DESPUES DE PONER EL PARCHE








Como podran ver en las imagenes podran observar que hay personajes volando y usando sus mascotas.
Espero que les haya gustado esto y lo usen sabiamente :v

DESCARGA


    DESCARGA DE MEGA




El link de descarga tiene redireccion pero solo es para un contador de visitas y cuantas veces se descargo xDD
NO BAN PLEASE XDDD


Espero que les haya gustado todo y puedan entender mas de MU ONLINE de los que somos vieja escuela.
Paginas: [1] 2 3 ... 21