Jump to content

Chatting Window Renewal (Mini Version)


Recommended Posts

1 hour ago, blaxis said:

Thank you very much  

I'm just wondering one thing.
What exactly is the "experience" feature? I want to test it but I don't understand what it is.

when you kill a mob/metin/boss in chat you can see "you recieved x points of experience" like official, but this function, you need edit a little archive in src game, check gift :

https://metin2.download/picture/Rg3Eii7UWiO4a6gdQtnJDrWk6vGPI6uE/.gif

 

Edited by Metin2 Dev
Core X - External 2 Internal
  • Love 1

KH.jpg

Nicks: Nazox Krone Nagato Yahiko Yakiro
Proyecto: Trabajando en el.
Compañeros & firma: DreamHQ  - 2009-2015 [Nostalgia]

Link to comment
Share on other sites

  • Bronze
14 hours ago, blaxis said:

Thank you very much 🙂 

I'm just wondering one thing.
What exactly is the "experience" feature? I want to test it but I don't understand what it is.

char.cpp

case POINT_EXP:
 

					if (test_server)
						ChatPacket(CHAT_TYPE_INFO, "You have gained %d exp.", amount);

comment if(test_server) and change CHAT_TYPE_INFO to CHAT_TYPE_EXP_INFO

(from SCOOB)

  • Love 1
Link to comment
Share on other sites

networkModule.py(line:200) SetSelectCharacterPhase
system.py(line:130) __pack_import
system.py(line:110) _process_result
introSelect.py(line:28) <module>
system.py(line:130) __pack_import
system.py(line:110) _process_result
interfaceModule.py(line:16) <module>
system.py(line:130) __pack_import
system.py(line:110) _process_result
uiChat.py(line:18) <module>
system.py(line:137) __pack_import

networkModule.SetSelectCharacterPhase - <type 'exceptions.AttributeError'>:'module' object has no attribute '_extension_registry'

1003 17:36:03653 :: ============================================================================================================
1003 17:36:03653 :: Abort!!!!

 

 

 

 

help !!!

Link to comment
Share on other sites

1003 23:14:25143 :: Traceback (most recent call last):

1003 23:14:25143 ::   File "uiChat.py", line 1208, in OnRender

1003 23:14:25143 ::   File "uiChat.py", line 1143, in Refresh

1003 23:14:25143 ::   File "uiChat.py", line 1170, in RefreshBoardViewState

1003 23:14:25143 :: AttributeError
1003 23:14:25143 :: : 
1003 23:14:25143 :: 'int' object has no attribute 'GetGlobalPosition'
1003 23:14:25143 :: 

 

 

how can i fix?

Link to comment
Share on other sites

On 10/2/2021 at 8:59 PM, nazox said:

when you kill a mob/metin/boss in chat you can see "you recieved x points of experience" like official, but this function, you need edit a little archive in src game, check gift :

https://metin2.download/picture/Rg3Eii7UWiO4a6gdQtnJDrWk6vGPI6uE/.gif

 

 

On 10/3/2021 at 11:38 AM, HaiosMotan said:

char.cpp

case POINT_EXP:
 

					if (test_server)
						ChatPacket(CHAT_TYPE_INFO, "You have gained %d exp.", amount);

comment if(test_server) and change CHAT_TYPE_INFO to CHAT_TYPE_EXP_INFO

(from SCOOB)

Thank you very much guys.. 

I have one more question. Sorry for that. 😞
The "Item" option doesn't work either. What could be the reason for this?
Whether it is "Enabled" or "Disabled" it is always "you have won xx". text appears.

 

I do not have this line:

ChatPacket(CHAT_TYPE_INFO, LC_TEXT("¾ÆÀÌÅÛ È¹µæ: %s"), item2->GetName());

 

There is this in PickupItem func:

ChatPacket(CHAT_TYPE_INFO, LC_TEXT("¾ÆÀÌÅÛ È¹µæ: %s"), evolutionMergeText);

Could this be too?

Sorry for bad english. I Using google translate.

spacer.png

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

3 hours ago, blaxis said:

 

Muchas gracias chicos.. 

Tengo una pregunta más. Lo siento por eso. 😞
La opción "Elemento" tampoco funciona. ¿Cuál podría ser la razón de ésto?
Ya sea que esté "Habilitado" o "Deshabilitado", siempre es "has ganado xx". aparece el texto.

 

No tengo esta línea:

ChatPacket (CHAT_TYPE_INFO, LC_TEXT ("¾ÆÀÌÅÛ È¹µæ:% s"), item2-> GetName ());

 

Hay esto en la función PickupItem:

ChatPacket (CHAT_TYPE_INFO, LC_TEXT ("¾ÆÀÌÅÛ È¹µæ:% s"), evolutionMergeText);

¿Podría ser esto también?

Perdón por el mal inglés. Estoy usando el traductor de Google.

spacer.png

Open char_item.cpp and search: bool CHARACTER::PickupItem(DWORD dwVID) now, in this function search this:

Quote

                                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item2->GetName());

and replace :

Quote

                            #if defined(__CHATTING_WINDOW_RENEWAL__)
                                ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item2->GetName());
                            #else
                                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item2->GetName());
                            #endif

if you can't find,  this is the function

Quote

                            if (bCount == 0)
                            {
                            #if defined(__CHATTING_WINDOW_RENEWAL__)
                                ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item2->GetName());
                            #else
                                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item2->GetName());
                            #endif
                                M2_DESTROY_ITEM(item);
                                if (item2->GetType() == ITEM_QUEST)
                                    quest::CQuestManager::instance().PickupItem (GetPlayerID(), item2);
                                return true;
                            }
                        }
                    }

                    item->SetCount(bCount);
                }

check you have "item2" because @ Owsap has wrong word maybe he mistook "2"

Owsap function

Quote

#if defined(__CHATTING_WINDOW_RENEWAL__)

ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("아이템 획득: %s"), item->GetName());  <---mistook item to item2

#else

ChatPacket(CHAT_TYPE_INFO, LC_TEXT("아이템 획득: %s"), item->GetName());

#endif

Now in the same function search this:

Quote

ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());

replace:

Quote

            #if defined(__CHATTING_WINDOW_RENEWAL__)
                ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
            #else
                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
            #endif

If you can't find this is the function, check now is "item" and not "item2"

Quote

                char szHint[32+1];
                snprintf(szHint, sizeof(szHint), "%s %u %u", item->GetName(), item->GetCount(), item->GetOriginalVnum());
                LogManager::instance().ItemLog(this, item, "GET", szHint);
            #if defined(__CHATTING_WINDOW_RENEWAL__)
                ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
            #else
                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
            #endif
                if (item->GetType() == ITEM_QUEST)
                    quest::CQuestManager::instance().PickupItem (GetPlayerID(), item);
            }

            //Motion(MOTION_PICKUP);
            return true;
        }
        else if (!IS_SET(item->GetAntiFlag(), ITEM_ANTIFLAG_GIVE | ITEM_ANTIFLAG_DROP) && GetParty())

Now, in the end of function replace again for this:

Quote

                    #if defined(__CHATTING_WINDOW_RENEWAL__)
                        ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
                    #else
                        ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
                    #endif

This is the function:

