Jump to content

Timasu

Inactive Member
  • Posts

    117
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Timasu

  1. Hi, Someone resolved the war bug? /war -1111111 and server go down. Thanks
  2. Hi M2DEV Someone have this?: If you have plase give a PM with link, thanks.
  3. Hi Metin2Dev, I have a problem. I've used this: [Hidden Content] And now: How can I solve it? Thanks.
  4. The problem can be the model or wear flag
  5. You wrong something. I've tested it and works.
  6. I made a short tut^^: At first i want to say: this is not compatible with a table_postfix or item_vnum ranges. [1] open "ClientManagerBoot.cpp" and make these both if-terms to comments or delete them (in my tree at line 22 - 26 and 34 - 38) [2] edit the function "CClientManager::InitializeMobTable()" like this: [3] edit the function "CClientManager::InitializeItemTable()" like this: [4] make both functions "bool CClientManager::MirrorMobTableIntoDB()" and "bool CClientManager::MirrorItemTableIntoDB()" to comments or delete them [5] open "ClientManager.h" and delete or make these functions to comments: Thanks to iMer because i use some lines of his code and he had to stand over my skype spam^^ NOTE: If you have different table structures or more columns you want to use, you have to change the functions
  7. Let's start! 1. Open guild.cpp (game) and find int CGuild::GetMaxMemberCount() 2. Replace like me: Before: int CGuild::GetMaxMemberCount() { // GUILD_IS_FULL_BUG_FIX if ( m_iMemberCountBonus < 0 || m_iMemberCountBonus > 18 ) m_iMemberCountBonus = 0; // END_GUILD_IS_FULL_BUG_FIX if ( LC_IsHongKong() == true ) { quest::PC* pPC = quest::CQuestManager::instance().GetPC(GetMasterPID()); if ( pPC != NULL ) { if ( pPC->GetFlag("guild.is_unlimit_member") == 1 ) { return INT_MAX; } } } return 32 + 2 * (m_data.level-1) + m_iMemberCountBonus; } After: int CGuild::GetMaxMemberCount() { // GUILD_IS_FULL_BUG_FIX if ( m_iMemberCountBonus < 0 || m_iMemberCountBonus > 18 ) m_iMemberCountBonus = 0; // END_GUILD_IS_FULL_BUG_FIX if ( LC_IsHongKong() == true ) { quest::PC* pPC = quest::CQuestManager::instance().GetPC(GetMasterPID()); if ( pPC != NULL ) { if ( pPC->GetFlag("guild.is_unlimit_member") == 1 ) { return INT_MAX; } } } return INT_MAX; }
  8. Let's start! 1. Open input_main.cpp (game) and find SHOUT_LIMIT_LEVEL 2. You will find like this const int SHOUT_LIMIT_LEVEL = g_iUseLocale ? 15 : 3; if (ch->GetLevel() < SHOUT_LIMIT_LEVEL) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("¿ÜÄ¡±â´Â ·¹º§ %d ÀÌ»ó¸¸ »ç¿ë °¡´É ÇÕ´Ï´Ù."), SHOUT_LIMIT_LEVEL); return (iExtraLen); } 3. Now, simple remove this: Before: if (pinfo->type == CHAT_TYPE_SHOUT) { const int SHOUT_LIMIT_LEVEL = g_iUseLocale ? 15 : 3; if (ch->GetLevel() < SHOUT_LIMIT_LEVEL) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("¿ÜÄ¡±â´Â ·¹º§ %d ÀÌ»ó¸¸ »ç¿ë °¡´É ÇÕ´Ï´Ù."), SHOUT_LIMIT_LEVEL); return (iExtraLen); } if (thecore_heart->pulse - (int) ch->GetLastShoutPulse() < passes_per_sec * 15) return (iExtraLen); ch->SetLastShoutPulse(thecore_heart->pulse); TPacketGGShout p; p.bHeader = HEADER_GG_SHOUT; p.bEmpire = ch->GetEmpire(); strlcpy(p.szText, chatbuf, sizeof(p.szText)); P2P_MANAGER::instance().Send(&p, sizeof(TPacketGGShout)); SendShout(chatbuf, ch->GetEmpire()); return (iExtraLen); } After: if (pinfo->type == CHAT_TYPE_SHOUT) { if (thecore_heart->pulse - (int) ch->GetLastShoutPulse() < passes_per_sec * 15) return (iExtraLen); ch->SetLastShoutPulse(thecore_heart->pulse); TPacketGGShout p; p.bHeader = HEADER_GG_SHOUT; p.bEmpire = ch->GetEmpire(); strlcpy(p.szText, chatbuf, sizeof(p.szText)); P2P_MANAGER::instance().Send(&p, sizeof(TPacketGGShout)); SendShout(chatbuf, ch->GetEmpire()); return (iExtraLen); } Bye
  9. Timasu

    New server ideas

    Hi, I want to know which mode you like? (classic, old school, new style) Because in Romania 80% of Private Servers players like classic and old school. But I obs. that in Germany many players like new style (new interface, new armours, ....) Here, I want to know your opinon and If you have some ideas for server plase leave here a comment. Thanks
  10. Hi, how can I edit .Mde file? or create once?
  11. Thanks. Now no error, but still I disconnects... I use this: [Hidden Content]
  12. Sorry, but not work. Can you upload Makefile on pastebin? (or here) plase?
  13. Hi, after loading client close. (cause: game file - I tested with another game and works). I have some errors in build: In file included from char.cpp:25: shop_manager.h:40:7: warning: no newline at end of file In file included from char.cpp:62: PetSystem.h:163:31: warning: no newline at end of file char.cpp:7234: warning: this decimal constant is unsigned only in ISO C90 char.cpp:7242:2: warning: no newline at end of file char.cpp: In member function 'void CHARACTER::PointChange(BYTE, int, bool, bool)': char.cpp:3079: warning: comparison between signed and unsigned integer expressions In file included from char_battle.cpp:27: shop_manager.h:40:7: warning: no newline at end of file In file included from char_item.cpp:47: belt_inventory_helper.h:108:42: warning: no newline at end of file In file included from char_item.cpp:47: belt_inventory_helper.h: In static member function 'static BYTE CBeltInventoryHelper::GetBeltGradeByRefineLevel(int)': belt_inventory_helper.h:28: warning: comparison between signed and unsigned integer expressions char_item.cpp: In member function 'bool CHARACTER::IsEmptyItemGrid(TItemPos, BYTE, int) const': char_item.cpp:642: warning: comparison is always false due to limited range of data type char_item.cpp:668: warning: comparison is always false due to limited range of data type char_item.cpp: In member function 'bool CHARACTER::UseItemEx(CItem*, TItemPos)': char_item.cpp:2389: warning: format '%d' expects type 'int', but argument 6 has type 'long int' char_item.cpp:2393: warning: format '%d' expects type 'int', but argument 6 has type 'long int' char_item.cpp:2405: warning: format '%d' expects type 'int', but argument 5 has type 'long int' char_item.cpp:2409: warning: format '%d' expects type 'int', but argument 5 has type 'long int' char_item.cpp:2436: warning: format '%d' expects type 'int', but argument 6 has type 'long int' char_item.cpp:2444: warning: format '%d' expects type 'int', but argument 5 has type 'long int' char_item.cpp: In member function 'bool CHARACTER::UseItem(TItemPos, TItemPos)': char_item.cpp:5156: warning: unused variable 'wDestCell' char_item.cpp:5157: warning: unused variable 'bDestInven' char_item.cpp: In member function 'bool CHARACTER::EquipItem(CItem*, int)': char_item.cpp:6131: warning: array subscript has type 'char' char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_AddBuffsFromItem(CItem*)': char_item.cpp:6195: warning: comparison between signed and unsigned integer expressions char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_RemoveBuffsFromItem(CItem*)': char_item.cpp:6207: warning: comparison between signed and unsigned integer expressions char_item.cpp: In member function 'bool CHARACTER::CanEquipNow(CItem*, const TItemPos&, const TItemPos&)': char_item.cpp:7391: warning: unused variable 'itemType' char_item.cpp:7392: warning: unused variable 'itemSubType' char_item.cpp: In member function 'bool CHARACTER::IsEmptyItemGrid(TItemPos, BYTE, int) const': char_item.cpp:681: warning: control reaches end of non-void function char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_ValueChange(BYTE, BYTE, BYTE)': char_item.cpp:6242: warning: 'pBuff' may be used uninitialized in this function char_state.cpp: In member function 'virtual void CHARACTER::StateMove()': char_state.cpp:901: warning: unused variable 'rider' In file included from PetSystem.cpp:8: PetSystem.h:163:31: warning: no newline at end of file PetSystem.cpp:637:2: warning: no newline at end of file PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3926: warning: NULL used in arithmetic cmd_gm.cpp:3968: warning: 'n' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_use_item(CHARACTER*, const char*, int, int)': cmd_gm.cpp:4348: warning: 'cell' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_mob_ld(CHARACTER*, const char*, int, int)': cmd_gm.cpp:852: warning: 'x' may be used uninitialized in this function cmd_gm.cpp:852: warning: 'y' may be used uninitialized in this function config.cpp: In function 'void config_init(const std::string&)': config.cpp:453: warning: NULL used in arithmetic config.cpp:477: warning: NULL used in arithmetic config.cpp:501: warning: NULL used in arithmetic config.cpp:523: warning: unused variable 'line' constants.cpp:291: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:292: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:293: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:294: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:295: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:296: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:297: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:298: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:299: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:300: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:301: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:302: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:303: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:304: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:305: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:306: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:307: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:308: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:309: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:310: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:311: warning: this decimal constant is unsigned only in ISO C90 cube.cpp: In function 'bool Cube_make(CHARACTER*)': cube.cpp:544: warning: comparison between signed and unsigned integer expressions cube.cpp: In function 'void Cube_MakeCubeInformationText()': cube.cpp:716: warning: unused variable 'npcVNUM' cube.cpp: In function 'void Cube_InformationInitialize()': cube.cpp:783: warning: comparison between signed and unsigned integer expressions desc_client.cpp: In member function 'void CLIENT_DESC::UpdateChannelStatus(DWORD, bool)': desc_client.cpp:299: warning: comparison between signed and unsigned integer expressions In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file input_auth.cpp: In member function 'int CInputAuth::auth_OpenID(const char*, const char*, char*)': input_auth.cpp:465: warning: unused variable 'last' In file included from input_db.cpp:13: shop_manager.h:40:7: warning: no newline at end of file input_db.cpp:2723:2: warning: no newline at end of file In file included from input_main.cpp:16: shop_manager.h:40:7: warning: no newline at end of file input_main.cpp: In member function 'int CInputMain::Chat(CHARACTER*, const char*, size_t)': input_main.cpp:704: warning: unused variable 'len' input_main.cpp:706: warning: unused variable 'len' input_main.cpp: In function 'int ProcessTextTag(CHARACTER*, const char*, size_t)': input_main.cpp:252: warning: 'nPrismCount' may be used uninitialized in this function input_main.cpp: In member function 'int CInputMain::Chat(CHARACTER*, const char*, size_t)': input_main.cpp:720: warning: 'len' is used uninitialized in this function In file included from item.cpp:22: belt_inventory_helper.h:108:42: warning: no newline at end of file item.cpp:2084:2: warning: no newline at end of file In file included from item.cpp:22: belt_inventory_helper.h: In static member function 'static BYTE CBeltInventoryHelper::GetBeltGradeByRefineLevel(int)': belt_inventory_helper.h:28: warning: comparison between signed and unsigned integer expressions item.h: In constructor 'CItem::CItem(DWORD)': item.h:286: warning: 'CItem::m_pkRealTimeExpireEvent' will be initialized after item.h:283: warning: 'LPEVENT CItem::m_pkExpireEvent' item.cpp:25: warning: when initialized here item.cpp: In function 'const bool CanPutIntoRing(CItem*, CItem*)': item.cpp:1725: warning: unused variable 'vnum' item.cpp: In member function 'bool CItem::CanPutInto(CItem*)': item.cpp:1758: warning: comparison between signed and unsigned integer expressions item.cpp: In member function 'int CItem::GiveMoreTime_Per(float)': item.cpp:2014: warning: comparison between signed and unsigned integer expressions item.cpp:2016: warning: comparison between signed and unsigned integer expressions item.cpp: In member function 'int CItem::GiveMoreTime_Fix(DWORD)': item.cpp:2038: warning: comparison between signed and unsigned integer expressions item.cpp: In member function 'int CItem::GetDuration()': item.cpp:2069: warning: array subscript has type 'char' item_manager.cpp: In member function 'TItemTable* ITEM_MANAGER::GetTable(DWORD)': item_manager.cpp:612: warning: comparison between signed and unsigned integer expressions monarch.cpp:276:2: warning: no newline at end of file p2p.cpp:286:2: warning: no newline at end of file party.cpp:1737:2: warning: no newline at end of file questlua.cpp: In member function 'bool quest::FPartyCheckFlagLt::operator()(CHARACTER*)': questlua.cpp:78: warning: 'returnBool' may be used uninitialized in this function In file included from questlua_pet.cpp:11: PetSystem.h:163:31: warning: no newline at end of file questlua_pet.cpp:157:2: warning: no newline at end of file In file included from questlua_npc.cpp:9: shop_manager.h:40:7: warning: no newline at end of file questlua_npc.cpp: In function 'int quest::npc_get_vid_attack_mul(lua_State*)': questlua_npc.cpp:293: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_attack_mul(lua_State*)': questlua_npc.cpp:309: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_get_vid_damage_mul(lua_State*)': questlua_npc.cpp:324: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_damage_mul(lua_State*)': questlua_npc.cpp:340: warning: unused variable 'q' questnpc.cpp: In member function 'bool quest::NPC::HandleEvent(quest::PC&, int)': questnpc.cpp:500: warning: unused variable 'pPC' shop.cpp:595:2: warning: no newline at end of file shop.cpp: In member function 'virtual bool CShop::IsSellingItem(DWORD)': shop.cpp:586: warning: comparison between signed and unsigned integer expressions In file included from trigger.cpp:8: shop_manager.h:40:7: warning: no newline at end of file utils.cpp: In function 'bool WildCaseCmp(const char*, const char*)': utils.cpp:244: warning: NULL used in arithmetic utils.cpp:256: warning: NULL used in arithmetic utils.cpp:270: warning: NULL used in arithmetic FileMonitor_FreeBSD.cpp:136:2: warning: no newline at end of file In file included from ClientPackageCryptInfo.cpp:2: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file ClientPackageCryptInfo.h: In constructor 'CClientPackageCryptInfo::CClientPackageCryptInfo()': ClientPackageCryptInfo.h:50: warning: 'CClientPackageCryptInfo::m_pSerializedCryptKeyStream' will be initialized after ClientPackageCryptInfo.h:48: warning: 'int CClientPackageCryptInfo::m_nCryptKeyPackageCnt' ClientPackageCryptInfo.cpp:9: warning: when initialized here ../../../Extern/include/cryptopp/algparam.h: In constructor 'CryptoPP::ConstByteArrayParameter::ConstByteArrayParameter(const T&, bool) [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]': ../../../Extern/include/cryptopp/filters.h:793: instantiated from here ../../../Extern/include/cryptopp/algparam.h:26: warning: unused variable 'cryptopp_assert_26' ../../../Extern/include/cryptopp/algparam.h: In member function 'void CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void*) const [with T = CryptoPP::RandomNumberGenerator*]': cipher.cpp:397: instantiated from here ../../../Extern/include/cryptopp/algparam.h:322: warning: unused variable 'p' buff_on_attributes.cpp: In member function 'void CBuffOnAttributes::ChangeBuffValue(BYTE)': buff_on_attributes.cpp:112: warning: unused variable 'old_value' buff_on_attributes.cpp:113: warning: unused variable 'new_value' In file included from dragon_soul_table.cpp:4: dragon_soul_table.h:74:7: warning: no newline at end of file dragon_soul_table.cpp: In member function 'bool DragonSoulTable::ReadAdditionalApplys()': dragon_soul_table.cpp:223: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckApplyNumSettings()': dragon_soul_table.cpp:283: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckWeightTables()': dragon_soul_table.cpp:311: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckRefineGradeTables()': dragon_soul_table.cpp:343: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp:372: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckRefineStepTables()': dragon_soul_table.cpp:397: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp:427: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckRefineStrengthTables()': dragon_soul_table.cpp:453: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckDragonHeartExtTables()': dragon_soul_table.cpp:494: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp:513: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp:522: warning: comparison between signed and unsigned integer expressions dragon_soul_table.cpp: In member function 'bool DragonSoulTable::CheckDragonSoulExtTables()': dragon_soul_table.cpp:545: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(const std::string&, T&) const [with T = std::string]': dragon_soul_table.cpp:129: instantiated from here group_text_parse_tree.h:220: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(const std::string&, T&) const [with T = BYTE]': dragon_soul_table.cpp:134: instantiated from here group_text_parse_tree.h:220: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(const std::string&, T&) const [with T = int]': dragon_soul_table.cpp:201: instantiated from here group_text_parse_tree.h:220: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(const std::string&, T&) const [with T = float]': dragon_soul_table.cpp:260: instantiated from here group_text_parse_tree.h:220: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = float]': dragon_soul_table.cpp:828: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = int]': group_text_parse_tree.h:159: instantiated from 'bool CGroupNode::GetValue(const std::string&, const std::string&, T&) const [with T = int]' group_text_parse_tree.h:203: instantiated from 'bool CGroupNode::GetGroupValue(const std::string&, const std::string&, const std::string&, T&) const [with T = int]' dragon_soul_table.cpp:612: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = unsigned int]': group_text_parse_tree.h:159: instantiated from 'bool CGroupNode::GetValue(const std::string&, const std::string&, T&) const [with T = unsigned int]' group_text_parse_tree.h:203: instantiated from 'bool CGroupNode::GetGroupValue(const std::string&, const std::string&, const std::string&, T&) const [with T = unsigned int]' dragon_soul_table.cpp:884: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions In file included from DragonSoul.cpp:9: dragon_soul_table.h:74:7: warning: no newline at end of file DragonSoul.cpp: In function 'int Gamble(std::vector<float, std::allocator<float> >&)': DragonSoul.cpp:19: warning: comparison between signed and unsigned integer expressions DragonSoul.cpp:25: warning: comparison between signed and unsigned integer expressions DragonSoul.cpp: In member function 'bool DSManager::RefreshItemAttributes(CItem*)': DragonSoul.cpp:203: warning: comparison between signed and unsigned integer expressions DragonSoul.cpp: In member function 'bool DSManager::PutAttributes(CItem*)': DragonSoul.cpp:273: warning: comparison between signed and unsigned integer expressions DragonSoul.cpp: In member function 'bool DSManager::ExtractDragonHeart(CHARACTER*, CItem*, CItem*)': DragonSoul.cpp:350: warning: unused variable 'sum' DragonSoul.cpp: In member function 'bool DSManager::PullOut(CHARACTER*, TItemPos, CItem*&, CItem*)': DragonSoul.cpp:435: warning: unused variable 'dwVnum' DragonSoul.cpp:469: warning: format '%d' expects type 'int', but argument 3 has type 'double' DragonSoul.cpp:469: warning: format '%d' expects type 'int', but argument 4 has type 'double' DragonSoul.cpp: In member function 'bool DSManager::DoRefineGrade(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:555: warning: unused variable 'prob_sum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineStep(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:763: warning: unused variable 'sum' group_text_parse_tree.h: In constructor 'CGroupTextParseTreeLoader::CGroupTextParseTreeLoader()': group_text_parse_tree.h:93: warning: 'CGroupTextParseTreeLoader::m_dwcurLineIndex' will be initialized after group_text_parse_tree.h:91: warning: 'CGroupNode* CGroupTextParseTreeLoader::m_pRootGroupNode' group_text_parse_tree.cpp:5: warning: when initialized here group_text_parse_tree.cpp: In member function 'bool CGroupTextParseTreeLoader::LoadGroup(CGroupNode*)': group_text_parse_tree.cpp:99: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.cpp: In member function 'bool CGroupNode::GetRow(int, const CGroupNode::CGroupNodeRow**) const': group_text_parse_tree.cpp:206: warning: comparison between signed and unsigned integer expressions ../../../Extern/include/cryptopp/misc.h: At global scope: ../../../Extern/include/cryptopp/misc.h:548: warning: 'std::string CryptoPP::StringNarrow(const wchar_t*, bool)' defined but not used char_dragonsoul.cpp:143:2: warning: no newline at end of file char_dragonsoul.cpp: In member function 'bool CHARACTER::DragonSoul_ActivateDeck(int)': char_dragonsoul.cpp:91: warning: control reaches end of non-void function In file included from shop_manager.cpp:22: shop_manager.h:40:7: warning: no newline at end of file shop_manager.cpp: In function 'bool ConvertToShopItemTable(CGroupNode*, TShopTableEx&)': shop_manager.cpp:473: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = unsigned int]': group_text_parse_tree.h:175: instantiated from 'bool CGroupNode::GetValue(const std::string&, int, T&) const [with T = DWORD]' shop_manager.cpp:381: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]': group_text_parse_tree.h:175: instantiated from 'bool CGroupNode::GetValue(const std::string&, int, T&) const [with T = std::string]' shop_manager.cpp:387: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions group_text_parse_tree.h: In member function 'bool CGroupNode::CGroupNodeRow::GetValue(int, T&) const [with T = unsigned char]': group_text_parse_tree.h:136: instantiated from 'bool CGroupNode::GetValue(size_t, const std::string&, T&) const [with T = BYTE]' shop_manager.cpp:442: instantiated from here group_text_parse_tree.h:228: warning: comparison between signed and unsigned integer expressions shopEx.cpp: In member function 'virtual int CShopEx::Buy(CHARACTER*, BYTE)': shopEx.cpp:159: warning: comparison between signed and unsigned integer expressions item_manager_read_tables.cpp: In member function 'bool ITEM_MANAGER::ReadMonsterDropItemGroup(const char*)': item_manager_read_tables.cpp:637: warning: unused variable 'pkGroup' shutdown_manager.cpp:173:2: warning: no newline at end of file shutdown_manager.cpp: In member function 'int CShutdownManager::SearchDesc(DESC*)': shutdown_manager.cpp:90: warning: comparison between signed and unsigned integer expressions item_manager_read_tables.cpp:627: warning: 'pkGroup' may be used uninitialized in this function In file included from main.cpp:14: shop_manager.h:40:7: warning: no newline at end of file main.cpp: In function 'int main(int, char**)': main.cpp:522: error: '__P4_VERSION__' was not declared in this scope gmake: *** [OBJDIR/main.o] Error 1 gmake: *** Waiting for unfinished jobs....
  14. I use vanilla core and I don't want to change it. Can you make a tutorial for client?
  15. Hi, I have a problem. After loading I spawn in world for 0.5s. After client exit: [Hidden Content]
  16. Hi Metin2Dev! After I compiled the source, and I try to start client I recive this error (after laoding client close): [Hidden Content]
  17. Hi Metin2Dev! After I compiled the source, I can't connect to the server. After loading client close. Syserr: 0427 14:03:21521 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010). Automatic conversion will be attempted. 0427 14:03:27777 :: Unknown Server Command HideSwitch | HideSwitch 0427 14:03:27827 :: ResourceManager::GetResourcePointer: NOT SUPPORT FILE d:ymir workuigamequestquesticond:ymir workuigameque g .os.pyw 0427 14:03:01711 :: # trying .os.pyc 0427 14:03:01712 :: # trying libos.pyd 0427 14:03:01713 :: # trying libos.py 0427 14:03:01713 :: # libos.pyc has bad magic 0427 14:03:01717 :: import os # from libos.py 0427 14:03:01718 :: import nt # builtin 0427 14:03:01720 :: # trying .ntpath.pyd 0427 14:03:01720 :: # trying .ntpath.py 0427 14:03:01720 :: # trying .ntpath.pyw 0427 14:03:01721 :: # trying .ntpath.pyc 0427 14:03:01721 :: # trying libntpath.pyd 0427 14:03:01721 :: # trying libntpath.py 0427 14:03:01722 :: # libntpath.pyc has bad magic 0427 14:03:01725 :: import ntpath # from libntpath.py 0427 14:03:01726 :: # trying .stat.pyd 0427 14:03:01726 :: # trying .stat.py 0427 14:03:01727 :: # trying .stat.pyw 0427 14:03:01727 :: # trying .stat.pyc 0427 14:03:01728 :: # trying libstat.pyd 0427 14:03:01729 :: # trying libstat.py 0427 14:03:01729 :: # libstat.pyc has bad magic 0427 14:03:01730 :: import stat # from libstat.py 0427 14:03:01731 :: # trying .UserDict.pyd 0427 14:03:01731 :: # trying .UserDict.py 0427 14:03:01732 :: # trying .UserDict.pyw 0427 14:03:01732 :: # trying .UserDict.pyc 0427 14:03:01733 :: # trying libUserDict.pyd 0427 14:03:01733 :: # trying libUserDict.py 0427 14:03:01734 :: # libUserDict.pyc has bad magic 0427 14:03:01735 :: import UserDict # from libUserDict.py 0427 14:03:01736 :: # trying .copy_reg.pyd 0427 14:03:01736 :: # trying .copy_reg.py 0427 14:03:01737 :: # trying .copy_reg.pyw 0427 14:03:01737 :: # trying .copy_reg.pyc 0427 14:03:01738 :: # trying libcopy_reg.pyd 0427 14:03:01738 :: # trying libcopy_reg.py 0427 14:03:01739 :: # libcopy_reg.pyc has bad magic 0427 14:03:01740 :: import copy_reg # from libcopy_reg.py 0427 14:03:01740 :: # trying .types.pyd 0427 14:03:01741 :: # trying .types.py 0427 14:03:01741 :: # trying .types.pyw 0427 14:03:01741 :: # trying .types.pyc 0427 14:03:01742 :: # trying libtypes.pyd 0427 14:03:01742 :: # trying libtypes.py 0427 14:03:01743 :: # libtypes.pyc has bad magic 0427 14:03:01744 :: import types # from libtypes.py 0427 14:03:01745 :: # trying .__future__.pyd 0427 14:03:01745 :: # trying .__future__.py 0427 14:03:01746 :: # trying .__future__.pyw 0427 14:03:01746 :: # trying .__future__.pyc 0427 14:03:01746 :: # trying lib__future__.pyd 0427 14:03:01747 :: # trying lib__future__.py 0427 14:03:01747 :: # lib__future__.pyc has bad magic 0427 14:03:01748 :: import __future__ # from lib__future__.py 0427 14:03:01748 :: import errno # builtin 0427 14:03:01784 :: import time # builtin 0427 14:03:24119 :: Çѱ¹¹«½Ö¹öÁ¯(#2 ) cannot find icon file. setting to default. 0427 14:03:24145 :: ±¤·ûÆȱ¥ÆÐ+0(#13180) cannot find icon file. setting to default. 0427 14:03:24146 :: ±¤·ûÆȱ¥ÆÐ+1(#13181) cannot find icon file. setting to default. 0427 14:03:24146 :: ±¤·ûÆȱ¥ÆÐ+2(#13182) cannot find icon file. setting to default. 0427 14:03:24147 :: ±¤·ûÆȱ¥ÆÐ+3(#13183) cannot find icon file. setting to default. 0427 14:03:24147 :: ±¤·ûÆȱ¥ÆÐ+4(#13184) cannot find icon file. setting to default. 0427 14:03:24148 :: ±¤·ûÆȱ¥ÆÐ+5(#13185) cannot find icon file. setting to default. 0427 14:03:24148 :: ±¤·ûÆȱ¥ÆÐ+6(#13186) cannot find icon file. setting to default. 0427 14:03:24149 :: ±¤·ûÆȱ¥ÆÐ+7(#13187) cannot find icon file. setting to default. 0427 14:03:24149 :: ±¤·ûÆȱ¥ÆÐ+8(#13188) cannot find icon file. setting to default. 0427 14:03:24150 :: ±¤·ûÆȱ¥ÆÐ+9(#13189) cannot find icon file. setting to default. 0427 14:03:24187 :: À§Ä¡±â¾ïºÎ(#22020) cannot find icon file. setting to default. 0427 14:03:24188 :: À̵¿ºÎ(#22030) cannot find icon file. setting to default. 0427 14:03:24188 :: »ý¸íºÎ(#22040) cannot find icon file. setting to default. 0427 14:03:24188 :: ȯ»ýºÎ(#22050) cannot find icon file. setting to default. 0427 14:03:24192 :: °¡¸®ºñ(#29001) cannot find icon file. setting to default. 0427 14:03:24192 :: û°¡¸®ºñ(#29002) cannot find icon file. setting to default. 0427 14:03:24193 :: Ȳ°¡¸®ºñ(#29003) cannot find icon file. setting to default. 0427 14:03:24193 :: È«°¡¸®ºñ(#29004) cannot find icon file. setting to default. 0427 14:03:24193 :: ³ì°¡¸®ºñ(#29005) cannot find icon file. setting to default. 0427 14:03:24194 :: ȲÁÖ¼®(#29006) cannot find icon file. setting to default. 0427 14:03:24195 :: ûÁÖ¼®(#29007) cannot find icon file. setting to default. 0427 14:03:24195 :: û½Å¼ö(#29008) cannot find icon file. setting to default. 0427 14:03:24196 :: Ȳ½Å¼ö(#29009) cannot find icon file. setting to default. 0427 14:03:24196 :: È«½Å¼ö(#29010) cannot find icon file. setting to default. 0427 14:03:24197 :: ³ì½Å¼ö(#29011) cannot find icon file. setting to default. 0427 14:03:24197 :: ¿¬Ã»½Å¼ö(#29012) cannot find icon file. setting to default. 0427 14:03:24198 :: ¿¬È²½Å¼ö(#29013) cannot find icon file. setting to default. 0427 14:03:24198 :: ¿¬È«½Å¼ö(#29014) cannot find icon file. setting to default. 0427 14:03:24199 :: ¿¬³ì½Å¼ö(#29015) cannot find icon file. setting to default. 0427 14:03:24201 :: ¿õ±ÍÀÇ È²±Ý¾î±Ý´Ï(#30103) cannot find icon file. setting to default. 0427 14:03:24201 :: »ç¸·ÀÇ °Å¹ÌÁÙ(#30104) cannot find icon file. setting to default. 0427 14:03:24202 :: Åå½î´Â Àü°¥²¿¸®(#30105) cannot find icon file. setting to default. 0427 14:03:24202 :: À¯¶û ¾î¸Ó´Ï ¾à(#30106) cannot find icon file. setting to default. 0427 14:03:24203 :: ¿õ±ÍÀÇ ¼Û°÷´Ï(#30107) cannot find icon file. setting to default. 0427 14:03:24203 :: µµÀÚ±âÂø»ö¿ëÀ¯¾à(#30108) cannot find icon file. setting to default. 0427 14:03:24204 :: »ç¸·ÀÇ °Å¹ÌÁÙ(#30109) cannot find icon file. setting to default. 0427 14:03:24204 :: ÈľȼÒÀÇ ÆíÁö(#30110) cannot find icon file. setting to default. 0427 14:03:24205 :: Åå½î´Â Àü°¥²¿¸®(#30111) cannot find icon file. setting to default. 0427 14:03:24205 :: Àå¾î(#30112) cannot find icon file. setting to default. 0427 14:03:24206 :: ¹Ð±³ °æÀü(#30113) cannot find icon file. setting to default. 0427 14:03:24206 :: ±«Áú±Õ(#30114) cannot find icon file. setting to default. 0427 14:03:24207 :: ±«Áú Ä¡·áÁ¦(#30115) cannot find icon file. setting to default. 0427 14:03:24207 :: Çà»óÀÎÀÇ ÆíÁö(#30117) cannot find icon file. setting to default. 0427 14:03:24208 :: »ç±ÍÀÇ º¸¼®ÇÔ(#30118) cannot find icon file. setting to default. 0427 14:03:24225 :: VIP-Feature(#38001) cannot find icon file. setting to default. 0427 14:03:24225 :: Tombola_ticket_today(#38002) cannot find icon file. setting to default. 0427 14:03:24226 :: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default. 0427 14:03:24226 :: Tombola_reroll(#38004) cannot find icon file. setting to default. 0427 14:03:24227 :: TombolaPP_spin(#38005) cannot find icon file. setting to default. 0427 14:03:24227 :: Momo-Reroll(#38006) cannot find icon file. setting to default. 0427 14:03:24228 :: ¼Ò¸®³ª´Â ¹æ¿ï(#40005) cannot find icon file. setting to default. 0427 14:03:24229 :: ¿À¶ûij ¼ö¼Û¼­(#40006) cannot find icon file. setting to default. 0427 14:03:24229 :: ¿À¶ûij º¸½º ÆíÁö(#40007) cannot find icon file. setting to default. 0427 14:03:24233 :: ¼±¹°º¸µû¸®(#50041) cannot find icon file. setting to default. 0427 14:03:24234 :: ½Â¸¶¼Òȯ¼ö·Ã¼­(#50061) cannot find icon file. setting to default. 0427 14:03:24234 :: ½Â¸¶¼ö·Ã¼­(#50062) cannot find icon file. setting to default. 0427 14:03:24236 :: ¿ë°¢º¸¹°»óÀÚ(#50118) cannot find icon file. setting to default. 0427 14:03:24236 :: ¿µ¼®º¸µû¸®(#50119) cannot find icon file. setting to default. 0427 14:03:24240 :: ¼®Ã¢Æ÷¾×(#50805) cannot find icon file. setting to default. 0427 14:03:24240 :: ¿µÁö¹ö¼¸¾×(#50806) cannot find icon file. setting to default. 0427 14:03:24241 :: ¸¸º´Ãʾ×(#50807) cannot find icon file. setting to default. 0427 14:03:24241 :: »ê»Í³ª¹«¾×(#50808) cannot find icon file. setting to default. 0427 14:03:24242 :: ¹Îµé·¹¾×(#50809) cannot find icon file. setting to default. 0427 14:03:24242 :: È«È­¾¾¾×(#50810) cannot find icon file. setting to default. 0427 14:03:24243 :: ´ëÃß¾×(#50811) cannot find icon file. setting to default. 0427 14:03:24243 :: »ïÁö±¸¿±Ãʾ×(#50812) cannot find icon file. setting to default. 0427 14:03:24245 :: ºó¾àº´(#50901) cannot find icon file. setting to default. 0427 14:03:24245 :: È°½É¾× Á¦Á¶¹ý(#50905) cannot find icon file. setting to default. 0427 14:03:24246 :: Çǵ¶¼ö Á¦Á¶¹ý(#50906) cannot find icon file. setting to default. 0427 14:03:24246 :: º¸È¯¼ö Á¦Á¶¹ý(#50907) cannot find icon file. setting to default. 0427 14:03:24247 :: ¿µº¸¼ö Á¦Á¶¹ý(#50908) cannot find icon file. setting to default. 0427 14:03:24247 :: ÁøÇǵ¶ Á¦Á¶¹ý(#50909) cannot find icon file. setting to default. 0427 14:03:24248 :: È°½É¾× Á¦Á¶¹ý(#50910) cannot find icon file. setting to default. 0427 14:03:24254 :: ºÒ°æ(#70103) cannot find icon file. setting to default. 0427 14:03:24256 :: ¿ë½ÅÀÇ Áö¿ø(#71031) cannot find icon file. setting to default. 0427 14:03:24257 :: µ¿·á¿Í ȸÆ÷(#71047) cannot find icon file. setting to default. 0427 14:03:24259 :: Àü±¤ÆǺ¸µû¸®(#71091) cannot find icon file. setting to default. 0427 14:03:24262 :: °æÇèÀǹÝÁö(#72303) cannot find icon file. setting to default. 0427 14:03:24263 :: ÃູÀÇ ±¸½½(#72304) cannot find icon file. setting to default. 0427 14:03:24264 :: ¸¸³âÇÑö(#72308) cannot find icon file. setting to default. 0427 14:03:24265 :: ¾ß°øÀÇ ºñÀü¼­(#72309) cannot find icon file. setting to default. 0427 14:03:24265 :: Á־ȼú¼­(#72310) cannot find icon file. setting to default. 0427 14:03:24266 :: ¿ë½ÅÀÇ È¯(#72311) cannot find icon file. setting to default. 0427 14:03:24266 :: ¿ë½ÅÀÇ °ø°Ý(#72312) cannot find icon file. setting to default. 0427 14:03:24267 :: ¿ë½ÅÀÇ ¹æ¾î(#72313) cannot find icon file. setting to default. 0427 14:03:24267 :: ¿ë½ÅÀÇ Ãູ¼­(#72314) cannot find icon file. setting to default. 0427 14:03:24269 :: µ·ÁÖ¸Ó´Ï(#80001) cannot find icon file. setting to default. 0427 14:03:24270 :: ¹éÁö(#80002) cannot find icon file. setting to default. 0427 14:03:24271 :: ºó¹°Åë(#90001) cannot find icon file. setting to default. 0427 14:03:24271 :: ¹°Åë(#90002) cannot find icon file. setting to default. 0427 14:03:24272 :: º¸¼®(#90004) cannot find icon file. setting to default. 0427 14:03:24273 :: ¿µ¼®(#90006) cannot find icon file. setting to default. 0427 14:03:24273 :: ±¤¼®(#90007) cannot find icon file. setting to default. 0427 14:03:24377 :: import math # builtin 0427 14:03:24462 :: uiTaskBar.py: inconsistent use of tabs and spaces in indentation 0427 14:03:24501 :: uiDragonSoul.py: inconsistent use of tabs and spaces in indentation 0427 14:03:24564 :: uiSystem.py: inconsistent use of tabs and spaces in indentation 0427 14:03:24643 :: uiQuest.py: inconsistent use of tabs and spaces in indentation 0427 14:03:25002 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/dust.mss] 0427 14:03:25008 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/running_dust.mss] 0427 14:03:25026 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_red.mss] 0427 14:03:25034 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_blue.mss] 0427 14:03:25039 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_green.mss] 0427 14:03:25044 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_purple.mss] 0427 14:03:25048 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_red.mss] 0427 14:03:25055 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_blue.mss] 0427 14:03:25069 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item1.mss] 0427 14:03:25107 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item2.mss] 0427 14:03:25121 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item3.mss] 0427 14:03:25135 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item4.mss] 0427 14:03:25149 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/gwantong.mss] 0427 14:03:25217 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_select.mss] 0427 14:03:25222 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_glow_select.mss] 0427 14:03:25229 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun.mss] 0427 14:03:25254 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click.mss] 0427 14:03:25260 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target.mss] 0427 14:03:25262 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg 0427 14:03:25263 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/nontarget.mss] 0427 14:03:25263 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg] 0427 14:03:25266 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage.mss] 0427 14:03:25268 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage_1.mss] 0427 14:03:25271 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg 0427 14:03:25271 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/poison.mss] 0427 14:03:25271 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg] 0427 14:03:25274 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/miss.mss] 0427 14:03:25277 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target_miss.mss] 0427 14:03:25303 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage1.mss] 0427 14:03:25313 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage2.mss] 0427 14:03:25323 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage3.mss] 0427 14:03:25349 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/wait.mss] 0427 14:03:25357 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/not_selected.mss] 0427 14:03:25389 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/wait.mss] 0427 14:03:25398 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/not_selected.mss] 0427 14:03:25430 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/wait.mss] 0427 14:03:25439 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/not_selected.mss] 0427 14:03:25468 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/wait.mss] 0427 14:03:25478 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/not_selected.mss] 0427 14:03:25509 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/wait.mss] 0427 14:03:25522 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/not_selected.mss] 0427 14:03:25554 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/wait.mss] 0427 14:03:25568 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/not_selected.mss] 0427 14:03:25599 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/wait.mss] 0427 14:03:25610 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/not_selected.mss] 0427 14:03:25642 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/wait.mss] 0427 14:03:25653 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/not_selected.mss] 0427 14:03:31974 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/fall/fall_7.mss] 0427 14:03:32718 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010). Automatic conversion will be attempted. 0427 14:03:32792 :: CANNOT_FIND_PACK_FILE [sound/effect/background/fire_general_obj_charcoal.mss] 0427 14:03:32852 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/°ø¿ë/hay_01.gr2 0427 14:03:32853 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/°ø¿ë/hay_01.gr2] 0427 14:03:32853 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 0427 14:03:32853 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 0427 14:03:32854 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 0427 14:03:32854 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 0427 14:03:32859 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr 0427 14:03:32859 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr] 0427 14:03:33161 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_appear.mss] 0427 14:03:33166 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_die.mss] 0427 14:03:33187 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_weapon.mss] 0427 14:03:33196 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_blow.mss] 0427 14:03:33205 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_body.mss] 0427 14:03:33224 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_a.mss] 0427 14:03:33226 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_b.mss] 0427 14:03:33229 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_c.mss] 0427 14:03:33235 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_loop.mss] 0427 14:03:33242 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_spear_loop.mss] 0427 14:03:33248 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_poison/poison_loop.mss] 0427 14:03:33255 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/slow.mss] 0427 14:03:33262 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun_loop.mss] 0427 14:03:33264 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/ready/ready.mss] 0427 14:03:33273 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang_loop.mss] 0427 14:03:33283 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_loop.mss] 0427 14:03:33291 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_loop.mss] 0427 14:03:33302 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_loop.mss] 0427 14:03:33307 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_loop.mss] 0427 14:03:33316 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_loop.mss] 0427 14:03:33324 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_loop.mss] 0427 14:03:33333 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_loop.mss] 0427 14:03:33345 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/heuksin_loop.mss] 0427 14:03:33355 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_loop.mss] 0427 14:03:33358 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_flame/flame_loop.mss] 0427 14:03:33365 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_hand.mss] 0427 14:03:33373 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_hand.mss] 0427 14:03:33377 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeop_loop.mss] 0427 14:03:33378 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_red.mss] 0427 14:03:33380 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_blue.mss] 0427 14:03:33381 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_yellow.mss] 0427 14:03:33384 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7.mss] 0427 14:03:33389 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8.mss] 0427 14:03:33394 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9.mss] 0427 14:03:33399 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_b.mss] 0427 14:03:33407 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_b.mss] 0427 14:03:33416 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_b.mss] 0427 14:03:33419 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_f.mss] 0427 14:03:33424 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_f.mss] 0427 14:03:33428 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_f.mss] 0427 14:03:33431 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_s.mss] 0427 14:03:33436 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_s.mss] 0427 14:03:33440 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_s.mss] 0427 14:03:33443 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_7.mss] 0427 14:03:33448 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_8.mss] 0427 14:03:33453 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_9.mss] 0427 14:03:33456 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-1.mss] 0427 14:03:33459 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-2.mss] 0427 14:03:33464 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_yellow.mss] 0427 14:03:33467 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_yellow2.mss] 0427 14:03:33472 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_red.mss] 0427 14:03:33478 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_red.mss] 0427 14:03:33483 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center.mss] 0427 14:03:33488 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_red.mss] 0427 14:03:33492 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue_warrior.mss] 0427 14:03:33497 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue.mss] 0427 14:03:33503 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_blue.mss] 0427 14:03:33508 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_blue.mss] 0427 14:03:33658 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_c.mss] 0427 14:03:33661 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_b.mss] 0427 14:03:33689 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeongfly.mss] 0427 14:03:33696 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sweat.mss] 0427 14:03:33700 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/money.mss] 0427 14:03:33706 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/happy.mss] 0427 14:03:33710 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_s.mss] 0427 14:03:33716 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_l.mss] 0427 14:03:33724 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/angry.mss] 0427 14:03:33733 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/aha.mss] 0427 14:03:33746 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/gloom.mss] 0427 14:03:33752 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sorry.mss] 0427 14:03:33758 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/!_mix_back.mss] 0427 14:03:33762 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/question.mss] 0427 14:03:33768 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/fish.mss] 0427 14:03:33770 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait.mss] 0427 14:03:33796 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/falling_stand.mss] 0427 14:03:33805 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/back_falling_stand.mss] 0427 14:03:33822 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dig/dig.mss] 0427 14:03:33827 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait_1.mss] 0427 14:03:33849 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_d.mss] 0427 14:03:33863 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_sword.mss] 0427 14:03:33867 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_spin.mss] 0427 14:03:33886 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi.mss] 0427 14:03:33897 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom.mss] 0427 14:03:33901 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_making.mss] 0427 14:03:33907 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom-badak.mss] 0427 14:03:33927 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan.mss] 0427 14:03:33939 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_making.mss] 0427 14:03:33943 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_swing.mss] 0427 14:03:33973 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksantau_triple.mss] 0427 14:03:33989 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak.mss] 0427 14:03:34008 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang.mss] 0427 14:03:34024 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_sword.mss] 0427 14:03:34040 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_2.mss] 0427 14:03:34051 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_sword.mss] 0427 14:03:34056 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_spin.mss] 0427 14:03:34072 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_2.mss] 0427 14:03:34079 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_sword_making.mss] 0427 14:03:34087 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_badak.mss] 0427 14:03:34102 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_2.mss] 0427 14:03:34110 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_making.mss] 0427 14:03:34118 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_swing.mss] 0427 14:03:34145 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_2.mss] 0427 14:03:34161 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_2.mss] 0427 14:03:34175 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_2.mss] 0427 14:03:34188 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_2_sword.mss] 0427 14:03:34205 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_3.mss] 0427 14:03:34219 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_sword.mss] 0427 14:03:34229 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_spin.mss] 0427 14:03:34247 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_3.mss] 0427 14:03:34258 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_sword_making.mss] 0427 14:03:34271 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_badak.mss] 0427 14:03:34286 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_3.mss] 0427 14:03:34295 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_making.mss] 0427 14:03:34303 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_swing.mss] 0427 14:03:34330 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_3.mss] 0427 14:03:34344 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_3.mss] 0427 14:03:34362 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_3.mss] 0427 14:03:34374 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_3_sword.mss] 0427 14:03:34392 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_4.mss] 0427 14:03:34407 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_sword.mss] 0427 14:03:34418 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_spin.mss] 0427 14:03:34437 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_4.mss] 0427 14:03:34452 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_sword_making.mss] 0427 14:03:34465 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_badak.mss] 0427 14:03:34481 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_4.mss] 0427 14:03:34494 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_making.mss] 0427 14:03:34502 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_swing.mss] 0427 14:03:34532 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_4.mss] 0427 14:03:34550 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_4.mss] 0427 14:03:34572 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_4.mss] 0427 14:03:34587 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_4_sword.mss] 0427 14:03:34596 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg 0427 14:03:34596 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuipi_make.mss] 0427 14:03:34597 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuipi.mss] 0427 14:03:34608 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuichukbok_make.mss] 0427 14:03:34608 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuichukbok.mss] 0427 14:03:34615 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/seonghwigap_make.mss] 0427 14:03:34615 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_seonghwigap.mss] 0427 14:03:34622 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcassassineffect16-bottom.jpg 0427 14:03:34624 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/gasokhwa_make.mss] 0427 14:03:34624 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_gasokhwa.mss] 0427 14:03:34633 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuibunno_make.mss] 0427 14:03:34634 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuibunno.mss] 0427 14:03:34650 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam.jpg 0427 14:03:34650 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectw_ring.jpg 0427 14:03:34651 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwhite_sphere.jpg 0427 14:03:34652 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwind.jpg 0427 14:03:34652 :: CResourceManager::GetResourcePointer: File not exist D:Ymir WorkpcshamaneffectW_star.jpg 0427 14:03:34653 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam_ring.jpg 0427 14:03:34654 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectgyeokgong_triple_loop_2.jpg 0427 14:03:34655 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectnoe_w_ring.jpg 0427 14:03:34656 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/jumunsul_make.mss] 0427 14:03:34657 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_jumunsul.mss] 0427 14:03:34660 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_1.mss] 0427 14:03:34660 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_2.mss] 0427 14:03:34661 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_3.mss] 0427 14:03:34661 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_4.mss] 0427 14:03:34662 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_5.mss] 0427 14:03:34663 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_6.mss] 0427 14:03:34664 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/congratulation.mss] 0427 14:03:34664 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/forgive.mss] 0427 14:03:34665 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/angry.mss] 0427 14:03:34665 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/attractive.mss] 0427 14:03:34666 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/sad.mss] 0427 14:03:34666 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/shy.mss] 0427 14:03:34667 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/cheerup.mss] 0427 14:03:34667 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/banter.mss] 0427 14:03:34668 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/joy.mss] 0427 14:03:34680 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/wait.mss] 0427 14:03:34681 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/walk.mss] 0427 14:03:34682 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait.mss] 0427 14:03:34687 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait_1.mss] 0427 14:03:34744 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait.mss] 0427 14:03:34749 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait_1.mss] 0427 14:03:34820 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/wait.mss] 0427 14:03:34836 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_wait.mss] 0427 14:03:34843 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_react.mss] 0427 14:03:34859 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait.mss] 0427 14:03:34861 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_1.mss] 0427 14:03:34866 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_2.mss] 0427 14:03:34910 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/horse_charge.mss] 0427 14:03:34951 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae.mss] 0427 14:03:34985 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait.mss] 0427 14:03:35012 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/falling_stand.mss] 0427 14:03:35020 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/back_falling_stand.mss] 0427 14:03:35036 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait_1.mss] 0427 14:03:35176 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuipi.mss] 0427 14:03:35182 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuichukbok.mss] 0427 14:03:35183 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_seonghwigap.mss] 0427 14:03:35184 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_gasokhwa.mss] 0427 14:03:35186 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuibunno.mss] 0427 14:03:35187 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_jumunsul.mss] 0427 14:03:35189 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_1.mss] 0427 14:03:35190 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_2.mss] 0427 14:03:35191 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_3.mss] 0427 14:03:35191 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_4.mss] 0427 14:03:35192 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_5.mss] 0427 14:03:35193 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_6.mss] 0427 14:03:35193 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/congratulation.mss] 0427 14:03:35194 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/forgive.mss] 0427 14:03:35195 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/angry.mss] 0427 14:03:35195 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/attractive.mss] 0427 14:03:35196 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/sad.mss] 0427 14:03:35197 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/shy.mss] 0427 14:03:35197 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/cheerup.mss] 0427 14:03:35198 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/banter.mss] 0427 14:03:35199 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/joy.mss] 0427 14:03:35210 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/wait.mss] 0427 14:03:35210 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/walk.mss] 0427 14:03:35211 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait.mss] 0427 14:03:35216 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait_1.mss] 0427 14:03:35274 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait.mss] 0427 14:03:35278 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait_1.mss] 0427 14:03:35343 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/wait.mss] 0427 14:03:35359 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_wait.mss] 0427 14:03:35367 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_react.mss] 0427 14:03:35382 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait.mss] 0427 14:03:35384 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_1.mss] 0427 14:03:35388 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_2.mss] 0427 14:03:35461 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/wait.mss] 0427 14:03:35486 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/falling_stand.mss] 0427 14:03:35494 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/back_falling_stand.mss] 0427 14:03:35509 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/wait_1.mss] 0427 14:03:35535 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup.mss] 0427 14:03:35538 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_fallow.mss] 0427 14:03:35545 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_blow.mss] 0427 14:03:35555 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_start.mss] 0427 14:03:35561 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_end.mss] 0427 14:03:35569 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_blow.mss] 0427 14:03:35586 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal.mss] 0427 14:03:35600 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_foot.mss] 0427 14:03:35611 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop.mss] 0427 14:03:35621 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/poison.mss] 0427 14:03:35621 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/sangong.mss] 0427 14:03:35631 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_energy.mss] 0427 14:03:35637 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_arrowenergy.mss] 0427 14:03:35651 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_energy.mss] 0427 14:03:35656 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_arrowenergy.mss] 0427 14:03:35665 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_start.mss] 0427 14:03:35674 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_arrowenergy.mss] 0427 14:03:35675 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/dokgigung.mss] 0427 14:03:35684 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2.mss] 0427 14:03:35687 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2_fallow.mss] 0427 14:03:35696 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2_blow.mss] 0427 14:03:35703 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_start.mss] 0427 14:03:35707 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_end.mss] 0427 14:03:35715 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_blow.mss] 0427 14:03:35731 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_2.mss] 0427 14:03:35739 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_2_foot.mss] 0427 14:03:35748 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_2.mss] 0427 14:03:35758 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_2.mss] 0427 14:03:35770 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_2_energy.mss] 0427 14:03:35778 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_2_arrowenergy.mss] 0427 14:03:35787 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_2_energy.mss] 0427 14:03:35791 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_2_arrowenergy.mss] 0427 14:03:35796 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_2_start.mss] 0427 14:03:35804 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_2_arrowenergy.mss] 0427 14:03:35820 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3.mss] 0427 14:03:35825 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3_fallow.mss] 0427 14:03:35836 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3_blow.mss] 0427 14:03:35847 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_3_start.mss] 0427 14:03:35859 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_3_blow.mss] 0427 14:03:35876 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_3.mss] 0427 14:03:35884 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_3_foot.mss] 0427 14:03:35897 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_3.mss] 0427 14:03:35911 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_3.mss] 0427 14:03:35925 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_3_energy.mss] 0427 14:03:35934 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_3_arrowenergy.mss] 0427 14:03:35946 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_3_energy.mss] 0427 14:03:35955 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_3_arrowenergy.mss] 0427 14:03:35961 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_3_start.mss] 0427 14:03:35970 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_3_arrowenergy.mss] 0427 14:03:35985 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4.mss] 0427 14:03:35990 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4_fallow.mss] 0427 14:03:36001 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4_blow.mss] 0427 14:03:36012 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_start.mss] 0427 14:03:36021 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_end.mss] 0427 14:03:36031 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_blow.mss] 0427 14:03:36050 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_4.mss] 0427 14:03:36060 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_4_foot.mss] 0427 14:03:36073 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_4.mss] 0427 14:03:36087 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_4.mss] 0427 14:03:36102 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_4_energy.mss] 0427 14:03:36115 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_4_arrowenergy.mss] 0427 14:03:36128 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_4_energy.mss] 0427 14:03:36138 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_4_arrowenergy.mss] 0427 14:03:36145 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_4_start.mss] 0427 14:03:36159 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_4_arrowenergy.mss] 0427 14:03:36161 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuipi.mss] 0427 14:03:36165 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuichukbok.mss] 0427 14:03:36166 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_seonghwigap.mss] 0427 14:03:36167 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_gasokhwa.mss] 0427 14:03:36168 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuibunno.mss] 0427 14:03:36169 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_jumunsul.mss] 0427 14:03:36171 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_1.mss] 0427 14:03:36172 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_2.mss] 0427 14:03:36172 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_3.mss] 0427 14:03:36173 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_4.mss] 0427 14:03:36173 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_5.mss] 0427 14:03:36174 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_6.mss] 0427 14:03:36175 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/congratulation.mss] 0427 14:03:36175 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/forgive.mss] 0427 14:03:36176 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/angry.mss] 0427 14:03:36176 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/attractive.mss] 0427 14:03:36177 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/sad.mss] 0427 14:03:36178 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/shy.mss] 0427 14:03:36178 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/cheerup.mss] 0427 14:03:36179 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/banter.mss] 0427 14:03:36180 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/joy.mss] 0427 14:03:36183 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/kiss_with_assassin.mss] 0427 14:03:36185 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/kiss_with_shaman.mss] 0427 14:03:36187 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/french_kiss_with_assassin.mss] 0427 14:03:36188 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/french_kiss_with_shaman.mss] 0427 14:03:36191 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/wedding/wait.mss] 0427 14:03:36192 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/wedding/walk.mss] 0427 14:03:36192 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/onehand_sword/wait.mss] 0427 14:03:36195 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/onehand_sword/wait_1.mss] 0427 14:03:36253 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/dualhand_sword/wait.mss] 0427 14:03:36255 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/dualhand_sword/wait_1.mss] 0427 14:03:36315 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/wait.mss] 0427 14:03:36318 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/wait_1.mss] 0427 14:03:36323 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/walk.mss] 0427 14:03:36345 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/wait.mss] 0427 14:03:36359 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/fishing_wait.mss] 0427 14:03:36366 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/fishing_react.mss] 0427 14:03:36380 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait.mss] 0427 14:03:36382 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait_1.mss] 0427 14:03:36386 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait_2.mss] 0427 14:03:36449 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/horse_onehand_sword_splash.mss] 0427 14:03:36482 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/horse_onehand_sword_splash_making.mss] 0427 14:03:36484 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait.mss] 0427 14:03:36486 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait_1.mss] 0427 14:03:36490 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait_2.mss] 0427 14:03:36495 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/run.mss] 0427 14:03:36515 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/wait.mss] 0427 14:03:36539 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/falling_stand.mss] 0427 14:03:36547 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/back_falling_stand.mss] 0427 14:03:36564 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/wait_1.mss] 0427 14:03:36670 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuipi.mss] 0427 14:03:36674 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuichukbok.mss] 0427 14:03:36675 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_seonghwigap.mss] 0427 14:03:36676 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_gasokhwa.mss] 0427 14:03:36677 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuibunno.mss] 0427 14:03:36677 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_jumunsul.mss] 0427 14:03:36679 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/slap_hurt.mss] 0427 14:03:36680 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_1.mss] 0427 14:03:36680 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_2.mss] 0427 14:03:36681 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_3.mss] 0427 14:03:36682 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_4.mss] 0427 14:03:36683 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_5.mss] 0427 14:03:36683 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_6.mss] 0427 14:03:36684 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/congratulation.mss] 0427 14:03:36685 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/forgive.mss] 0427 14:03:36685 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/angry.mss] 0427 14:03:36686 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/attractive.mss] 0427 14:03:36687 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/sad.mss] 0427 14:03:36688 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/shy.mss] 0427 14:03:36688 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/cheerup.mss] 0427 14:03:36689 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/banter.mss] 0427 14:03:36690 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/joy.mss] 0427 14:03:36701 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/wedding/wait.mss] 0427 14:03:36702 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/wedding/walk.mss] 0427 14:03:36702 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/onehand_sword/wait.mss] 0427 14:03:36705 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/onehand_sword/wait_1.mss] 0427 14:03:36762 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/dualhand_sword/wait.mss] 0427 14:03:36765 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/dualhand_sword/wait_1.mss] 0427 14:03:36822 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/wait.mss] 0427 14:03:36826 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/wait_1.mss] 0427 14:03:36831 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/walk.mss] 0427 14:03:36851 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/wait.mss] 0427 14:03:36865 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/fishing_wait.mss] 0427 14:03:36873 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/fishing_react.mss] 0427 14:03:36884 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait.mss] 0427 14:03:36886 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait_1.mss] 0427 14:03:36890 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait_2.mss] 0427 14:03:36970 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait.mss] 0427 14:03:36973 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait_1.mss] 0427 14:03:36977 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait_2.mss] 0427 14:03:36982 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/run.mss] 0427 14:03:37006 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/wait.mss] 0427 14:03:37036 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/falling_stand.mss] 0427 14:03:37045 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/back_falling_stand.mss] 0427 14:03:37100 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa.mss] 0427 14:03:37112 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom.mss] 0427 14:03:37117 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_make.mss] 0427 14:03:37135 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_making.mss] 0427 14:03:37155 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap.mss] 0427 14:03:37172 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_making.mss] 0427 14:03:37184 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_making.mss] 0427 14:03:37202 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom.mss] 0427 14:03:37224 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_make.mss] 0427 14:03:37238 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_making.mss] 0427 14:03:37242 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_fallow.mss] 0427 14:03:37248 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand.mss] 0427 14:03:37249 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/mahwan.mss] 0427 14:03:37264 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_2.mss] 0427 14:03:37280 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_2.mss] 0427 14:03:37289 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_2.mss] 0427 14:03:37303 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_2_making.mss] 0427 14:03:37317 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_2_making.mss] 0427 14:03:37330 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_2_making.mss] 0427 14:03:37340 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_2_making.mss] 0427 14:03:37361 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_2.mss] 0427 14:03:37378 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_2_making.mss] 0427 14:03:37389 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_2_making.mss] 0427 14:03:37393 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_2_fallow.mss] 0427 14:03:37399 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_2.mss] 0427 14:03:37416 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_3.mss] 0427 14:03:37431 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_3.mss] 0427 14:03:37443 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_3.mss] 0427 14:03:37464 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_3_making.mss] 0427 14:03:37483 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_4_making.mss] 0427 14:03:37496 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_3_making.mss] 0427 14:03:37507 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_3_making.mss] 0427 14:03:37532 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_3.mss] 0427 14:03:37552 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_3_making.mss] 0427 14:03:37564 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_3_making.mss] 0427 14:03:37569 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_3_fallow.mss] 0427 14:03:37577 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_3.mss] 0427 14:03:37594 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_4.mss] 0427 14:03:37615 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_4.mss] 0427 14:03:37633 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_4.mss] 0427 14:03:37658 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_4_making.mss] 0427 14:03:37676 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_3_making.mss] 0427 14:03:37689 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_4_making.mss] 0427 14:03:37702 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_4_making.mss] 0427 14:03:37735 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_4.mss] 0427 14:03:37756 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_4_making.mss] 0427 14:03:37767 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_4_making.mss] 0427 14:03:37771 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_4_fallow.mss] 0427 14:03:37778 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_4.mss] 0427 14:03:37780 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuipi.mss] 0427 14:03:37780 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuichukbok.mss] 0427 14:03:37781 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_seonghwigap.mss] 0427 14:03:37782 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_gasokhwa.mss] 0427 14:03:37783 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuibunno.mss] 0427 14:03:37784 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_jumunsul.mss] 0427 14:03:37787 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_1.mss] 0427 14:03:37788 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_2.mss] 0427 14:03:37789 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_3.mss] 0427 14:03:37789 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_4.mss] 0427 14:03:37790 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_5.mss] 0427 14:03:37791 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_6.mss] 0427 14:03:37791 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/congratulation.mss] 0427 14:03:37792 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/forgive.mss] 0427 14:03:37792 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/angry.mss] 0427 14:03:37793 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/attractive.mss] 0427 14:03:37794 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/sad.mss] 0427 14:03:37795 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/shy.mss] 0427 14:03:37795 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/cheerup.mss] 0427 14:03:37796 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/banter.mss] 0427 14:03:37797 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/joy.mss] 0427 14:03:37799 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/kiss_with_warrior.mss] 0427 14:03:37801 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/kiss_with_sura.mss] 0427 14:03:37803 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/french_kiss_with_warrior.mss] 0427 14:03:37804 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/french_kiss_with_sura.mss] 0427 14:03:37808 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/wedding/wait.mss] 0427 14:03:37808 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/wedding/walk.mss] 0427 14:03:37809 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/onehand_sword/wait.mss] 0427 14:03:37869 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/wait.mss] 0427 14:03:37886 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/fishing_wait.mss] 0427 14:03:37894 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/fishing_react.mss] 0427 14:03:37913 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait.mss] 0427 14:03:37916 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait_1.mss] 0427 14:03:37920 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait_2.mss] 0427 14:03:37960 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/horse_onehand_sword_splash_energy.mss] 0427 14:03:37972 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/horse_onehand_sword_splash_blow.mss] 0427 14:03:38003 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/wait.mss] 0427 14:03:38035 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/falling_stand.mss] 0427 14:03:38045 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/back_falling_stand.mss] 0427 14:03:38181 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuipi.mss] 0427 14:03:38183 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuichukbok.mss] 0427 14:03:38183 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_seonghwigap.mss] 0427 14:03:38184 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_gasokhwa.mss] 0427 14:03:38185 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuibunno.mss] 0427 14:03:38186 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_jumunsul.mss] 0427 14:03:38187 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/slap_hurt.mss] 0427 14:03:38188 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_1.mss] 0427 14:03:38189 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_2.mss] 0427 14:03:38190 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_3.mss] 0427 14:03:38191 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_4.mss] 0427 14:03:38192 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_5.mss] 0427 14:03:38193 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_6.mss] 0427 14:03:38193 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/congratulation.mss] 0427 14:03:38194 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/forgive.mss] 0427 14:03:38194 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/angry.mss] 0427 14:03:38195 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/attractive.mss] 0427 14:03:38195 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/sad.mss] 0427 14:03:38196 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/shy.mss] 0427 14:03:38197 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/cheerup.mss] 0427 14:03:38197 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/banter.mss] 0427 14:03:38198 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/joy.mss] 0427 14:03:38209 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/wedding/wait.mss] 0427 14:03:38210 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/wedding/walk.mss] 0427 14:03:38210 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/onehand_sword/wait.mss] 0427 14:03:38274 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/wait.mss] 0427 14:03:38293 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/fishing_wait.mss] 0427 14:03:38304 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/fishing_react.mss] 0427 14:03:38323 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait.mss] 0427 14:03:38326 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait_1.mss] 0427 14:03:38330 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait_2.mss] 0427 14:03:38386 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/wait.mss] 0427 14:03:38413 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/falling_stand.mss] 0427 14:03:38422 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/back_falling_stand.mss] 0427 14:03:38452 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_1.mss] 0427 14:03:38453 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_2.mss] 0427 14:03:38454 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_3.mss] 0427 14:03:38455 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_4.mss] 0427 14:03:38455 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_5.mss] 0427 14:03:38456 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_6.mss] 0427 14:03:38457 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/congratulation.mss] 0427 14:03:38457 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/forgive.mss] 0427 14:03:38458 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/angry.mss] 0427 14:03:38458 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/attractive.mss] 0427 14:03:38459 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/sad.mss] 0427 14:03:38460 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/shy.mss] 0427 14:03:38460 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/cheerup.mss] 0427 14:03:38461 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/banter.mss] 0427 14:03:38462 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/joy.mss] 0427 14:03:38465 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/kiss_with_assassin.mss] 0427 14:03:38467 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/kiss_with_shaman.mss] 0427 14:03:38468 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/french_kiss_with_assassin.mss] 0427 14:03:38470 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/french_kiss_with_shaman.mss] 0427 14:03:38472 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/wedding/wait.mss] 0427 14:03:38473 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/wedding/walk.mss] 0427 14:03:38473 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fan/wait.mss] 0427 14:03:38536 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/bell/wait.mss] 0427 14:03:38610 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/1bipamaking.mss] 0427 14:03:38625 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_a.mss] 0427 14:03:38632 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noegem_boom.mss] 0427 14:03:38650 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong.mss] 0427 14:03:38664 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_making.mss] 0427 14:03:38676 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_making.mss] 0427 14:03:38687 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_making.mss] 0427 14:03:38700 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_making.mss] 0427 14:03:38721 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_a.mss] 0427 14:03:38728 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/2jeongeop_making.mss] 0427 14:03:38734 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_making.mss] 0427 14:03:38739 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_making.mss] 0427 14:03:38748 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_2_making.mss] 0427 14:03:38760 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_2_head.mss] 0427 14:03:38783 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_2.mss] 0427 14:03:38801 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_2_making.mss] 0427 14:03:38821 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_2_making.mss] 0427 14:03:38838 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_3_making.mss] 0427 14:03:38849 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_3_head.mss] 0427 14:03:38883 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_3.mss] 0427 14:03:38903 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_3_making.mss] 0427 14:03:38924 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_3_making.mss] 0427 14:03:38944 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_4_making.mss] 0427 14:03:38958 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_4_head.mss] 0427 14:03:39003 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_4.mss] 0427 14:03:39010 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_making_4.mss] 0427 14:03:39016 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_making_4.mss] 0427 14:03:39022 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_making_4.mss] 0427 14:03:39037 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_4_making.mss] 0427 14:03:39060 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_4_making.mss] 0427 14:03:39068 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_making_4.mss] 0427 14:03:39073 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_making_4.mss] 0427 14:03:39074 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuipi.mss] 0427 14:03:39075 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuichukbok.mss] 0427 14:03:39076 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_seonghwigap.mss] 0427 14:03:39077 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_gasokhwa.mss] 0427 14:03:39078 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuibunno.mss] 0427 14:03:39079 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_jumunsul.mss] 0427 14:03:39080 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/wait.mss] 0427 14:03:39094 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/fishing_wait.mss] 0427 14:03:39102 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/fishing_react.mss] 0427 14:03:39116 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait.mss] 0427 14:03:39119 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait_1.mss] 0427 14:03:39123 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait_2.mss] 0427 14:03:39211 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/wait.mss] 0427 14:04:39240 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/falling_stand.mss] 0427 14:04:39247 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/back_falling_stand.mss] 0427 14:04:39276 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/slap_hurt.mss] 0427 14:04:39276 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_1.mss] 0427 14:04:39277 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_2.mss] 0427 14:04:39278 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_3.mss] 0427 14:04:39278 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_4.mss] 0427 14:04:39279 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_5.mss] 0427 14:04:39280 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_6.mss] 0427 14:04:39280 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/congratulation.mss] 0427 14:04:39281 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/forgive.mss] 0427 14:04:39281 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/angry.mss] 0427 14:04:39282 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/attractive.mss] 0427 14:04:39283 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/sad.mss] 0427 14:04:39283 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/shy.mss] 0427 14:04:39284 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/cheerup.mss] 0427 14:04:39285 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/banter.mss] 0427 14:04:39285 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/joy.mss] 0427 14:04:39297 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/wedding/wait.mss] 0427 14:04:39298 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/wedding/walk.mss] 0427 14:04:39299 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fan/wait.mss] 0427 14:04:39365 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/bell/wait.mss] 0427 14:04:39514 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuipi.mss] 0427 14:04:39515 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuichukbok.mss] 0427 14:04:39516 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_seonghwigap.mss] 0427 14:04:39517 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_gasokhwa.mss] 0427 14:04:39518 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuibunno.mss] 0427 14:04:39519 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_jumunsul.mss] 0427 14:04:39520 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/wait.mss] 0427 14:04:39539 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/fishing_wait.mss] 0427 14:04:39549 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/fishing_react.mss] 0427 14:04:39571 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait.mss] 0427 14:04:39573 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait_1.mss] 0427 14:04:39578 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait_2.mss] 0427 14:04:39752 :: game.py: inconsistent use of tabs and spaces in indentation 0427 14:04:39874 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub 0427 14:04:39874 :: CANNOT_FIND_PACK_FILE [d:/ymir work/ui/game/quest/slot_button_01.sub] 0427 14:04:39880 :: Failed to load script file : locale/de/ui/InventoryWindow.py 0427 14:04:39880 :: # trying .traceback.pyd 0427 14:04:39881 :: # trying .traceback.py 0427 14:04:39881 :: # trying .traceback.pyw 0427 14:04:39881 :: # trying .traceback.pyc 0427 14:04:39882 :: # trying libtraceback.pyd 0427 14:04:39882 :: # trying libtraceback.py 0427 14:04:39883 :: # libtraceback.pyc has bad magic 0427 14:04:39885 :: import traceback # from libtraceback.py 0427 14:04:39886 :: # trying .linecache.pyd 0427 14:04:39886 :: # trying .linecache.py 0427 14:04:39887 :: # trying .linecache.pyw 0427 14:04:39887 :: # trying .linecache.pyc 0427 14:04:39888 :: # trying liblinecache.pyd 0427 14:04:39888 :: # trying liblinecache.py 0427 14:04:39888 :: # liblinecache.pyc has bad magic 0427 14:04:39889 :: import linecache # from liblinecache.py 0427 14:04:39892 :: ui.py(line:2773) LoadScriptFile system.py(line:192) execfile system.py(line:163) Run locale/de/ui/InventoryWindow.py(line:88) <module> LoadScriptFile!!!!!!!!!!!!!! - <type 'exceptions.AttributeError'>:'module' object has no attribute 'EQUIPMENT_RING1' 0427 14:04:39892 :: ============================================================================================================ 0427 14:04:39893 :: Abort!!!! 0427 14:04:39894 :: uiInventory.py(line:284) __LoadWindow ui.py(line:2790) LoadScriptFile exception.py(line:36) Abort InventoryWindow.LoadWindow.LoadObject - <type 'exceptions.SystemExit'>: 0427 14:04:39895 :: ============================================================================================================ 0427 14:04:39895 :: Abort!!!! 0427 14:04:39897 :: # clear __builtin__._ 0427 14:04:39898 :: # clear sys.path 0427 14:04:39898 :: # clear sys.argv 0427 14:04:39898 :: # clear sys.ps1 0427 14:04:39898 :: # clear sys.ps2 0427 14:04:39898 :: # clear sys.exitfunc 0427 14:04:39898 :: # clear sys.exc_type 0427 14:04:39899 :: # clear sys.exc_value 0427 14:04:39899 :: # clear sys.exc_traceback 0427 14:04:39899 :: # clear sys.last_type 0427 14:04:39899 :: # clear sys.last_value 0427 14:04:39899 :: # clear sys.last_traceback 0427 14:04:39899 :: # clear sys.path_hooks 0427 14:04:39900 :: # clear sys.path_importer_cache 0427 14:04:39900 :: # clear sys.meta_path 0427 14:04:39900 :: # clear sys.flags 0427 14:04:39900 :: # clear sys.float_info 0427 14:04:39900 :: # restore sys.stdin 0427 14:04:39900 :: # restore sys.stdout 0427 14:04:39900 :: # restore sys.stderr
  18. Hi, I want a function, for example: I have level 105, and a quest. In quest: pc.set_level("1") pc.reset_status() -- Reset all skill points to 0, and status 0, and all to 0.
×
×
  • 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.