Jump to content

LeMo

Inactive Member
  • Posts

    25
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by LeMo

  1. 11 hours ago, LeMo said:

    its not working with me !! 

    i reinstalled it 2 times and the same problem when i click to use red or blue soul nothing happen even tooltip not shown on them !

    did anyone knows how to fix it or where to look cuz my syserr it empty client and server 😕

    @ Owsap can you give me a hint to how i can fix it or where to look thanks 

    solved there is calls ( RED_SOUL, SOUL_RED, BLUE_SOUL, SOUL_BLUE ) in Source files for my problem i just edited them to be same you need to edit it to one call 

    RED_SOUL, BLUE_SOUL or SOUL_BLUE, SOUL_RED

  2. its not working with me !! 

    i reinstalled it 2 times and the same problem when i click to use red or blue soul nothing happen even tooltip not shown on them !

    did anyone knows how to fix it or where to look cuz my syserr it empty client and server 😕

    @ Owsap can you give me a hint to how i can fix it or where to look thanks 

  3. Hello everyone i hope you are ok , i have some questions about "DEBUG" mode with metin2 

    first of all i have memory leak when i start the client in Debug " is there any fix for that or not "

    2 - i got many missing files in sound while these files already exist like this one 

    1023 16:17:08876 :: CANNOT_FIND_FILE [sound/effect/etc/dust/dust.mss]
    1023 16:17:08883 :: CANNOT_FIND_FILE [sound/effect/etc/dust/running_dust.mss]
    1023 16:17:09013 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/drugup_red.mss]
    1023 16:17:09042 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/drugup_blue.mss]
    1023 16:17:09047 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/drugup_green.mss]
    1023 16:17:09053 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/drugup_purple.mss]
    1023 16:17:09080 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/autodrugup_red.mss]
    1023 16:17:09086 :: CANNOT_FIND_FILE [sound/effect/etc/recuperation/autodrugup_blue.mss]
    
    CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
    CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub

     and not just these its with pc,pc2 sound too " how i can fix that i don't know but there is something in my mind "

    this is the path of one of these files "effect\ymir work\effect\etc\dust"

    its in effect folder not sound so did that what case this problem i didn't try yet i will but i'm just asking"

    3 - i saw many developers editing in python part while they lunching the client how i can do that or what i need to do that

    cuz it will help me much with editing positions of some things better than close and pack and open many many times for checking the result of it 

    if you have any useful information please tell me thank you everyone 

  4. 0209 02:06:14416 ::   File "networkModule.py", line 239, in SetGamePhase
    
    0209 02:06:14417 ::   File "game.py", line 102, in __init__
    
    0209 02:06:14417 ::   File "interfaceModule.py", line 559, in MakeInterface
    
    0209 02:06:14417 ::   File "interfaceModule.py", line 491, in __MakeDialogs
    
    0209 02:06:14417 ::   File "uiRefine.py", line 468, in SetInven
    
    0209 02:06:14417 :: TypeError
    0209 02:06:14417 :: : 
    0209 02:06:14417 :: cannot create weak reference to 'weakproxy' object
    0209 02:06:14417 :: 

     

    did u know how to fix this error

  5. ChatPacket(CHAT_TYPE_INFO,LC_TEXT ("You can't drop this item because is binded!"));

    in that one i did that for test it from locale 

    ChatPacket(CHAT_TYPE_INFO, 22219, "dd");

    but i got error so how i can do it for that to make it call from locale

    i fixed this error i was must use LocaleChatPacket

     

    new error

    CPythonLocaleString::FindLocaleString: cannot find "22219";

    and i have 22219 in my srting 

  6. Quote

    uiGuild.py(line:2035) __LoadWindow
    ui.py(line:3089) LoadScriptFile

    DeclareGuildWarWindow.__CreateDialog - LoadScript - <type 'exceptions.KeyError'>:'window'

    ui.py

    Quote

    Body = self.ScriptDictionary["window"]

    self.CheckKeyList("window", Body, self.BODY_KEY_LIST)

    uiguild.py

    Quote

    pyScrLoader.LoadScriptFile(self, uiScriptLocale.LOCALE_UISCRIPT_PATH + "buildguildbuildingwindow.py")

    how to fix it ?

  7. how to fix this problem

    p_912u7dnf1.gif


    GameType.cpp

    #ifdef ENABLE_NEW_EQUIPMENT_SYSTEM
    #ifdef ENABLE_SASH_SYSTEM
    	const DWORD c_New_Equipment_Start = c_Equipment_Start + 24;
    #else
    	const DWORD c_New_Equipment_Start = c_Equipment_Start + 23;
    #endif
    	const DWORD c_New_Equipment_Count = 3;
    	const DWORD c_Equipment_Ring1 = c_New_Equipment_Start + 0;
    	const DWORD c_Equipment_Ring2 = c_New_Equipment_Start + 1;
    	const DWORD c_Equipment_Belt  = c_New_Equipment_Start + 2;;
    #endif

     

    #ifdef ENABLE_COSTUME_SYSTEM 
        const DWORD c_Costume_Slot_Start    = c_Equipment_Start + 19; 
        const DWORD c_Costume_Slot_Body        = c_Costume_Slot_Start + 0; 
        const DWORD c_Costume_Slot_Hair        = c_Costume_Slot_Start + 1; 
    #ifdef ENABLE_SASH_SYSTEM 
        const DWORD c_Costume_Slot_Sash        = c_Costume_Slot_Start + 2; 
    #endif 
    #ifdef ENABLE_WEAPON_COSTUME_SYSTEM
        const DWORD c_Costume_Slot_Weapon    = c_Costume_Slot_Start + 3; 
    #endif 
        const DWORD c_Costume_Slot_Mount = c_Costume_Slot_Start + 4; 
    #ifdef ENABLE_SASH_SYSTEM 
        const DWORD c_Costume_Slot_Count    = 5; 
    #else 
        const DWORD c_Costume_Slot_Count    = 4; 
    #endif 
        const DWORD c_Costume_Slot_End        = c_Costume_Slot_Start + c_Costume_Slot_Count; 
    #endif

     

     

    costumewindow.py

     

    "slot" : (
                                            {"index":COSTUME_START_INDEX+0, "x":61, "y":45, "width":32, "height":64},
                                            {"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
                                            {"index":COSTUME_START_INDEX+2, "x":61, "y":125, "width":32, "height":32},
                                            {"index":COSTUME_START_INDEX+3, "x":12, "y":14, "width":32, "height":64},
                                            {"index":COSTUME_START_INDEX+4, "x":12, "y":127, "width":32, "height":32},
                                ),

     

     

  8. when i start server with sh start.sh i have this problem

    how can i fix it >> help pls

     

    Real Server
    Log Offmysql_real_connect: Access denied for user 'Metin2Dizayn'@'localhost' (using password: YES)
    
       failed, retrying in 5 seconds^Cmysql_real_connect: Access denied for user 'Metin2Dizayn'@'localhost' (using password: YES)
       failed, retrying in 5 seconds

     

  9. how to fix it

     

    1222 00:44:02303 :: CSoundManager::PlayMusic - Failed to load stream sound : BGM/login_window.mp3
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7769
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7770
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7771
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7772
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7773
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7774
    
    1222 00:44:14679 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 7775
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9023
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9024
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9025
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9026
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9027
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9028
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9032
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9033
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9034
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9035
    
    1222 00:44:14685 ::  CItemManager::LoadItemList(locale/es/item_list.txt) - StrangeLine in 9044
    
    1222 00:44:16019 :: CSoundManager::PlayMusic - Failed to load stream sound : BGM/characterselect.mp3
    1222 00:45:41231 :: CSoundManager::PlayMusic - Failed to load stream sound : BGM/xmas.mp3
    1222 00:45:41423 :: CSoundManager::PlayMusic - Failed to load stream sound : BGM/enter_the_east.mp3
    1222 00:45:42827 :: bone Bip01 Spine2
    1222 00:45:43266 :: GRANNY: r:/granny/rt/granny_file.cpp(331): File is not a Granny file
    1222 00:45:44146 :: bone Bip01 Spine2
    1222 00:45:44320 :: Unknown Server Command dmagazin_index 148 | dmagazin_index
    1222 00:45:46408 :: bone Bip01 Spine2
    1222 00:45:48192 :: bone Bip01 Spine2
    1222 00:45:48240 :: bone Bip01 Spine2
    1222 00:45:48277 :: bone Bip01 Spine2
    1222 00:45:48471 :: bone Bip01 Spine2
    1222 00:45:51987 :: bone Bip01 Spine2
    1222 00:45:52035 :: bone Bip01 Spine2

     

  10. 3 hours ago, Syreldar said:
    
    uiCharacter.py(line:405) __LoadWindow

    This is the error, whoever says it's in ui.py is not able to read the syserr properly.

    thanks i really fix it :) thanks for help

    5 hours ago, z35 said:

    The problem is at CharacterWindow. Try checking this file to see what is wrong.

    thanks i really fix it :) thanks for help

  11. when i change a locale in (pack) i just start the game and select character and finish loading the Client get exit

    this is the syserr of Client

     

    1028 19:37:32146 :: 
    uiCharacter.py(line:405) __LoadWindow
    uiCharacter.py(line:188) __BindObject
    ui.py(line:2710) GetChild
    
    CharacterWindow.__LoadWindow - <type 'exceptions.KeyError'>:'Tab_05'
    
    1028 19:37:32146 :: ============================================================================================================
    1028 19:37:32146 :: Abort!!!!

    Please help me solve this problem
    Thanks in advance

×
×
  • 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.