Quote

            if (owner == this)
            #if defined(__CHATTING_WINDOW_RENEWAL__)
                ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
            #else
                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
            #endif
            else
            {
                owner->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Received Item: %s, %s"), GetName(), item->GetName());
                ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Item Trade: from %s, %s"), owner->GetName(), item->GetName());
            }

            if (item->GetType() == ITEM_QUEST)
                quest::CQuestManager::instance().PickupItem (owner->GetPlayerID(), item);

            return true;
        }
    }

    return false;
}

Now search:

Quote

LPITEM CHARACTER::AutoGiveItem(DWORD dwItemVnum, BYTE bCount, int iRarePct, bool bMsg)

find ChatPacket and replace:

Quote

                    #if defined(__CHATTING_WINDOW_RENEWAL__)
                        ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
                    #else
                        ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
                    #endif

Function:

Quote

                BYTE bCount2 = MIN(g_bItemCountLimit - item->GetCount(), bCount);
                bCount -= bCount2;

                item->SetCount(item->GetCount() + bCount2);

                if (bCount == 0)
                {
                    if (bMsg)
                    #if defined(__CHATTING_WINDOW_RENEWAL__)
                        ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
                    #else
                        ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
                    #endif

                    return item;
                }
            }
        }
    }

    LPITEM item = ITEM_MANAGER::instance().CreateItem(dwItemVnum, bCount, 0, true);

The same function find again and replace:

Quote

        #if defined(__CHATTING_WINDOW_RENEWAL__)
            ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
        #else
            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
        #endif

Function:

