Jump to content

iRemain

Inactive Member
  • Posts

    48
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by iRemain

  1. first of all add in locale_inc.h
    #define ENABLE_MOUNT_COSTUME_SYSTEM

    #define ENABLE_ACCE_COSTUME_SYSTEM

    PythonItemModule.cpp

     

    #ifdef ENABLE_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ITEM_TYPE_COSTUME", CItemData::ITEM_TYPE_COSTUME);

    // Item Sub Type

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_BODY", CItemData::COSTUME_BODY);

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_HAIR", CItemData::COSTUME_HAIR);

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_MOUNT", CItemData::COSTUME_ACCE); // you're type

    // 인벤토리 및 장비창에서의 슬롯 번호

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_START", c_Costume_Slot_Start);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_COUNT", c_Costume_Slot_Count);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_BODY", c_Costume_Slot_Body);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_HAIR", c_Costume_Slot_Hair);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_START", c_Costume_Mount_Slot_Start);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_COUNT", c_Costume_Mount_Slot_Count);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_MOUNT", c_Costume_Mount_Slot_Shoulder);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_END", c_Costume_Mount_Slot_End);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_END", c_Costume_Slot_End);

    #endif

    #ifdef ENABLE_NEW_EQUIPMENT_SYSTEM

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_START",            c_Belt_Inventory_Slot_Start);

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_COUNT",            c_Belt_Inventory_Slot_Count);

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_END",            c_Belt_Inventory_Slot_End);

    #endif


     

    PythonApplicationModule:

    #ifdef ENABLE_ACCE_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ENABLE_ACCE_COSTUME_SYSTEM",    1);

    #else

    PyModule_AddIntConstant(poModule, "ENABLE_ACCE_COSTUME_SYSTEM",    0);

    #endif

    #ifdef ENABLE_MOUNT_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ENABLE_MOUNT_COSTUME_SYSTEM",    1);

    #else

    PyModule_AddIntConstant(poModule, "ENABLE_MOUNT_COSTUME_SYSTEM",    0);

    #endif

     

     

    • Love 2
  2. three errors...

     

    .\NetworkActorManager.cpp(476) : error C2039: 'ChangeWing' : is not a member of 'CInstanceBase'
            d:\src\mainline_released\mainline_sg\srcs\client\userinterface\InstanceBase.h(9) : see declaration of 'CInstanceBase'
    
    .\PythonCharacterModule.cpp(87) : error C2039: 'm_dwWing' : is not a member of 'CInstanceBase::SCreateData'
            d:\src\mainline_released\mainline_sg\srcs\client\userinterface\InstanceBase.h(12) : see declaration of 'CInstanceBase::SCreateData'
    .\PythonCharacterModule.cpp(180) : error C2084: function 'PyObject *chrDeleteInstanceByFade(PyObject *,PyObject *)' already has a body
            .\PythonCharacterModule.cpp(112) : see previous definition of 'chrDeleteInstanceByFade'

    Look at the other posts ... 

    you forget some definition in InstanceBase.h:

    'AttachWing'
    'ChangeWing' 

     

    And in ActorInstance.h

    'SetWing' 
    
    'm_eWing'

    error2:

    .\PythonCharacterModule.cpp(180) : error C2084: function 'PyObject *chrDeleteInstanceByFade(PyObject *,PyObject *)' already has a body
            .\PythonCharacterModule.cpp(112) : see previous definition of 'chrDeleteInstanceByFade'

     

    you have doublicated this function :

    PyObject *chrDeleteInstanceByFade(PyObject *,PyObject *)' shearch in PythonCharacterModule.cpp line 112

     

  3. ActorInstanceData.cpp

    void CActorInstance::SetHair(DWORD eHair)
    {
        m_eHair = eHair;
     
        CRaceData * pRaceData;
     
        if (!CRaceManager::Instance().GetRaceDataPointer(m_eRace, &pRaceData))
            return;
     
        CRaceData::SHair* pkHair = pRaceData->FindHair(eHair);
        if (pkHair)
        {
            if (!pkHair->m_stModelFileName.empty())
            {
                CGraphicThing * pkHairThing = (CGraphicThing *)CResourceManager::Instance().GetResourcePointer(pkHair->m_stModelFileName.c_str());
                RegisterModelThing(CRaceData::PART_HAIR, pkHairThing);
                SetModelInstance(CRaceData::PART_HAIR, CRaceData::PART_HAIR, 0, CRaceData::PART_MAIN);
            }
     
            const std::vector<CRaceData::SSkin>& c_rkVct_kSkin = pkHair->m_kVct_kSkin;
            std::vector<CRaceData::SSkin>::const_iterator i;
            for (i = c_rkVct_kSkin.begin(); i != c_rkVct_kSkin.end(); ++i)
            {
                const CRaceData::SSkin& c_rkSkinItem = *i;
     
                CResource * pkRes = CResourceManager::Instance().GetResourcePointer(c_rkSkinItem.m_stDstFileName.c_str());
     
                if (pkRes)
                    SetMaterialImagePointer(CRaceData::PART_HAIR, c_rkSkinItem.m_stSrcFileName.c_str(), static_cast<CGraphicImage*>(pkRes));
            }
        }
    }
     
    void CActorInstance::SetWing(DWORD eWing)
    {
        m_eWing = eWing;
     
        CRaceData * pRaceData;
     
        if (!CRaceManager::Instance().GetRaceDataPointer(m_eRace, &pRaceData))
            return;
     
        CRaceData::SWing* pkWing = pRaceData->FindWing(eWing);
        if (pkWing)
        {
            if (!pkWing->m_stModelFileName.empty())
            {
                CGraphicThing * pkWingThing = (CGraphicThing *)CResourceManager::Instance().GetResourcePointer(pkWing->m_stModelFileName.c_str());
                RegisterModelThing(CRaceData::PART_WING, pkWingThing);
                SetModelInstance(CRaceData::PART_WING, CRaceData::PART_WING, 0, CRaceData::PART_MAIN);
            }
     
            const std::vector<CRaceData::SSkin>& c_rkVct_kSkin = pkWing->m_kVct_kSkin;
            std::vector<CRaceData::SSkin>::const_iterator i;
            for (i = c_rkVct_kSkin.begin(); i != c_rkVct_kSkin.end(); ++i)
            {
                const CRaceData::SSkin& c_rkSkinItem = *i;
     
                CResource * pkRes = CResourceManager::Instance().GetResourcePointer(c_rkSkinItem.m_stDstFileName.c_str());
     
                if (pkRes)
                    SetMaterialImagePointer(CRaceData::PART_WING, c_rkSkinItem.m_stSrcFileName.c_str(), static_cast<CGraphicImage*>(pkRes));
            }
        }
    }
     
     

    RaceData.cpp

    CRaceData::SHair* CRaceData::FindHair(UINT eHair)
    {
    	std::map<DWORD, SHair>::iterator f=m_kMap_dwHairKey_kHair.find(eHair);
    	if (m_kMap_dwHairKey_kHair.end()==f)
    	{
    		if (eHair != 0)
    			TraceError("Hair number %d is not exist.",eHair);
    		return NULL;
    	}
    
    	return &f->second;
    }
    
    void CRaceData::SetHairSkin(UINT eHair, UINT ePart, const char * c_szModelFileName, const char* c_szSrcFileName, const char* c_szDstFileName)
    {
    	SSkin kSkin;
    	kSkin.m_ePart=ePart;
    	kSkin.m_stSrcFileName=c_szSrcFileName;
    	kSkin.m_stDstFileName=c_szDstFileName;
    
    	CFileNameHelper::ChangeDosPath(kSkin.m_stSrcFileName);
    	m_kMap_dwHairKey_kHair[eHair].m_kVct_kSkin.push_back(kSkin);
    	m_kMap_dwHairKey_kHair[eHair].m_stModelFileName = c_szModelFileName;
    }
    
    CRaceData::SWing* CRaceData::FindWing(UINT eWing)
    {
        std::map<DWORD, SWing>::iterator f=m_kMap_dwWingKey_kWing.find(eWing);
        if (m_kMap_dwWingKey_kWing.end()==f)
            return NULL;
     
        return &f->second;
    }
     
    void CRaceData::SetWingSkin(UINT eWing, UINT ePart, const char * c_szModelFileName, const char* c_szSrcFileName, const char* c_szDstFileName)
    {
        SSkin kSkin;
        kSkin.m_ePart=ePart;
        kSkin.m_stSrcFileName=c_szSrcFileName;
        kSkin.m_stDstFileName=c_szDstFileName;
     
        CFileNameHelper::ChangeDosPath(kSkin.m_stSrcFileName);
        m_kMap_dwWingKey_kWing[eWing].m_kVct_kSkin.push_back(kSkin);
        m_kMap_dwWingKey_kWing[eWing].m_stModelFileName = c_szModelFileName;
    }
    

    RaceData.h

          

      SHair* FindHair(UINT eHair);
            SShape* FindShape(UINT eShape);
            SWing* FindWing(UINT eWing);

     

    I made this tut 3 times and I don't know what I missed ...

  4. only this :

    0615 01:50:00534 :: Hair number 2548 is not exist.
    0615 01:50:00535 :: Hair number 2548 is not exist.
    0615 01:50:00535 :: Hair number 2548 is not exist.
    0615 01:50:00553 :: Hair number 2548 is not exist.
    0615 01:51:46439 :: Hair number 64001 is not exist.
    0615 01:51:48193 :: Hair number 64001 is not exist.
    0615 01:51:49565 :: Hair number 64001 is not exist.
    0615 01:51:50242 :: Hair number 64001 is not exist.
    0615 01:51:52090 :: Hair number 64001 is not exist.

    • Love 1
  5. 29n9pc5.png

    item_proto client/server 

    85001		ITEM_USE	USE_SPECIAL	1	ANTI_DROP | ANTI_GIVE | ANTI_MYSHOP	QUEST_USE_MULTIPLE | LOG	NONE	NONE	0	0	0	0	0	LIMIT_NONE	0	LIMIT_NONE	0	APPLY_NONE	0	APPLY_NONE	0	APPLY_NONE	0	0	0	0	0	0	0	100	0	0

    playersettingmodule:

    chrmgr.RegisterAttachingBoneName(chr.PART_WING, "equip_right_hand")

    what I did wrong this time?

  6. You need that in GameType.h after the part costume:

     

    #ifdef ENABLE_MOUNT_COSTUME_SYSTEM
    const DWORD c_Costume_Mount_Slot_Start = c_Equipment_Start + 24;	// [주의] 숫자(19) 하드코딩 주의. 현재 서버에서 코스츔 슬롯은 19부터임. 서버 common/length.h 파일의 EWearPositions 열거형 참고.
    const DWORD c_Costume_Mount_Slot_Shoulder = c_Costume_Slot_Start + 0;
    const DWORD c_Costume_Mount_Slot_Count = 1;
    const DWORD c_Costume_Mount_Slot_End = c_Costume_Mount_Slot_Start + c_Costume_Mount_Slot_Count;
    #endif

     

     

    #ifdef ENABLE_COSTUME_SYSTEM
        const DWORD c_Costume_Slot_Start    = c_Equipment_Start + 19;    // [ÁÖÀÇ] ¼ýÀÚ(19) ÇϵåÄÚµù ÁÖÀÇ. ÇöÀç ¼­¹ö¿¡¼­ ÄÚ½ºÃõ ½½·ÔÀº 19ºÎÅÍÀÓ. ¼­¹ö common/length.h ÆÄÀÏÀÇ EWearPositions ¿­°ÅÇü Âü°í.
        const DWORD    c_Costume_Slot_Body        = c_Costume_Slot_Start + 0;
        const DWORD    c_Costume_Slot_Hair        = c_Costume_Slot_Start + 1;
        const DWORD c_Costume_Slot_Count    = 2;
        const DWORD c_Costume_Slot_End        = c_Costume_Slot_Start + c_Costume_Slot_Count;
    #endif
    
    #ifdef ENABLE_MOUNT_COSTUME_SYSTEM
        const DWORD c_Costume_Mount_Slot_Start = c_Equipment_Start + 24; 
        const DWORD c_Costume_Mount_Slot_Shoulder = c_Costume_Slot_Start + 0;
        const DWORD c_Costume_Mount_Slot_Count = 1;
        const DWORD c_Costume_Mount_Slot_End = c_Costume_Mount_Slot_Start + c_Costume_Mount_Slot_Count;
    #endif

     

     

    I have it ...

  7.  

    ​You have forgot to edit the PlayerItemModule.cpp

    ​you mean PythonItemModule.cpp

    but I have: 

    #ifdef ENABLE_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ITEM_TYPE_COSTUME", CItemData::ITEM_TYPE_COSTUME);

    // Item Sub Type

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_BODY", CItemData::COSTUME_BODY);

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_HAIR", CItemData::COSTUME_HAIR);

    PyModule_AddIntConstant(poModule, "COSTUME_TYPE_MOUNT", CItemData::USE_SPECIAL);

    // 인벤토리 및 장비창에서의 슬롯 번호

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_START", c_Costume_Slot_Start);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_COUNT", c_Costume_Slot_Count);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_BODY", c_Costume_Slot_Body);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_HAIR", c_Costume_Slot_Hair);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_START", c_Costume_Mount_Slot_Start);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_COUNT", c_Costume_Mount_Slot_Count);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_MOUNT", c_Costume_Mount_Slot_Shoulder);

    PyModule_AddIntConstant(poModule, "COSTUME_MOUNT_SLOT_END", c_Costume_Mount_Slot_End);

    PyModule_AddIntConstant(poModule, "COSTUME_SLOT_END", c_Costume_Slot_End);

    #endif

    #ifdef ENABLE_NEW_EQUIPMENT_SYSTEM

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_START",            c_Belt_Inventory_Slot_Start);

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_COUNT",            c_Belt_Inventory_Slot_Count);

        PyModule_AddIntConstant(poModule, "BELT_INVENTORY_SLOT_END",            c_Belt_Inventory_Slot_End);

    #endif

     

     

    and if I delete from locale_inc.cpp :

     

    #define ENABLE_MOUNT_COSTUME_SYSTEM

    #define ENABLE_ACCE_COSTUME_SYSTEM

     

    and this: from PythonApplicationModule:

    #ifdef ENABLE_ACCE_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ENABLE_ACCE_COSTUME_SYSTEM",    1);

    #else

    PyModule_AddIntConstant(poModule, "ENABLE_ACCE_COSTUME_SYSTEM",    0);

    #endif

    #ifdef ENABLE_MOUNT_COSTUME_SYSTEM

    PyModule_AddIntConstant(poModule, "ENABLE_MOUNT_COSTUME_SYSTEM",    1);

    #else

    PyModule_AddIntConstant(poModule, "ENABLE_MOUNT_COSTUME_SYSTEM",    0);

    #endif

     

    it gives me this error : 

     

    >.PythonItemModule.cpp(632) : error C2065: 'c_Costume_Mount_Slot_Start' : undeclared identifier

    1>.PythonItemModule.cpp(633) : error C2065: 'c_Costume_Mount_Slot_Count' : undeclared identifier

    1>.PythonItemModule.cpp(634) : error C2065: 'c_Costume_Mount_Slot_Shoulder' : undeclared identifier

    1>.PythonItemModule.cpp(635) : error C2065: 'c_Costume_Mount_Slot_End' : undeclared identifier

  8. 0611 19:08:46442 :: Failed to load script file : UIScript/CostumeWindow.py

    0611 19:08:46472 :: 

    ui.py(line:2778) LoadScriptFile

    system.py(line:192) execfile

    system.py(line:163) Run

    UIScript/CostumeWindow.py(line:8) ?

    LoadScriptFile!!!!!!!!!!!!!! - exceptions.AttributeError:'module' object has no attribute 'ENABLE_MOUNT_COSTUME_SYSTEM'

    0611 19:08:46472 :: ============================================================================================================

    0611 19:08:46472 :: Abort!!!!

    0611 19:08:46473 :: 

    uiInventory.py(line:68) __LoadWindow

    ui.py(line:2795) LoadScriptFile

    exception.py(line:36) Abort

    CostumeWindow.LoadWindow.LoadObject - exceptions.SystemExit:

    0611 19:08:46473 :: ============================================================================================================

    0611 19:08:46473 :: Abort!!!!

     

    1.why? :-? 

    2.Do I have to do this in locale_inc.h?

    #define LOCALE_SERVICE_EUROPE

    #define ENABLE_COSTUME_SYSTEM

    #define ENABLE_MOUNT_COSTUME_SYSTEM

    #define ENABLE_ENERGY_SYSTEM

    #define ENABLE_DRAGON_SOUL_SYSTEM

    #define ENABLE_NEW_EQUIPMENT_SYSTEM    

     

  9. ok, solved that error but for : 

     

    Error 1 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dsa.obj) UserInterface
    Error 2 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hmac.obj) UserInterface
    Error 3 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(mqueue.obj) UserInterface
    Error 4 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(nbtheory.obj) UserInterface
    Error 5 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rng.obj) UserInterface
    Error 6 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rijndael.obj) UserInterface
    Error 7 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hrtimer.obj) UserInterface
    Error 8 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(pubkey.obj) UserInterface
    Error 9 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(asn.obj) UserInterface
    Error 10 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hex.obj) UserInterface
    Error 11 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(basecode.obj) UserInterface
    Error 12 error LNK2019: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) referenced in function "public: virtual void __thiscall CryptoPP::GF2NT::DEREncode(class CryptoPP::BufferedTransformation &)const " (?DEREncode@GF2NT@CryptoPP@@UBEXAAVBufferedTransformation@2@@Z) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gf2n.obj) UserInterface
    Error 13 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(ecp.obj) UserInterface
    Error 14 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(ec2n.obj) UserInterface
    Error 15 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(iterhash.obj) UserInterface
    Error 16 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(shacal2.obj) UserInterface
    Error 17 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(tea.obj) UserInterface
    Error 18 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(filters.obj) UserInterface
    Error 19 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(queue.obj) UserInterface
    Error 20 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(twofish.obj) UserInterface
    Error 21 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(camellia.obj) UserInterface
    Error 22 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(des.obj) UserInterface
    Error 23 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rc5.obj) UserInterface
    Error 24 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(cast.obj) UserInterface
    Error 25 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rc6.obj) UserInterface
    Error 26 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(mars.obj) UserInterface
    Error 27 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(serpent.obj) UserInterface
    Error 28 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(randpool.obj) UserInterface
    Error 29 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(osrng.obj) UserInterface
    Error 30 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gfpcrypt.obj) UserInterface
    Error 31 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dh2.obj) UserInterface
    Error 32 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(algparam.obj) UserInterface
    Error 33 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(modes.obj) UserInterface
    Error 34 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dll.obj) UserInterface
    Error 35 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 36 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfaceM2ClientLib_d.lib(EterPackManager.obj) UserInterface
    Error 37 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfaceM2ClientLib_d.lib(EterPack.obj) UserInterface
    Error 38 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacelibboost_filesystem-vc90-mt-sgd-1_43.lib(operations.obj) UserInterface
    Error 39 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(cryptlib.obj) UserInterface
    Error 40 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dsa.obj) UserInterface
    Error 41 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hmac.obj) UserInterface
    Error 42 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(mqueue.obj) UserInterface
    Error 43 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(nbtheory.obj) UserInterface
    Error 44 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rng.obj) UserInterface
    Error 45 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rijndael.obj) UserInterface
    Error 46 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hrtimer.obj) UserInterface
    Error 47 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(pubkey.obj) UserInterface
    Error 48 error LNK2019: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) referenced in function "unsigned int * __cdecl std::_Uninit_move<unsigned int *,unsigned int *,class std::allocator<unsigned int>,struct std::_Undefined_move_tag>(unsigned int *,unsigned int *,unsigned int *,class std::allocator<unsigned int> &,struct std::_Undefined_move_tag,struct std::_Range_checked_iterator_tag)" (??$_Uninit_move@PAIPAIV?$allocator@I@std@@U_Undefined_move_tag@2@@std@@YAPAIPAI00AAV?$allocator@I@0@U_Undefined_move_tag@0@U_Range_checked_iterator_tag@0@@Z) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(asn.obj) UserInterface
    Error 49 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(hex.obj) UserInterface
    Error 50 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(basecode.obj) UserInterface
    Error 51 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gf2n.obj) UserInterface
    Error 52 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(ecp.obj) UserInterface
    Error 53 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(ec2n.obj) UserInterface
    Error 54 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(iterhash.obj) UserInterface
    Error 55 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(shacal2.obj) UserInterface
    Error 56 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(tea.obj) UserInterface
    Error 57 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(filters.obj) UserInterface
    Error 58 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(queue.obj) UserInterface
    Error 59 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(twofish.obj) UserInterface
    Error 60 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(camellia.obj) UserInterface
    Error 61 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(des.obj) UserInterface
    Error 62 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rc5.obj) UserInterface
    Error 63 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(cast.obj) UserInterface
    Error 64 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(rc6.obj) UserInterface
    Error 65 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(mars.obj) UserInterface
    Error 66 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(serpent.obj) UserInterface
    Error 67 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(randpool.obj) UserInterface
    Error 68 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(osrng.obj) UserInterface
    Error 69 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gfpcrypt.obj) UserInterface
    Error 70 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dh2.obj) UserInterface
    Error 71 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(algparam.obj) UserInterface
    Error 72 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(modes.obj) UserInterface
    Error 73 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(dll.obj) UserInterface
    Error 74 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 75 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfaceM2ClientLib_d.lib(EterPackManager.obj) UserInterface
    Error 76 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfaceM2ClientLib_d.lib(EterPack.obj) UserInterface
    Error 77 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacelibboost_filesystem-vc90-mt-sgd-1_43.lib(operations.obj) UserInterface
    Error 78 error LNK2001: unresolved external symbol "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(cryptlib.obj) UserInterface
    Error 79 error LNK2019: unresolved external symbol "public: void __thiscall std::_Mutex::_Unlock(void)" (?_Unlock@_Mutex@std@@QAEXXZ) referenced in function "public: void __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::_Unlock(void)" (?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 80 error LNK2001: unresolved external symbol "public: void __thiscall std::_Mutex::_Unlock(void)" (?_Unlock@_Mutex@std@@QAEXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gf2n.obj) UserInterface
    Error 81 error LNK2019: unresolved external symbol "public: void __thiscall std::_Mutex::_Lock(void)" (?_Lock@_Mutex@std@@QAEXXZ) referenced in function "public: void __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::_Lock(void)" (?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 82 error LNK2001: unresolved external symbol "public: void __thiscall std::_Mutex::_Lock(void)" (?_Lock@_Mutex@std@@QAEXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(gf2n.obj) UserInterface
    Error 83 error LNK2019: unresolved external symbol "private: static void __cdecl std::locale::facet::facet_Register(class std::locale::facet *)" (?facet_Register@facet@locale@std@@CAXPAV123@@Z) referenced in function "public: void __thiscall std::locale::facet::_Register(void)" (?_Register@facet@locale@std@@QAEXXZ) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 84 error LNK2019: unresolved external symbol "public: static void __cdecl std::_Locinfo::_Locinfo_ctor(class std::_Locinfo *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z) referenced in function "public: __thiscall std::_Locinfo::_Locinfo(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0_Locinfo@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z) E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientUserInterfacecryptlib-5.6.1MTd.lib(integer.obj) UserInterface
    Error 85 error LNK1120: 6 unresolved externals E:Metin2ServerFilesashnetiasrc_ashnetiasrc_ashnetiasrc_klientclientbinmetin2client.exe UserInterface
    [/spoiler[
     
    I have VS 2013.
    I read that I need to recompile crypptop, but I don't know in VS or in FreeBSD.
     
    I compiled in VS2013, but then what Sould I do? because I didn't find any cryptlib-5.6 lib in the Release file
  10. this is the error: 

     

    16>LINK : fatal error LNK1104: cannot open file '..eterpackdistributeeterpack.lib'

     

    1>------ Build started: Project: UserInterface, Configuration: Release Win32 ------
    1>LINK : fatal error LNK1181: cannot open input file 'E:Metin2Client-sideclient_source_cleanvs_filesEterPackReleaseEterPack.lib'
    ========== Build: 0 succeeded, 1 failed, 15 up-to-date, 0 skipped ==========
  11. Hi devs, can someone explain why I have this error? 

     

     

    16>AffectFlagContainer.cpp
    16>Generating Code...
    16>e:metin2serverfilesashnetiasrc_ashnetiasrc_klientclientuserinterfaceinstancebase.cpp(136) : warning C4715: 'CInstanceBase::SHORSE::GetLevel' : not all control paths return a value
    16>Compiling resources...
    16>Microsoft ® Windows ® Resource Compiler Version 6.1.6723.1
    16>Copyright © Microsoft Corporation.  All rights reserved.
    16>Compiling manifest to resources...
    16>Microsoft ® Windows ® Resource Compiler Version 6.1.6723.1
    16>Copyright © Microsoft Corporation.  All rights reserved.
    16>Linking...
    16>LINK : fatal error LNK1104: cannot open file '..eterpackdistributeeterpack.lib'
    16>Build log was saved at "file://e:Metin2ServerFilesashnetiasrc_ashnetiasrc_klientclientUserInterfaceDistributeBuildLog.htm"
    16>UserInterface - 1 error(s), 7 warning(s)
    ========== Rebuild All: 15 succeeded, 1 failed, 0 skipped ==========
     
    I work to make this binarry src for 6 hours ... but I don't have any succes :(
  12. there is a problem with this part : 

    __ClearWeaponRefineEffect();
    
    
    if (pItem->GetSubType() == CItemData::WEAPON_SWORD)
    {
        //NEW WEAPON - [New Effect] - NEW WEAPON
        DWORD vnum = pItem->GetIndex();
        if (vnum == ID) // Change "ID" to your Weapon ID
        {
            __AttachEffect(EFFECT_REFINED + EFFECT_SWORD_REFINED_SPECIAL1); // effect 24 NEW EFFECT
        }
        //End NEW WEAPON - [New Effect] - NEW WEAPON
    }

    you put the effect but when you switch the weapon the effect still remeans ... the clear screen dosen;t work ... but only for that effect, the rest works fine

  13. Nope, that wasn't the problem.

     

    I manage to make it but, the problem now is that when I siwtch the weapon the effect remains :-? 

    What would it be the problem?

     

    Code:

     


    case CItemData::ITEM_TYPE_WEAPON:
    __ClearWeaponRefineEffect(); 
    
    
        if (pItem->GetSubType() == CItemData::WEAPON_SWORD)
        {
           
            DWORD vnum = pItem->GetIndex();
            if (vnum <= 420 && vnum <= 429)
            {
                __AttachEffect(EFFECT_REFINED + EFFECT_SWORD_REFINED_SPECIAL1);
    
    
            }
        }
    
    
        if (refine < 7)  
            return 0;
        switch(pItem->GetSubType())
        {
        case CItemData::WEAPON_DAGGER:
            m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7+refine-7;
            m_swordRefineEffectLeft = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7_LEFT+refine-7;
            break;
        case CItemData::WEAPON_FAN:
            m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_FANBELL_REFINED7+refine-7;
            break;
        case CItemData::WEAPON_ARROW:
        case CItemData::WEAPON_BELL:
            m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7+refine-7;
            break;
        case CItemData::WEAPON_BOW:
            m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_BOW_REFINED7+refine-7;
            break;
        default:
            m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SWORD_REFINED7+refine-7;
        }
        if (m_swordRefineEffectRight)
            m_swordRefineEffectRight = __AttachEffect(m_swordRefineEffectRight);
        if (m_swordRefineEffectLeft)
            m_swordRefineEffectLeft = __AttachEffect(m_swordRefineEffectLeft);
        break;

    Image: 

     

    34obzt1.jpg

     

  14. Hi, I wanted to add some new sword effects using binary but I don't know why it dosen't do anything :-? 

     

     

    My triying : 

     

     

    switch (pItem->GetType())
    {
    case CItemData::ITEM_TYPE_WEAPON:
    __ClearWeaponRefineEffect();
    
    
    
    
    switch(pItem->GetSubType())
    {
    
    
    case CItemData::WEAPON_SWORD:
    {
    DWORD vnum = pItem->GetIndex();
    
    
    if (420 <= vnum && vnum <= 429)
    { 
    __AttachEffect(EFFECT_REFINED+ EFFECT_SWORD_NEW_REFINED);
    __AttachEffect(EFFECT_REFINED+ EFFECT_SWORD_NEW_REFINED2);
    
    
    }
    }
    if (refine < 7) //현재 제련도 7 이상만 이펙트가 있습니다.
    return 0;
    case CItemData::WEAPON_DAGGER:
    m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7+refine-7;
    m_swordRefineEffectLeft = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7_LEFT+refine-7;
    break;
    case CItemData::WEAPON_FAN:
    m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_FANBELL_REFINED7+refine-7;
    break;
    case CItemData::WEAPON_ARROW:
    case CItemData::WEAPON_BELL:
    m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SMALLSWORD_REFINED7+refine-7;
    break;
    case CItemData::WEAPON_BOW:
    m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_BOW_REFINED7+refine-7;
    break;
    case CItemData::WEAPON_CLAW:
    m_swordRefineEffectRight = EFFECT_REFINED + EFFECT_SMALLSWORD_REFINED7 + refine - 7;
    m_swordRefineEffectLeft = EFFECT_REFINED + EFFECT_SMALLSWORD_REFINED7_LEFT + refine - 7;
    break;
    default:
    m_swordRefineEffectRight = EFFECT_REFINED+EFFECT_SWORD_REFINED7+refine-7;
    }
    if (m_swordRefineEffectRight)
    m_swordRefineEffectRight = __AttachEffect(m_swordRefineEffectRight);
    if (m_swordRefineEffectLeft)
    m_swordRefineEffectLeft = __AttachEffect(m_swordRefineEffectLeft);
    break;
×
×
  • 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.