Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: LEGENDARY - LastUpdate - Lua SeverSide- S6.E15 GamingMaster - 2025  (Visto 7754 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline thechad #30 Posteado: August 18, 2025, 07:22:18 PM | Modificado: August 18, 2025, 07:27:45 PM by thechad

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 1
  • Gracias recibida: 5
  • ar
XD Buenas Cosas tiene Para una base Y puedan agregar mas cositas .. !  aplausos Lo malo que el 1.04e Ya esta quedando atras todos andan en la base 5.2 xD

cuando lanzas tu version custom de la 5.2 bro?
version 5.2 - all works fine
$2000 usd , like mudream, test Eterealmu.com





First of all, I want to clarify that what he is selling are not the files of Mu Dream nor those of Mu Etereal, he might be selling his own 5.2.
Next, I would like to mention that the developers of Mu Etereal do not frequent tuservermu. They are independent video game developers with extensive experience in game development I know this because I work on that project on the configuration side and I am in direct contact with them.

and T-LEGENDARY, please make it clear becouse by posting a picture of the administrator alongside the text you wrote, many people might think that you are the administrator and director of this project.

Also, the claim that “all work fine” is simply not realistic or either too optimistic. The 5.2 version has many errors, even in live and hard-tested environments. Our version, although live, still presents some issues, and we work very hard every single day to fix and improve as much as possible.

If anyone needs the commercial contact of the Etereal creators, you can ask me in private. They are my friends, and I will gladly provide it.

Gracias:


Offline T-LEGENDARY #31 Posteado: August 19, 2025, 07:51:27 AM | Modificado: August 20, 2025, 03:41:57 PM by T-LEGENDARY

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br

Offline samsunggon #32 Posteado: August 19, 2025, 08:55:19 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 468
  • Gracias recibida: 2567
  • ph

DISCORD: valentino1515


Offline truongtienhp #33 Posteado: August 23, 2025, 11:30:31 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 62
  • Gracias recibida: 30

Gracias:


Offline T-LEGENDARY #34 Posteado: August 25, 2025, 03:58:10 PM | Modificado: August 25, 2025, 04:00:55 PM by T-LEGENDARY

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br
Update bugs: dupe or lost item by BankItem.

newsboard don't show text too  cool2

if anyone has the solution, please share


Offline truongtienhp #35 Posteado: August 25, 2025, 08:36:26 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 62
  • Gracias recibida: 30
Update bugs: dupe or lost item by BankItem.

newsboard don't show text too  cool2

if anyone has the solution, please share

Fix bug BankItem.


Code: [Select]
bool BCustomItemBank::CongTruBank(int aIndex, int ItemIndex, int ItemLevel, int Vaule)
{
    if (gObj[aIndex].Type != OBJECT_USER || Vaule == 0)
    {
        return false;
    }

    if (gObjIsConnected(aIndex) == false)
    {
        return false;
    }

    if (gObj[aIndex].IsBot >= 1 || gObj[aIndex].m_OfflineMode != 0 /*|| gObj[aIndex].IsFakeOnline != 0*/)
    {
        return false;
    }

    if (!this->Enable)
    {
        return false;
    }

    for (int n = 0; n < 100; n++)
    {
        if (gObj[aIndex].BankJewelData[n].ItemIndex == -1) continue;

        int mSlot = this->CheckInfoListItemBank(ItemIndex, ItemLevel);
        if (mSlot == -1) continue;

        if (gObj[aIndex].BankJewelData[n].ItemIndex == ItemIndex &&
            gObj[aIndex].BankJewelData[n].ItemLevel == ItemLevel)
        {
            int beforeCount = gObj[aIndex].BankJewelData[n].ItemCount; // Số dư trước

            if (Vaule > 0) // Gửi vào ngân hàng
            {
                if ((Vaule + beforeCount) > this->mListItemBank[mSlot].MaxCountType[gObj[aIndex].AccountLevel])
                {
                    gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                        this->GetMessage(3),
                        gItemLevel.GetItemName(this->mListItemBank[mSlot].ItemIndex, this->mListItemBank[mSlot].ItemLevel),
                        this->mListItemBank[mSlot].MaxCountType[gObj[aIndex].AccountLevel]);
                    return false;
                }

                gObj[aIndex].BankJewelData[n].ItemCount += Vaule;

                gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                    this->GetMessage(4), Vaule,
                    gItemLevel.GetItemName(ItemIndex, ItemLevel));
            }
            else if (Vaule < 0) // Rút từ ngân hàng
            {
                if ((beforeCount + Vaule) < 0)
                {
                    gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                        this->GetMessage(2));
                    return false;
                }

                gObj[aIndex].BankJewelData[n].ItemCount += Vaule;

                gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                    this->GetMessage(5), Vaule,
                    gItemLevel.GetItemName(ItemIndex, ItemLevel));
            }

            int afterCount = gObj[aIndex].BankJewelData[n].ItemCount; // Số dư sau

            // ===== Lưu DB ngay sau khi thay đổi =====
            this->GSSendDSSaveDataUser(aIndex);

            // Gửi thông tin mới về client
            this->UserSendClientInfo(aIndex);

            return true;
        }
    }

    return false;
}