Quote

    else
        iEmptyCell = GetEmptyInventory(item->GetSize());

    if (iEmptyCell != -1)
    {
        if (bMsg)
        #if defined(__CHATTING_WINDOW_RENEWAL__)
            ChatPacket(CHAT_TYPE_ITEM_INFO, LC_TEXT("%s received"), item->GetName());
        #else
            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s received"), item->GetName());
        #endif

        if (item->IsDragonSoul())
            item->AddToCharacter(this, TItemPos(DRAGON_SOUL_INVENTORY, iEmptyCell));

I have put a piece of the function so that you can more or less compare where it is, you have to check if it is "item2" or "item", because Owsap made a mistake in a line without wanting to, and it can confuse, but with what you I have put all the -> GetName () you should not have problems now, surely that is why the "item" function does not work for you ", also if you have decided to delete the" Dice "function you have to edit the values in python

Edited by Metin2 Dev
Core X - External 2 Internal

KH.jpg

Nicks: Nazox Krone Nagato Yahiko Yakiro
Proyecto: Trabajando en el.
Compañeros & firma: DreamHQ  - 2009-2015 [Nostalgia]

Link to comment
Share on other sites

22 hours ago, nazox said:

Open char_item.cpp and search: bool CHARACTER::PickupItem(DWORD dwVID) now, in this function search this:

and replace :

if you can't find,  this is the function

check you have "item2" because @ Owsap has wrong word maybe he mistook "2"

Owsap function

Now in the same function search this:

replace:

If you can't find this is the function, check now is "item" and not "item2"

Now, in the end of function replace again for this:

This is the function:

Now search:

find ChatPacket and replace:

Function:

The same function find again and replace:

Function:

I have put a piece of the function so that you can more or less compare where it is, you have to check if it is "item2" or "item", because Owsap made a mistake in a line without wanting to, and it can confuse, but with what you I have put all the -> GetName () you should not have problems now, surely that is why the "item" function does not work for you ", also if you have decided to delete the" Dice "function you have to edit the values in python

First of all, thank you very much.
item->GetName(); I edited all the lines containing it to CHAT_TYPE_ITEM_INFO but it's not working..

I think this happened after uninstalling DICE. I just removed it from uichat.py. I've never installed dice before, but are there still places where I need to remove it from the source codes? Maybe the line numbers don't match. All other features are working but the "Item" feature is not. 😕

 

Link to comment
Share on other sites

1 minute ago, blaxis said:

En primer lugar, muchas gracias.
elemento-> GetName (); Edité todas las líneas que lo contienen en CHAT_TYPE_ITEM_INFO pero no funciona.

Creo que esto sucedió después de desinstalar DICE. Lo acabo de quitar de uichat.py. Nunca antes había instalado dados, pero ¿todavía hay lugares donde necesito eliminarlos de los códigos fuente? Quizás los números de línea no coincidan. Todas las demás funciones funcionan, pero la función "Elemento" no.😕

 

MMM, i never install dice  too, but i don't have dice in source, i have only in python, if you want add me on discord and i try to help u 🙂

  • Metin2 Dev 1

KH.jpg

Nicks: Nazox Krone Nagato Yahiko Yakiro
Proyecto: Trabajando en el.
Compañeros & firma: DreamHQ  - 2009-2015 [Nostalgia]

Link to comment
Share on other sites

On 10/3/2021 at 11:15 PM, x1 said:

1003 23:14:25143 :: Traceback (most recent call last):

1003 23:14:25143 ::   File "uiChat.py", line 1208, in OnRender

1003 23:14:25143 ::   File "uiChat.py", line 1143, in Refresh

1003 23:14:25143 ::   File "uiChat.py", line 1170, in RefreshBoardViewState

1003 23:14:25143 :: AttributeError
1003 23:14:25143 :: : 
1003 23:14:25143 :: 'int' object has no attribute 'GetGlobalPosition'
1003 23:14:25143 :: 

 

 

how can i fix?

++

Link to comment
Share on other sites

networkModule.py(line:200) SetSelectCharacterPhase
system.py(line:130) __pack_import
system.py(line:110) _process_result
introSelect.py(line:28) <module>
system.py(line:130) __pack_import
system.py(line:110) _process_result
interfaceModule.py(line:16) <module>
system.py(line:130) __pack_import
system.py(line:110) _process_result
uiChat.py(line:18) <module>
system.py(line:137) __pack_import

networkModule.SetSelectCharacterPhase - <type 'exceptions.AttributeError'>:'module' object has no attribute '_extension_registry'

1003 17:36:03653 :: ============================================================================================================
1003 17:36:03653 :: Abort!!!!

Link to comment
Share on other sites

  • 4 weeks later...
On 10/31/2021 at 7:09 PM, AltanOzkan said:

image.png

Chatting option bottom button not showing. How can i fix it. Thank you.

uiscript/chatsettingwindow.py

change for button .sub line with:

"default_image" : ROOT_PATH + "middle_button_01.sub",
"over_image" : ROOT_PATH + "middle_button_02.sub",
"down_image" : ROOT_PATH + "middle_button_03.sub",

 

Edited by Metin2 Dev
Core X - External 2 Internal
  • Love 1
Link to comment
Share on other sites

  • 1 month later...

Hello! How can fix this error? 

1211 17:17:06139 :: 
networkModule.py(line:200) SetSelectCharacterPhase
system.py(line:129) __pack_import
system.py(line:109) _process_result
introSelect.py(line:27) <module>
system.py(line:129) __pack_import
system.py(line:109) _process_result
interfaceModule.py(line:14) <module>
system.py(line:129) __pack_import
system.py(line:109) _process_result
uiChat.py(line:16) <module>
system.py(line:136) __pack_import

networkModule.SetSelectCharacterPhase - <type 'exceptions.AttributeError'>:'module' object has no attribute '_extension_registry'

1211 17:17:06139 :: ============================================================================================================
1211 17:17:06139 :: Abort!!!!

Link to comment
Share on other sites

1213 04:12:01800 :: 
networkModule.py(line:208) SetSelectCharacterPhase
system.py(line:130) __pack_import
system.py(line:110) _process_result
introSelect.py(line:30) ?
system.py(line:130) __pack_import
system.py(line:110) _process_result
interfaceModule.py(line:14) ?
system.py(line:130) __pack_import

networkModule.SetSelectCharacterPhase - exceptions.SyntaxError:invalid syntax (line 256)

1213 04:12:01800 :: ============================================================================================================
1213 04:12:01800 :: Abort!!!!

 

Was nun

Link to comment
Share on other sites

  • 2 weeks later...
On 9/22/2021 at 2:49 AM, Owsap said:

252709OrangeWarning.pngPlease, avoid spamming this topic and when you post a problem show us a screenshot or GIF / video to help us identify the problem.

I have reviewed and double checked the entire system on a clean server file "40250", there is no problem with GetGlobalPosition function or the pickle functions, you don’t even need the pickle module in the library because it uses standard C.

About the GetGlobalPosition issue, there is only 1 GetGlobalPosition inside the Window class since 2014 so you don’t need to add another one anywhere else and the system doesn’t even call this function inside the ChatWindow whatsoever.

@Maze, when you teleport, if the setting window is open, it will close, this has been fixed 21 days ago.

If you need a better guide than the tutorial guidelines I made, check the entire file I implemented the system clicking the link below.

 

252051BlueInfo.pngTroubleshooting on older clients.

  Reveal hidden contents

 Error:

<type 'exceptions.TypeError'>:__pack_import() takes at most 4 arguments (5 given)

Solution:

''' 1. @ system.py '''
# Search
def __pack_import(name, globals = None, locals = None, fromlist = None):

# Replace with
def __pack_import(name, globals = None, locals = None, fromlist = None, level = -1):

Error:

File "Lib\copy_reg.py", line 70, in _reduce_ex
<TypeError> can't pickle file objects

Solution: (This has been fixed 15 days ago, check the repository for a detailed log.)

''' 1. @ uiChat.py '''
# Search and remove
					cPickle.dumps(file)

 

Here is also a preview of the system working on an older client which sources and root files are clean / basic.

Preview: https://metin2.download/picture/R9TZiGfo73WdqDZ2rOLpSFJO6flaE9m2/.gif

You should try warp with quest. Not with command. 

OSF V5 Have Same Problem 🙂

https://metin2.download/video/QQc7hS5V01cuQ5G7hA2f01Y1Nk4H2Y2v/.mp4

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Honorable Member
 
14 hours ago, AltanOzkan said:

You should try warp with quest. Not with command. 

OSF V5 Have Same Problem 🙂

https://metin2.download/video/QQc7hS5V01cuQ5G7hA2f01Y1Nk4H2Y2v/.mp4

 

Fixed "GetGlobalPosition" issue.

The main topic and links have been updated.

 

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 8
  • Good 4
  • Love 6
Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

Hello community,

I have a little problem with this system. Everything works good, except options for experience, items and currency.

Experience does nothing
Items hides recieved experience
Currency hides recieved yangs and items at the same time 

 

Anybody knows how to solve it? I uploaded all touched files from this system in the link bellow, so you can check all my files.

This is the hidden content, please

 

I tried to implement this system 3 times with the same results.

The same problem has @blaxis on this topic, but there is no solution.

 

Thanks for every suggestions.

  • Metin2 Dev 21
  • Good 3
  • Love 1
Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...

Hi guys, I make the process 2 or 3 times but I cant make it works, now Im getting this error:

networkModule.SetSelectCharacterPhase - <type 'exceptions.AttributeError'>:'module' object has no attribute 'CHAT_TYPE_DICE_INFO'

Can someone tell me what happens?

Thanks!

EDIT:

Now this part is working but when I select character game close and I have this on the log.

Quote

0504 16:49:03885 :: ¾Ë¸²: ÆÄÀÏ ¸ðµåÀÔ´Ï´Ù.
0504 16:49:03889 :: The eterpack doesn't exist [pack/patch1_texcache]
0504 16:49:03896 :: The eterpack doesn't exist [pack/season3_eu_texcache]
0504 16:49:03907 :: The eterpack doesn't exist [pack/patch2_texcache]
0504 16:49:03909 :: The eterpack doesn't exist [pack/metin2_patch_snow_texcache]
0504 16:49:03910 :: The eterpack doesn't exist [pack/metin2_patch_snow_dungeon_texcache]
0504 16:49:03913 :: The eterpack doesn't exist [pack/metin2_patch_etc_costume1_texcache]
0504 16:49:03915 :: The eterpack doesn't exist [pack/metin2_patch_pet1_texcache]
0504 16:49:03916 :: The eterpack doesn't exist [pack/metin2_patch_pet2_texcache]
0504 16:49:03917 :: The eterpack doesn't exist [pack/metin2_patch_ramadan_costume_texcache]
0504 16:49:03921 :: The eterpack doesn't exist [pack/metin2_patch_flame_texcache]
0504 16:49:03922 :: The eterpack doesn't exist [pack/metin2_patch_flame_dungeon_texcache]
0504 16:49:03923 :: The eterpack doesn't exist [pack/metin2_patch_w21_etc_texcache]
0504 16:49:03925 :: The eterpack doesn't exist [pack/metin2_patch_w21_mobs_texcache]
0504 16:49:03926 :: The eterpack doesn't exist [pack/metin2_patch_w21_mobs_m_texcache]
0504 16:49:03928 :: The eterpack doesn't exist [pack/metin2_patch_dss_box_texcache]
0504 16:49:03930 :: The eterpack doesn't exist [pack/metin2_patch_costume_soccer_texcache]
0504 16:49:03932 :: The eterpack doesn't exist [pack/metin2_patch_easter1_texcache]
0504 16:49:03933 :: The eterpack doesn't exist [pack/metin2_patch_mineral_texcache]
0504 16:49:03937 :: The eterpack doesn't exist [pack/metin2_patch_w20_sound_texcache]
0504 16:49:03938 :: The eterpack doesn't exist [pack/metin2_patch_ds_texcache]
0504 16:49:03940 :: The eterpack doesn't exist [pack/metin2_patch_5th_armor_texcache]
0504 16:49:03941 :: The eterpack doesn't exist [pack/metin2_patch_w20_etc_texcache]
0504 16:49:03962 :: The eterpack doesn't exist [pack/metin2_patch_etc_texcache]
0504 16:49:03964 :: The eterpack doesn't exist [pack/metin2_patch_xmas_texcache]
0504 16:49:03970 :: The eterpack doesn't exist [pack/metin2_patch_eu3_texcache]
0504 16:49:03972 :: The eterpack doesn't exist [pack/metin2_patch_eu4_texcache]
0504 16:49:03975 :: The eterpack doesn't exist [pack/metin2_patch_mundi_texcache]
0504 16:49:03977 :: The eterpack doesn't exist [pack/metin2_patch_sd_texcache]
0504 16:49:03978 :: The eterpack doesn't exist [pack/metin2_patch_halloween_texcache]
0504 16:49:03980 :: The eterpack doesn't exist [pack/metin2_patch_party_texcache]
0504 16:49:03981 :: The eterpack doesn't exist [pack/metin2_patch_dance_texcache]
0504 16:49:03995 :: The eterpack doesn't exist [pack/pc_texcache]
0504 16:49:04005 :: The eterpack doesn't exist [pack/pc2_texcache]
0504 16:49:04021 :: The eterpack doesn't exist [pack/monster_texcache]
0504 16:49:04026 :: The eterpack doesn't exist [pack/monster2_texcache]
0504 16:49:04030 :: The eterpack doesn't exist [pack/effect_texcache]
0504 16:49:04041 :: The eterpack doesn't exist [pack/zone_texcache]
0504 16:49:04043 :: The eterpack doesn't exist [pack/terrain_texcache]
0504 16:49:04047 :: The eterpack doesn't exist [pack/npc_texcache]
0504 16:49:04048 :: The eterpack doesn't exist [pack/npc2_texcache]
0504 16:49:04050 :: The eterpack doesn't exist [pack/tree_texcache]
0504 16:49:04051 :: The eterpack doesn't exist [pack/guild_texcache]
0504 16:49:04062 :: The eterpack doesn't exist [pack/item_texcache]
0504 16:49:04063 :: The eterpack doesn't exist [pack/textureset_texcache]
0504 16:49:04077 :: The eterpack doesn't exist [pack/property_texcache]
0504 16:49:04085 :: The eterpack doesn't exist [pack/icon_texcache]
0504 16:49:04099 :: The eterpack doesn't exist [pack/season1_texcache]
0504 16:49:04110 :: The eterpack doesn't exist [pack/season2_texcache]
0504 16:49:04112 :: The eterpack doesn't exist [pack/outdoora1_texcache]
0504 16:49:04113 :: The eterpack doesn't exist [pack/outdoora2_texcache]
0504 16:49:04116 :: The eterpack doesn't exist [pack/outdoora3_texcache]
0504 16:49:04117 :: The eterpack doesn't exist [pack/outdoorb1_texcache]
0504 16:49:04119 :: The eterpack doesn't exist [pack/outdoorb3_texcache]
0504 16:49:04121 :: The eterpack doesn't exist [pack/outdoorc1_texcache]
0504 16:49:04123 :: The eterpack doesn't exist [pack/outdoorc3_texcache]
0504 16:49:04127 :: The eterpack doesn't exist [pack/outdoorsnow1_texcache]
0504 16:49:04129 :: The eterpack doesn't exist [pack/outdoordesert1_texcache]
0504 16:49:04131 :: The eterpack doesn't exist [pack/outdoorflame1_texcache]
0504 16:49:04133 :: The eterpack doesn't exist [pack/outdoorfielddungeon1_texcache]
0504 16:49:04134 :: The eterpack doesn't exist [pack/outdoort1_texcache]
0504 16:49:04135 :: The eterpack doesn't exist [pack/outdoort2_texcache]
0504 16:49:04136 :: The eterpack doesn't exist [pack/outdoort3_texcache]
0504 16:49:04138 :: The eterpack doesn't exist [pack/outdoort4_texcache]
0504 16:49:04139 :: The eterpack doesn't exist [pack/outdoorwedding_texcache]
0504 16:49:04140 :: The eterpack doesn't exist [pack/outdoormilgyo1_texcache]
0504 16:49:04142 :: The eterpack doesn't exist [pack/indoorspiderdungeon1_texcache]
0504 16:49:04143 :: The eterpack doesn't exist [pack/indoordeviltower1_texcache]
0504 16:49:04145 :: The eterpack doesn't exist [pack/indoormonkeydungeon1_texcache]
0504 16:49:04147 :: The eterpack doesn't exist [pack/indoormonkeydungeon2_texcache]
0504 16:49:04148 :: The eterpack doesn't exist [pack/indoormonkeydungeon3_texcache]
0504 16:49:04150 :: The eterpack doesn't exist [pack/outdoortrent02_texcache]
0504 16:49:04151 :: The eterpack doesn't exist [pack/outdoorguild1_texcache]
0504 16:49:04153 :: The eterpack doesn't exist [pack/outdoorguild2_texcache]
0504 16:49:04154 :: The eterpack doesn't exist [pack/outdoorguild3_texcache]
0504 16:49:04156 :: The eterpack doesn't exist [pack/outdoortrent_texcache]
0504 16:49:04157 :: The eterpack doesn't exist [pack/outdoortrent02_texcache]
0504 16:49:04158 :: The eterpack doesn't exist [pack/outdoorduel_texcache]
0504 16:49:04159 :: The eterpack doesn't exist [pack/outdoorgmguildbuild_texcache]
0504 16:49:04164 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04165 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04166 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04166 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04167 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04168 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04168 :: The eterpack doesn't exist [pack/sound_texcache]
0504 16:49:04174 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04176 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04176 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04177 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04178 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04179 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04179 :: The eterpack doesn't exist [pack/sound_m_texcache]
0504 16:49:04185 :: The eterpack doesn't exist [pack/sound2_texcache]
0504 16:49:04186 :: The eterpack doesn't exist [pack/sound2_texcache]
0504 16:49:04187 :: The eterpack doesn't exist [pack/bgm_texcache]
0504 16:49:04196 :: The eterpack doesn't exist [pack/ETC_texcache]
0504 16:49:04197 :: The eterpack doesn't exist [pack/ETC_texcache]
0504 16:49:04197 :: The eterpack doesn't exist [pack/locale_ca]
0504 16:49:04198 :: The eterpack doesn't exist [pack/locale_ca_texcache]
0504 16:49:04199 :: The eterpack doesn't exist [pack/locale_ae]
0504 16:49:04199 :: The eterpack doesn't exist [pack/locale_ae_texcache]
0504 16:49:04201 :: The eterpack doesn't exist [pack/locale_de_texcache]
0504 16:49:04204 :: The eterpack doesn't exist [pack/locale_es_texcache]
0504 16:49:04206 :: The eterpack doesn't exist [pack/locale_fr_texcache]
0504 16:49:04209 :: The eterpack doesn't exist [pack/locale_gr_texcache]
0504 16:49:04212 :: The eterpack doesn't exist [pack/locale_it_texcache]
0504 16:49:04212 :: The eterpack doesn't exist [pack/locale_nl_texcache]
0504 16:49:04214 :: The eterpack doesn't exist [pack/locale_pl_texcache]
0504 16:49:04216 :: The eterpack doesn't exist [pack/locale_pt_texcache]
0504 16:49:04218 :: The eterpack doesn't exist [pack/locale_tr_texcache]
0504 16:49:04219 :: The eterpack doesn't exist [pack/locale_uk]
0504 16:49:04220 :: The eterpack doesn't exist [pack/locale_uk_texcache]
0504 16:49:04221 :: The eterpack doesn't exist [pack/locale_bg]
0504 16:49:04221 :: The eterpack doesn't exist [pack/locale_bg_texcache]
0504 16:49:04223 :: The eterpack doesn't exist [pack/locale_en_texcache]
0504 16:49:04224 :: The eterpack doesn't exist [pack/locale_mx]
0504 16:49:04225 :: The eterpack doesn't exist [pack/locale_mx_texcache]
0504 16:49:04227 :: The eterpack doesn't exist [pack/locale_ro_texcache]
0504 16:49:04229 :: The eterpack doesn't exist [pack/locale_ru_texcache]
0504 16:49:04231 :: The eterpack doesn't exist [pack/locale_dk_texcache]
0504 16:49:04232 :: The eterpack doesn't exist [pack/locale_cz_texcache]
0504 16:49:04234 :: The eterpack doesn't exist [pack/locale_hu_texcache]
0504 16:49:04235 :: The eterpack doesn't exist [pack/locale_us]
0504 16:49:04235 :: The eterpack doesn't exist [pack/locale_us_texcache]
0504 16:49:04236 :: The eterpack doesn't exist [pack/locale_pa]
0504 16:49:04237 :: The eterpack doesn't exist [pack/locale_pa_texcache]
0504 16:49:04238 :: The eterpack doesn't exist [pack/uiscript_texcache]
0504 16:49:04239 :: The eterpack doesn't exist [pack/ETC_texcache]
0504 16:49:04240 :: The eterpack doesn't exist [pack/uiloading_texcache]
0504 16:49:00003 :: 
0504 16:49:00003 :: ## Network - OffLine Phase ##
0504 16:49:00004 :: 
0504 16:49:00005 :: SYSERR: CANNOT_FIND_PACK_FILE [locale/en/atlasinfo.txt]
0504 16:49:00034 :: importing from pack debugInfo
0504 16:49:00035 :: importing from pack localeInfo
0504 16:49:00041 :: importing from pack constInfo
0504 16:49:00052 :: importing from pack mouseModule
0504 16:49:00053 :: importing from pack ui
0504 16:49:00072 :: importing from pack networkModule
0504 16:49:00074 :: importing from pack playerSettingModule
0504 16:49:00085 :: importing from pack emotion
0504 16:49:00086 :: importing from pack uiPhaseCurtain
0504 16:49:00087 :: importing from pack uiCandidate
0504 16:49:00088 :: importing from pack musicInfo
0504 16:49:00088 :: importing from pack stringCommander
0504 16:49:00782 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/dropitem/dropitem.mss]
0504 16:49:00791 :: NEWMAIN STREAM ----------------------------------------------------------------------------0504 16:49:00791 :: 
0504 16:49:00791 :: NEW POPUP DIALOG ----------------------------------------------------------------------------0504 16:49:00791 :: 
0504 16:49:00792 :: importing from pack exception
0504 16:49:00792 :: ===== Load Script File : UIScript/PopupDialog.py0504 16:49:00793 :: 
0504 16:49:00793 :: importing from pack uiScriptLocale
0504 16:49:00804 :: NEW CURTAIN  ----------------------------------------------------------------------------0504 16:49:00804 :: 
0504 16:49:00805 :: 
0504 16:49:00806 :: ## Network - OffLine Phase ##
0504 16:49:00806 :: 
0504 16:49:00807 :: importing from pack introLogo
0504 16:49:00808 :: NEW LOGO WINDOW  ----------------------------------------------------------------------------0504 16:49:00808 :: 
0504 16:49:00899 :: OPEN LOGO WINDOW  ----------------------------------------------------------------------------0504 16:49:00899 :: 
0504 16:49:00901 :: PointWindow: SelectLogoWindow
0504 16:49:00956 :: 
0504 16:49:00957 :: ## Network - OffLine Phase ##
0504 16:49:00958 :: 
0504 16:49:00958 :: importing from pack introLogin
0504 16:49:00965 :: importing from pack serverInfo
0504 16:49:00966 :: importing from pack uiCommon
0504 16:49:00968 :: importing from lib time
0504 16:49:00968 :: importing from pack serverCommandParser
0504 16:49:00969 :: NEW LOGIN WINDOW  ----------------------------------------------------------------------------0504 16:49:00970 :: 
0504 16:49:00970 :: PointWindow: PhaseCurtain
0504 16:49:01101 :: ---------------------------------------------------------------CLOSE LOGO WINDOW0504 16:49:01102 :: 
0504 16:49:01105 :: LOGIN WINDOW OPEN ----------------------------------------------------------------------------0504 16:49:01105 :: 
0504 16:49:01106 :: ===== Load Script File : locale/en/ui/LoginWindow.py0504 16:49:01106 :: 
0504 16:49:01318 :: ÀÚµ¿ ·Î±×ÀÎÀ» ÇϽ÷Á¸éloginInfo.xmlÆÄÀÏÀ» ÀÛ¼ºÇØÁÖ¼¼¿ä

