Jump to content

dattg1337

Inactive Member
  • Posts

    14
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by dattg1337

  1. try this in uitooltip
    you can edit the vnum of items
     

    Quote

            if itemVnum in (71135, 71136):
                table_item = {
                    71135 : ["Max HP. +1000", "Against monsters +10%"],
                    71136 : ["Max HP. +500", "Against monsters +5%"]}            
                self.AppendSpace(5)    
                for i in xrange(len(table_item[itemVnum])):
                    self.AppendTextLine(table_item[itemVnum][i], self.SPECIAL_POSITIVE_COLOR)

     

  2. SQL 71124    ������̿��    Beyaz Aslan    28    2    0    1    74112    9216    128        0    0    0    0    0    0    7    20    0    2400    0    0    0    0    0    0    2400    0    0    0    0    0    -1    -1    -1    -1    -1    -1    0    0    0

  3. @ondrymy item proto txt line
    71124    Lomi-Mount    ITEM_COSTUME    COSTUME_MOUNT    1    ANTI_DROP | ANTI_SELL | ANTI_GIVE | ANTI_MYSHOP    QUEST_USE_MULTIPLE | LOG    WEAR_SHIELD        0    0    0    0    0    LEVEL    20    REAL_TIME    2400    APPLY_NONE    0    APPLY_NONE    0    APPLY_NONE    0    2400    0    0    0    0    0    0    0    0

  4. its too late but if someone need here is 100% works 

    chat_item.cpp

    Quote

        if (item->GetType() == ITEM_RING)
        {
            LPITEM ringItems[2] = { GetWear(WEAR_RING1), GetWear(WEAR_RING2) };
            for (int i = 0; i < 2; i++)
            {
                if (ringItems[i])
                {
                    if (ringItems[i]->GetVnum() == item->GetVnum())
                    {
                        ChatPacket(CHAT_TYPE_INFO, LC_TEXT("YOUR TEXT HERE"));
                        return false;
                    }
                }
            }
        }


     

    • Love 1
  5. Hello, guys i have a one problem when i initialize the pack files in the binary of client.
    this is problem with warrior skills https://metin2.download/picture/sk5mw0758TaFliJW991IRIk9h3BhiCx1/.png
     

    Spoiler

    bool PackInitialize(const char* c_pszFolder)
    {
        if (_access(c_pszFolder, 0))
            return true;
        std::string stFolder = c_pszFolder + std::string("/");
        CTextFileLoader::SetCacheMode();
        CEterPackManager::Instance().SetCacheMode();
        CSoundData::SetPackMode();
        std::vector<std::string> packlist
        {
            "HERE IS MY PACK FILES",
        };
        for (const auto& pack : packlist)
            CEterPackManager::Instance().RegisterPack((c_pszFolder + std::string("/") + pack).c_str(), "*");
        CEterPackManager::Instance().RegisterRootPack((c_pszFolder + std::string("/") + std::string("root")).c_str());
        return true;
    }

    can anyone help me please ? 

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.