Gracias:


Offline T-LEGENDARY #36 Posteado: August 26, 2025, 02:55:10 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br
Update bugs: dupe or lost item by BankItem.

newsboard don't show text too  cool2

if anyone has the solution, please share

Fix bug BankItem.


Code: [Select]
bool BCustomItemBank::CongTruBank(int aIndex, int ItemIndex, int ItemLevel, int Vaule)
{
    if (gObj[aIndex].Type != OBJECT_USER || Vaule == 0)
    {
        return false;
    }

    if (gObjIsConnected(aIndex) == false)
    {
        return false;
    }

    if (gObj[aIndex].IsBot >= 1 || gObj[aIndex].m_OfflineMode != 0 /*|| gObj[aIndex].IsFakeOnline != 0*/)
    {
        return false;
    }

    if (!this->Enable)
    {
        return false;
    }

    for (int n = 0; n < 100; n++)
    {
        if (gObj[aIndex].BankJewelData[n].ItemIndex == -1) continue;

        int mSlot = this->CheckInfoListItemBank(ItemIndex, ItemLevel);
        if (mSlot == -1) continue;

        if (gObj[aIndex].BankJewelData[n].ItemIndex == ItemIndex &&
            gObj[aIndex].BankJewelData[n].ItemLevel == ItemLevel)
        {
            int beforeCount = gObj[aIndex].BankJewelData[n].ItemCount; // Số dư trước

            if (Vaule > 0) // Gửi vào ngân hàng
            {
                if ((Vaule + beforeCount) > this->mListItemBank[mSlot].MaxCountType[gObj[aIndex].AccountLevel])
                {
                    gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                        this->GetMessage(3),
                        gItemLevel.GetItemName(this->mListItemBank[mSlot].ItemIndex, this->mListItemBank[mSlot].ItemLevel),
                        this->mListItemBank[mSlot].MaxCountType[gObj[aIndex].AccountLevel]);
                    return false;
                }

                gObj[aIndex].BankJewelData[n].ItemCount += Vaule;

                gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                    this->GetMessage(4), Vaule,
                    gItemLevel.GetItemName(ItemIndex, ItemLevel));
            }
            else if (Vaule < 0) // Rút từ ngân hàng
            {
                if ((beforeCount + Vaule) < 0)
                {
                    gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                        this->GetMessage(2));
                    return false;
                }

                gObj[aIndex].BankJewelData[n].ItemCount += Vaule;

                gNotice.GCNoticeSend(aIndex, 1, 0, 0, 0, 0, 0,
                    this->GetMessage(5), Vaule,
                    gItemLevel.GetItemName(ItemIndex, ItemLevel));
            }

            int afterCount = gObj[aIndex].BankJewelData[n].ItemCount; // Số dư sau

            // ===== Lưu DB ngay sau khi thay đổi =====
            this->GSSendDSSaveDataUser(aIndex);

            // Gửi thông tin mới về client
            this->UserSendClientInfo(aIndex);

            return true;
        }
    }

    return false;
}