³»¿ë:
================================================================
addr=ÁÖ¼Ò
port=Æ÷Æ®
id=¾ÆÀ̵ð
pwd=ºñ¹Ð¹øÈ£
slot=ij¸¯ÅÍ ¼±Åà À妽º (¾ø°Å³ª -1À̸é ÀÚµ¿ ¼±Åà ¾ÈÇÔ)
autoLogin=ÀÚµ¿ Á¢¼Ó ¿©ºÎ
autoSelect=ÀÚµ¿ Á¢¼Ó ¿©ºÎ
locale=(ymir) LC_Ymir ÀÏ°æ¿ì ymir·Î ÀÛµ¿. ÁöÁ¤ÇÏÁö ¾ÊÀ¸¸é korea·Î ÀÛµ¿
0504 16:49:01319 :: 
0504 16:49:01324 :: ---------------------------------------------------------------------------- DELETE LOGO WINDOW0504 16:49:01324 :: 
0504 16:49:01325 :: Succeed connecting.
0504 16:49:01447 :: PointWindow: bg2
0504 16:49:01562 :: PointWindow: ServerList
0504 16:49:01596 :: PointWindow: ServerBoard
0504 16:49:01612 :: PointWindow: ChannelList
0504 16:49:01628 :: PointWindow: bg2
0504 16:49:02124 :: PointWindow: bg2
0504 16:49:02190 :: PointWindow: ServerBoard
0504 16:49:02206 :: PointWindow: bg2
0504 16:49:03593 :: PointWindow: bg2
0504 16:49:03658 :: PointWindow: ServerBoard
0504 16:49:03674 :: PointWindow: ServerList
0504 16:49:03692 :: PointWindow: ChannelList
0504 16:49:03726 :: PointWindow: bg2
0504 16:49:03954 :: PointWindow: ServerBoard
0504 16:49:03972 :: PointWindow: ChannelList
0504 16:49:04815 :: PointWindow: bg2
0504 16:49:07421 :: PointWindow: !!debug
0504 16:49:07502 :: HANDSHAKE RECV 10779708 0
0504 16:49:07503 :: HANDSHAKE SEND 10779708
0504 16:49:07585 :: HANDSHAKE RECV 10779788 40
0504 16:49:07586 :: HANDSHAKE SEND 10779868
0504 16:49:07667 :: KEY_AGREEMENT RECV 256
0504 16:49:07766 :: KEY_AGREEMENT SEND 256
0504 16:49:07799 :: KEY_AGREEMENT_COMPLETED RECV
0504 16:49:08128 :: Succeed connecting.
0504 16:49:08180 :: 
0504 16:49:08181 :: ## Network - Hand Shake Phase ##
0504 16:49:08182 :: 
0504 16:49:08196 :: HANDSHAKE RECV 10774381 0
0504 16:49:08196 :: HANDSHAKE SEND 10774381
0504 16:49:08261 :: HANDSHAKE RECV 10774460 39
0504 16:49:08262 :: HANDSHAKE SEND 10774538
0504 16:49:08344 :: KEY_AGREEMENT RECV 256
0504 16:49:08447 :: KEY_AGREEMENT SEND 256
0504 16:49:08460 :: KEY_AGREEMENT_COMPLETED RECV
0504 16:49:08509 :: 
0504 16:49:08514 :: ## Network - Login Phase ##
0504 16:49:08520 :: 
0504 16:49:09037 :: 
0504 16:49:09038 :: ## Network - Select Phase ##
0504 16:49:09039 :: 
0504 16:49:09199 :: SYSERR:     Çѱ¹¹«½Ö¹öÁ¯(#2    ) cannot find icon file. setting to default.
0504 16:49:09206 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+0(#13180) cannot find icon file. setting to default.
0504 16:49:09207 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+1(#13181) cannot find icon file. setting to default.
0504 16:49:09207 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+2(#13182) cannot find icon file. setting to default.
0504 16:49:09207 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+3(#13183) cannot find icon file. setting to default.
0504 16:49:09207 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+4(#13184) cannot find icon file. setting to default.
0504 16:49:09208 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+5(#13185) cannot find icon file. setting to default.
0504 16:49:09208 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+6(#13186) cannot find icon file. setting to default.
0504 16:49:09208 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+7(#13187) cannot find icon file. setting to default.
0504 16:49:09208 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+8(#13188) cannot find icon file. setting to default.
0504 16:49:09210 :: SYSERR:     ±¤·ûÆȱ¥ÆÐ+9(#13189) cannot find icon file. setting to default.
0504 16:49:09224 :: SYSERR:       À§Ä¡±â¾ïºÎ(#22020) cannot find icon file. setting to default.
0504 16:49:09224 :: SYSERR:           À̵¿ºÎ(#22030) cannot find icon file. setting to default.
0504 16:49:09224 :: SYSERR:           »ý¸íºÎ(#22040) cannot find icon file. setting to default.
0504 16:49:09225 :: SYSERR:           ȯ»ýºÎ(#22050) cannot find icon file. setting to default.
0504 16:49:09226 :: SYSERR:           °¡¸®ºñ(#29001) cannot find icon file. setting to default.
0504 16:49:09227 :: SYSERR:         û°¡¸®ºñ(#29002) cannot find icon file. setting to default.
0504 16:49:09227 :: SYSERR:         Ȳ°¡¸®ºñ(#29003) cannot find icon file. setting to default.
0504 16:49:09228 :: SYSERR:         È«°¡¸®ºñ(#29004) cannot find icon file. setting to default.
0504 16:49:09228 :: SYSERR:         ³ì°¡¸®ºñ(#29005) cannot find icon file. setting to default.
0504 16:49:09228 :: SYSERR:           ȲÁÖ¼®(#29006) cannot find icon file. setting to default.
0504 16:49:09229 :: SYSERR:           ûÁÖ¼®(#29007) cannot find icon file. setting to default.
0504 16:49:09229 :: SYSERR:           û½Å¼ö(#29008) cannot find icon file. setting to default.
0504 16:49:09229 :: SYSERR:           Ȳ½Å¼ö(#29009) cannot find icon file. setting to default.
0504 16:49:09230 :: SYSERR:           È«½Å¼ö(#29010) cannot find icon file. setting to default.
0504 16:49:09230 :: SYSERR:           ³ì½Å¼ö(#29011) cannot find icon file. setting to default.
0504 16:49:09230 :: SYSERR:         ¿¬Ã»½Å¼ö(#29012) cannot find icon file. setting to default.
0504 16:49:09231 :: SYSERR:         ¿¬È²½Å¼ö(#29013) cannot find icon file. setting to default.
0504 16:49:09231 :: SYSERR:         ¿¬È«½Å¼ö(#29014) cannot find icon file. setting to default.
0504 16:49:09231 :: SYSERR:         ¿¬³ì½Å¼ö(#29015) cannot find icon file. setting to default.
0504 16:49:09232 :: SYSERR: ¿õ±ÍÀÇ È²±Ý¾î±Ý´Ï(#30103) cannot find icon file. setting to default.
0504 16:49:09232 :: SYSERR:    »ç¸·ÀÇ °Å¹ÌÁÙ(#30104) cannot find icon file. setting to default.
0504 16:49:09232 :: SYSERR:  Åå½î´Â Àü°¥²¿¸®(#30105) cannot find icon file. setting to default.
0504 16:49:09234 :: SYSERR:   À¯¶û ¾î¸Ó´Ï ¾à(#30106) cannot find icon file. setting to default.
0504 16:49:09235 :: SYSERR:    ¿õ±ÍÀÇ ¼Û°÷´Ï(#30107) cannot find icon file. setting to default.
0504 16:49:09235 :: SYSERR: µµÀÚ±âÂø»ö¿ëÀ¯¾à(#30108) cannot find icon file. setting to default.
0504 16:49:09235 :: SYSERR:    »ç¸·ÀÇ °Å¹ÌÁÙ(#30109) cannot find icon file. setting to default.
0504 16:49:09235 :: SYSERR:    ÈľȼÒÀÇ ÆíÁö(#30110) cannot find icon file. setting to default.
0504 16:49:09237 :: SYSERR:  Åå½î´Â Àü°¥²¿¸®(#30111) cannot find icon file. setting to default.
0504 16:49:09237 :: SYSERR:             Àå¾î(#30112) cannot find icon file. setting to default.
0504 16:49:09237 :: SYSERR:        ¹Ð±³ °æÀü(#30113) cannot find icon file. setting to default.
0504 16:49:09237 :: SYSERR:           ±«Áú±Õ(#30114) cannot find icon file. setting to default.
0504 16:49:09238 :: SYSERR:      ±«Áú Ä¡·áÁ¦(#30115) cannot find icon file. setting to default.
0504 16:49:09238 :: SYSERR:    Çà»óÀÎÀÇ ÆíÁö(#30117) cannot find icon file. setting to default.
0504 16:49:09238 :: SYSERR:    »ç±ÍÀÇ º¸¼®ÇÔ(#30118) cannot find icon file. setting to default.
0504 16:49:09245 :: SYSERR:      VIP-Feature(#38001) cannot find icon file. setting to default.
0504 16:49:09245 :: SYSERR: Tombola_ticket_today(#38002) cannot find icon file. setting to default.
0504 16:49:09245 :: SYSERR: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default.
0504 16:49:09245 :: SYSERR:   Tombola_reroll(#38004) cannot find icon file. setting to default.
0504 16:49:09247 :: SYSERR:   TombolaPP_spin(#38005) cannot find icon file. setting to default.
0504 16:49:09247 :: SYSERR:      Momo-Reroll(#38006) cannot find icon file. setting to default.
0504 16:49:09247 :: SYSERR:    ¼Ò¸®³ª´Â ¹æ¿ï(#40005) cannot find icon file. setting to default.
0504 16:49:09248 :: SYSERR:    ¿À¶ûij ¼ö¼Û¼­(#40006) cannot find icon file. setting to default.
0504 16:49:09248 :: SYSERR: ¿À¶ûij º¸½º ÆíÁö(#40007) cannot find icon file. setting to default.
0504 16:49:09250 :: SYSERR:       ¼±¹°º¸µû¸®(#50041) cannot find icon file. setting to default.
0504 16:49:09250 :: SYSERR:       ½Â¸¶¼ö·Ã¼­(#50062) cannot find icon file. setting to default.
0504 16:49:09251 :: SYSERR:     ¿ë°¢º¸¹°»óÀÚ(#50118) cannot find icon file. setting to default.
0504 16:49:09251 :: SYSERR:       ¿µ¼®º¸µû¸®(#50119) cannot find icon file. setting to default.
0504 16:49:09252 :: SYSERR:         ¼®Ã¢Æ÷¾×(#50805) cannot find icon file. setting to default.
0504 16:49:09253 :: SYSERR:       ¿µÁö¹ö¼¸¾×(#50806) cannot find icon file. setting to default.
0504 16:49:09253 :: SYSERR:         ¸¸º´Ãʾ×(#50807) cannot find icon file. setting to default.
0504 16:49:09254 :: SYSERR:       »ê»Í³ª¹«¾×(#50808) cannot find icon file. setting to default.
0504 16:49:09254 :: SYSERR:         ¹Îµé·¹¾×(#50809) cannot find icon file. setting to default.
0504 16:49:09254 :: SYSERR:         È«È­¾¾¾×(#50810) cannot find icon file. setting to default.
0504 16:49:09255 :: SYSERR:           ´ëÃß¾×(#50811) cannot find icon file. setting to default.
0504 16:49:09255 :: SYSERR:     »ïÁö±¸¿±Ãʾ×(#50812) cannot find icon file. setting to default.
0504 16:49:09255 :: SYSERR:           ºó¾àº´(#50901) cannot find icon file. setting to default.
0504 16:49:09257 :: SYSERR:    È°½É¾× Á¦Á¶¹ý(#50905) cannot find icon file. setting to default.
0504 16:49:09257 :: SYSERR:    Çǵ¶¼ö Á¦Á¶¹ý(#50906) cannot find icon file. setting to default.
0504 16:49:09257 :: SYSERR:    º¸È¯¼ö Á¦Á¶¹ý(#50907) cannot find icon file. setting to default.
0504 16:49:09257 :: SYSERR:    ¿µº¸¼ö Á¦Á¶¹ý(#50908) cannot find icon file. setting to default.
0504 16:49:09258 :: SYSERR:    ÁøÇǵ¶ Á¦Á¶¹ý(#50909) cannot find icon file. setting to default.
0504 16:49:09258 :: SYSERR:    È°½É¾× Á¦Á¶¹ý(#50910) cannot find icon file. setting to default.
0504 16:49:09260 :: SYSERR:             ºÒ°æ(#70103) cannot find icon file. setting to default.
0504 16:49:09260 :: SYSERR:      ¿ë½ÅÀÇ Áö¿ø(#71031) cannot find icon file. setting to default.
0504 16:49:09261 :: SYSERR:      µ¿·á¿Í ȸÆ÷(#71047) cannot find icon file. setting to default.
0504 16:49:09262 :: SYSERR:     Àü±¤ÆǺ¸µû¸®(#71091) cannot find icon file. setting to default.
0504 16:49:09264 :: SYSERR:       °æÇèÀǹÝÁö(#72303) cannot find icon file. setting to default.
0504 16:49:09265 :: SYSERR:      ÃູÀÇ ±¸½½(#72304) cannot find icon file. setting to default.
0504 16:49:09266 :: SYSERR:         ¸¸³âÇÑö(#72308) cannot find icon file. setting to default.
0504 16:49:09266 :: SYSERR:    ¾ß°øÀÇ ºñÀü¼­(#72309) cannot find icon file. setting to default.
0504 16:49:09267 :: SYSERR:         Á־ȼú¼­(#72310) cannot find icon file. setting to default.
0504 16:49:09267 :: SYSERR:        ¿ë½ÅÀÇ È¯(#72311) cannot find icon file. setting to default.
0504 16:49:09267 :: SYSERR:      ¿ë½ÅÀÇ °ø°Ý(#72312) cannot find icon file. setting to default.
0504 16:49:09267 :: SYSERR:      ¿ë½ÅÀÇ ¹æ¾î(#72313) cannot find icon file. setting to default.
0504 16:49:09267 :: SYSERR:    ¿ë½ÅÀÇ Ãູ¼­(#72314) cannot find icon file. setting to default.
0504 16:49:09268 :: SYSERR:         µ·ÁÖ¸Ó´Ï(#80001) cannot find icon file. setting to default.
0504 16:49:09269 :: SYSERR:             ¹éÁö(#80002) cannot find icon file. setting to default.
0504 16:49:09269 :: SYSERR:           ºó¹°Åë(#90001) cannot find icon file. setting to default.
0504 16:49:09269 :: SYSERR:             ¹°Åë(#90002) cannot find icon file. setting to default.
0504 16:49:09269 :: SYSERR:             º¸¼®(#90004) cannot find icon file. setting to default.
0504 16:49:09270 :: SYSERR:             ¿µ¼®(#90006) cannot find icon file. setting to default.
0504 16:49:09270 :: SYSERR:             ±¤¼®(#90007) cannot find icon file. setting to default.
0504 16:49:09317 :: CPythonNonPlayer::LoadNonPlayerData: locale/en/mob_proto, sizeof(TMobTable)=255
0504 16:49:09338 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:158 Line:56]
0504 16:49:09338 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:159 Line:57]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:160 Line:58]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:161 Line:59]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:162 Line:60]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:256 Line:61]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:257 Line:62]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:258 Line:63]
0504 16:49:09339 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:259 Line:64]
0504 16:49:09340 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:260 Line:65]
0504 16:49:09340 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:261 Line:66]
0504 16:49:09340 :: CPythonSkill::RegisterSkillTable(locale/en/SkillTable.txt) - NOT EXIST SkillDesc [Vnum:262 Line:67]
0504 16:49:09342 :: importing from pack introSelect
0504 16:49:09347 :: importing from lib math
0504 16:49:09347 :: importing from pack uiMapNameShower
0504 16:49:09349 :: importing from pack uiAffectShower
0504 16:49:09352 :: importing from pack uiToolTip
0504 16:49:09364 :: importing from pack uiPlayerGauge
0504 16:49:09364 :: importing from pack uiCharacter
0504 16:49:09370 :: importing from pack uiTarget
0504 16:49:09373 :: importing from pack consoleModule
0504 16:49:09377 :: importing from pack interfaceModule
0504 16:49:09385 :: importing from pack uiTaskBar
0504 16:49:09391 :: importing from pack uiInventory
0504 16:49:09398 :: importing from pack uiRefine
0504 16:49:09401 :: importing from pack uiAttachMetin
0504 16:49:09402 :: importing from pack uiPickMoney
0504 16:49:09403 :: importing from pack uiPrivateShopBuilder
0504 16:49:09405 :: importing from pack uiDragonSoul
0504 16:49:09414 :: importing from pack uiChat
0504 16:49:09421 :: importing from pack colorInfo
0504 16:49:09423 :: importing from lib cPickle
0504 16:49:09423 :: importing from lib cStringIO
0504 16:49:09423 :: importing from pack uiMessenger
0504 16:49:09427 :: importing from pack uiGameOption
0504 16:49:09431 :: importing from pack uiHelp
0504 16:49:09432 :: importing from pack uiWhisper
0504 16:49:09434 :: importing from pack uiPointReset
0504 16:49:09435 :: importing from pack uiShop
0504 16:49:09437 :: importing from pack uiExchange
0504 16:49:09439 :: importing from pack uiSystem
0504 16:49:09440 :: importing from pack uiOption
0504 16:49:09443 :: importing from pack uiSystemOption
0504 16:49:09444 :: importing from pack uiSelectMusic
0504 16:49:09446 :: importing from pack uiRestart
0504 16:49:09446 :: importing from pack uiMiniMap
0504 16:49:09449 :: importing from pack uiParty
0504 16:49:09453 :: importing from pack uiSafebox
0504 16:49:09457 :: importing from pack uiGuild
0504 16:49:09470 :: importing from pack uiUploadMark
0504 16:49:09472 :: importing from pack uiQuest
0504 16:49:09477 :: importing from pack uiEquipmentDialog
0504 16:49:09478 :: importing from pack uiGameButton
0504 16:49:09479 :: importing from pack uiTip
0504 16:49:09481 :: importing from pack uiCube
0504 16:49:09485 :: importing from pack uiselectitem
0504 16:49:09539 :: PointWindow: PhaseCurtain
0504 16:49:09541 :: ---------------------------------------------------------------------------- CLOSE LOGIN WINDOW 0504 16:49:09541 :: 
0504 16:49:09542 :: ===== Load Script File : locale/en/ui/selectcharacterwindow.py0504 16:49:09542 :: 
0504 16:49:09638 :: ===== Load Script File : uiscript/questiondialog.py0504 16:49:09638 :: 
0504 16:49:09642 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/dust.mss]
0504 16:49:09646 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/running_dust.mss]
0504 16:49:09657 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_red.mss]
0504 16:49:09662 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_blue.mss]
0504 16:49:09665 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_green.mss]
0504 16:49:09668 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_purple.mss]
0504 16:49:09671 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_red.mss]
0504 16:49:09675 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_blue.mss]
0504 16:49:09683 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item1.mss]
0504 16:49:09701 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item2.mss]
0504 16:49:09710 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item3.mss]
0504 16:49:09721 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item4.mss]
0504 16:49:09731 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/hit/gwantong.mss]
0504 16:49:09790 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_select.mss]
0504 16:49:09794 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_glow_select.mss]
0504 16:49:09799 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun.mss]
0504 16:49:09820 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click.mss]
0504 16:49:09824 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target.mss]
0504 16:49:09826 :: SYSERR: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
0504 16:49:09827 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/nontarget.mss]
0504 16:49:09828 :: SYSERR: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg]
0504 16:49:09828 :: CResource::Load file not exist d:\ymir work\effect\affect\damagevalue\0.jpg
0504 16:49:09830 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage.mss]
0504 16:49:09832 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage_1.mss]
0504 16:49:09834 :: SYSERR: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg
0504 16:49:09835 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/poison.mss]
0504 16:49:09835 :: SYSERR: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg]
0504 16:49:09835 :: CResource::Load file not exist d:\ymir work\effect\affect\damagevalue\poison0.jpg
0504 16:49:09837 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/miss.mss]
0504 16:49:09839 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target_miss.mss]
0504 16:49:09858 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage1.mss]
0504 16:49:09866 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage2.mss]
0504 16:49:09874 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage3.mss]
0504 16:49:09874 :: CRaceManager::CreateRace(dwRaceIndex=0)
0504 16:49:09903 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/wait.mss]
0504 16:49:09908 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/not_selected.mss]
0504 16:49:09913 :: CRaceManager::CreateRace(dwRaceIndex=4)
0504 16:49:09943 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/wait.mss]
0504 16:49:09951 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/not_selected.mss]
0504 16:49:09956 :: CRaceManager::CreateRace(dwRaceIndex=1)
0504 16:49:09984 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/wait.mss]
0504 16:49:09993 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/not_selected.mss]
0504 16:49:09998 :: CRaceManager::CreateRace(dwRaceIndex=5)
0504 16:49:10040 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/wait.mss]
0504 16:49:10050 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/not_selected.mss]
0504 16:49:10055 :: CRaceManager::CreateRace(dwRaceIndex=2)
0504 16:49:10083 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/wait.mss]
0504 16:49:10094 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/not_selected.mss]
0504 16:49:10098 :: CRaceManager::CreateRace(dwRaceIndex=6)
0504 16:49:10128 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/wait.mss]
0504 16:49:10139 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/not_selected.mss]
0504 16:49:10144 :: CRaceManager::CreateRace(dwRaceIndex=3)
0504 16:49:10172 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/wait.mss]
0504 16:49:10182 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/not_selected.mss]
0504 16:49:10188 :: CRaceManager::CreateRace(dwRaceIndex=7)
0504 16:49:10215 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/wait.mss]
0504 16:49:10225 :: SYSERR: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/not_selected.mss]
0504 16:49:10229 :: SelectCharacterInstance: no vid by 0
0504 16:49:10277 :: ---------------------------------------------------------------------------- DELETE LOGIN WINDOW0504 16:49:10277 :: 
0504 16:49:10445 :: PointWindow: BackGround
0504 16:49:17194 :: PointWindow: character_board
0504 16:49:17227 :: PointWindow: start_button
0504 16:49:21483 :: Succeed connecting.
0504 16:49:21549 :: 
0504 16:49:21551 :: ## Network - Hand Shake Phase ##
0504 16:49:21552 :: 
0504 16:49:21566 :: HANDSHAKE RECV 10790749 0
0504 16:49:21566 :: HANDSHAKE SEND 10790749
0504 16:49:21665 :: HANDSHAKE RECV 10790868 59
0504 16:49:21666 :: HANDSHAKE SEND 10790986
0504 16:49:21747 :: HANDSHAKE RECV 10790949 40
0504 16:49:21748 :: HANDSHAKE SEND 10791029
0504 16:49:21830 :: HANDSHAKE RECV 10791028 0
0504 16:49:21830 :: HANDSHAKE SEND 10791028
0504 16:49:21913 :: HANDSHAKE RECV 10791109 40
0504 16:49:21915 :: HANDSHAKE SEND 10791189
0504 16:49:21994 :: KEY_AGREEMENT RECV 256
0504 16:49:22092 :: KEY_AGREEMENT SEND 256
0504 16:49:22110 :: KEY_AGREEMENT_COMPLETED RECV
0504 16:49:22159 :: 
0504 16:49:22160 :: ## Network - Login Phase ##
0504 16:49:22161 :: 
0504 16:49:22655 :: 
0504 16:49:22657 :: ## Network - Select Phase ##
0504 16:49:22657 :: 
0504 16:49:22658 :: importing from pack introLoading
0504 16:49:22660 :: NEW LOADING WINDOW -------------------------------------------------------------------------------0504 16:49:22660 :: 
0504 16:49:22713 :: PointWindow: PhaseCurtain
 

 

Edited by keviinn25
Link to comment
Share on other sites

Announcements



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