apreciated , thx sr.  cool2


Offline T-LEGENDARY #37 Posteado: September 06, 2025, 11:45:57 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br

Offline skinmuonline #38 Posteado: September 06, 2025, 01:51:05 PM

  • 0 puntos por ventas
  • *
  • Rank: Experto
  • Posts: 151
  • Gracias recibida: 352
  • br
UP


Gravidade   Código   Descrição   Projeto   Arquivo   Linha   Estado de Supressão
Erro   C3861   '_crt_va_start': identificador não encontrado   Main   C:\Source Legendario\Main_EX603\Main\StatsAdvance.cpp   190   


Offline T-LEGENDARY #39 Posteado: September 07, 2025, 07:41:08 AM | Modificado: September 07, 2025, 07:45:50 AM by T-LEGENDARY

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br
UP


Gravidade   Código   Descrição   Projeto   Arquivo   Linha   Estado de Supressão
Erro   C3861   '_crt_va_start': identificador não encontrado   Main   C:\Source Legendario\Main_EX603\Main\StatsAdvance.cpp   190

todos os outros conseguiram menos você , acho que modificou alguma coisa ou removeu sem ver ,
pois não tem nada faltando nela ,ta tudo completo , boa sorte , baixe denovo se for necessario.

eu utilizo o Visual Studio 2010 Ultimate + SQL 2014


Offline T-LEGENDARY #40 Posteado: October 14, 2025, 12:15:17 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br
Still bugs:
- DeathStab too slow.
- FireSlash not work until 295speed.
- FireSlash not work while another DK/MG use Twisting Slash.
- Use Ferrir cannot PK by Twisting Slash skill.
- Slot 12 cannot use rightclick.
- Slot 12 durability too high cannot be adjusted.
- The first cell of the inventory loss of durability
- Row 3 of the inventory cannot trade.
- The character's status value is bugged. When changing to a new character and pressing the upgrade button, the value doesn't match the specified value.

Gracias:


Offline bigrealtk92 #41 Posteado: October 14, 2025, 11:02:50 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 57
  • Gracias recibida: 11
  • vn
Still bugs:
- DeathStab too slow.
- FireSlash not work until 295speed.
- FireSlash not work while another DK/MG use Twisting Slash.
- Use Ferrir cannot PK by Twisting Slash skill.
- Slot 12 cannot use rightclick.
- Slot 12 durability too high cannot be adjusted.
- The first cell of the inventory loss of durability
- Row 3 of the inventory cannot trade.
- The character's status value is bugged. When changing to a new character and pressing the upgrade button, the value doesn't match the specified value.
How to fixs it??


Offline T-LEGENDARY #42 Posteado: October 15, 2025, 05:42:47 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 764
  • Gracias recibida: 11922
  • br
Still bugs:
- DeathStab too slow.
- FireSlash not work until 295speed.
- FireSlash not work while another DK/MG use Twisting Slash.
- Use Ferrir cannot PK by Twisting Slash skill.
- Slot 12 cannot use rightclick.
- Slot 12 durability too high cannot be adjusted.
- The first cell of the inventory loss of durability
- Row 3 of the inventory cannot trade.
- The character's status value is bugged. When changing to a new character and pressing the upgrade button, the value doesn't match the specified value.
How to fixs it??

Studing c++ , or pay a prgramator , you have all in your hands  cool2

Gracias:


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
2 Replies
6067 Views
Last post March 12, 2022, 03:26:44 AM
by Conex21
4 Replies
2809 Views
Last post December 21, 2021, 08:49:42 AM
by T-LEGENDARY
0 Replies
1187 Views
Last post January 18, 2022, 04:34:45 PM
by T-LEGENDARY
47 Replies
15160 Views
Last post September 15, 2025, 05:34:06 AM
by malinkhii
22 Replies
3205 Views
Last post October 05, 2025, 05:36:37 AM
by T-LEGENDARY