Jump to content

MarcoJorge

Inactive Member
  • Posts

    13
  • Joined

  • Last visited

  • Feedback

    0%

1 Follower

About MarcoJorge

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

MarcoJorge's Achievements

Contributor

Contributor (5/16)

  • One Year In
  • Collaborator
  • Dedicated
  • Conversation Starter
  • One Month Later

Recent Badges

1

Reputation

  1. good noticed that when editing resistances do not fuciona ta to miss something to do with this database mob_proto.txt PROTO_FROM_DB = 1 MIRROR2DB = 0 bug
  2. Fix Pickup Distances Bug 100% locale_inc.h Add: #define ENABLE_QUICK_PICKUP // Fast pickup close items PythonItem.cpp Search: bool CPythonItem::GetCloseItem(const TPixelPosition & c_rPixelPosition, DWORD * pdwItemID, DWORD dwDistance) { DWORD dwCloseItemID = 0; DWORD dwCloseItemDistance = 1000 * 1000; TGroundItemInstanceMap::iterator i; for (i = m_GroundItemInstanceMap.begin(); i != m_GroundItemInstanceMap.end(); ++i) { TGroundItemInstance * pInstance = i->second; DWORD dwxDistance = DWORD(c_rPixelPosition.x-pInstance->v3EndPosition.x); DWORD dwyDistance = DWORD(c_rPixelPosition.y-(-pInstance->v3EndPosition.y)); DWORD dwDistance = DWORD(dwxDistance*dwxDistance + dwyDistance*dwyDistance); if (dwxDistance*dwxDistance + dwyDistance*dwyDistance < dwCloseItemDistance) { dwCloseItemID = i->first; dwCloseItemDistance = dwDistance; } } if (dwCloseItemDistance>float(dwDistance)*float(dwDistance)) return false; *pdwItemID=dwCloseItemID; return true; } add underneath: #ifdef ENABLE_QUICK_PICKUP bool CPythonItem::GetAllCloseItems(const std::string& myName, const TPixelPosition& c_rPixelPosition, std::vector<DWORD>& itemVidList) { DWORD dwCloseItemDistance = 1000 * 1000; TGroundItemInstanceMap::iterator i; for (i = m_GroundItemInstanceMap.begin(); i != m_GroundItemInstanceMap.end(); ++i) { TGroundItemInstance * pInstance = i->second; DWORD dwxDistance = DWORD(c_rPixelPosition.x - pInstance->v3EndPosition.x); DWORD dwyDistance = DWORD(c_rPixelPosition.y - (-pInstance->v3EndPosition.y)); DWORD dwDistance = DWORD(dwxDistance * dwxDistance + dwyDistance * dwyDistance); if (dwDistance < dwCloseItemDistance && (pInstance->stOwnership == "" || pInstance->stOwnership == myName)) { itemVidList.push_back(i->first); } } return true; } #endif PythonItem.h Search: bool GetCloseMoney(const TPixelPosition & c_rPixelPosition, DWORD* dwItemID, DWORD dwDistance=300); add underneath: #ifdef ENABLE_QUICK_PICKUP bool GetAllCloseItems(const std::string& myName, const TPixelPosition& c_rPixelPosition, std::vector<DWORD>& itemVidList); #endif
  3. how to fix errors in source debug 1205 14:03:13568 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_blue.mss] 1205 14:03:13588 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item1.mss] 1205 14:03:13659 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item2.mss] 1205 14:03:13684 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item3.mss] 1205 14:03:13697 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item4.mss] 1205 14:03:13731 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/gwantong.mss] 1205 14:03:13921 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_select.mss] 1205 14:03:13930 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_glow_select.mss] 1205 14:03:13951 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun.mss] 1205 14:03:14009 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click.mss] 1205 14:03:14054 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target.mss] 1205 14:03:14059 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg 1205 14:03:14060 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/nontarget.mss] 1205 14:03:14060 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg] 1205 14:03:14067 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage.mss] 1205 14:03:14071 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage_1.mss] 1205 14:03:14074 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg 1205 14:03:14075 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/poison.mss] 1205 14:03:14076 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg] 1205 14:03:14081 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/miss.mss] 1205 14:03:14084 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target_miss.mss] 1205 14:03:14145 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage1.mss] 1205 14:03:14158 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage2.mss] 1205 14:03:14176 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage3.mss] 1205 14:03:14251 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/wait.mss] 1205 14:03:14282 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/not_selected.mss] 1205 14:03:14382 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/wait.mss] 1205 14:03:14409 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/not_selected.mss] 1205 14:03:14513 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/wait.mss] 1205 14:03:14550 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/not_selected.mss] 1205 14:03:14619 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/wait.mss] 1205 14:03:14659 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/not_selected.mss] 1205 14:03:14753 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/wait.mss] 1205 14:03:14782 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/not_selected.mss] 1205 14:03:14847 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/wait.mss] 1205 14:03:14898 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/not_selected.mss] 1205 14:03:14958 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/wait.mss] 1205 14:03:15010 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/not_selected.mss] 1205 14:03:15069 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/wait.mss] 1205 14:03:15110 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/not_selected.mss] 1205 14:03:22578 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/fall/fall_7.mss] 1205 14:03:25450 :: CANNOT_FIND_PACK_FILE [sound/effect/background/fire_general_obj_charcoal.mss] 1205 14:03:25617 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/°ø¿ë/hay_01.gr2 1205 14:03:25618 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/°ø¿ë/hay_01.gr2] 1205 14:03:25621 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 1205 14:03:25622 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 1205 14:03:25622 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 1205 14:03:25623 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2 1205 14:03:25683 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr 1205 14:03:25683 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr] 1205 14:03:26436 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_appear.mss] 1205 14:03:26443 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_die.mss] 1205 14:03:26482 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_weapon.mss] 1205 14:03:26493 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_blow.mss] 1205 14:03:26503 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_body.mss] 1205 14:03:26533 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_a.mss] 1205 14:03:26537 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_b.mss] 1205 14:03:26540 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_c.mss] 1205 14:03:26562 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_loop.mss] 1205 14:03:26570 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_spear_loop.mss] 1205 14:03:26582 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_poison/poison_loop.mss] 1205 14:03:26604 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/slow.mss] 1205 14:03:26613 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun_loop.mss] 1205 14:03:26620 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/ready/ready.mss] 1205 14:03:26633 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang_loop.mss] 1205 14:03:26653 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_loop.mss] 1205 14:03:26677 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_loop.mss] 1205 14:03:26700 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_loop.mss] 1205 14:03:26709 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_loop.mss] 1205 14:03:26725 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_loop.mss] 1205 14:03:26735 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_loop.mss] 1205 14:03:26747 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_loop.mss] 1205 14:03:26763 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/heuksin_loop.mss] 1205 14:03:26774 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_loop.mss] 1205 14:03:26780 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_flame/flame_loop.mss] 1205 14:03:26789 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_hand.mss] 1205 14:03:26803 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_hand.mss] 1205 14:03:26810 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeop_loop.mss] 1205 14:03:26819 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_red.mss] 1205 14:03:26822 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_blue.mss] 1205 14:03:26825 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_yellow.mss] 1205 14:03:26839 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7.mss] 1205 14:03:26847 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8.mss] 1205 14:03:26853 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9.mss] 1205 14:03:26859 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_b.mss] 1205 14:03:26870 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_b.mss] 1205 14:03:26881 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_b.mss] 1205 14:03:26885 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_f.mss] 1205 14:03:26894 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_f.mss] 1205 14:03:26902 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_f.mss] 1205 14:03:26906 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_s.mss] 1205 14:03:26914 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_s.mss] 1205 14:03:26920 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_s.mss] 1205 14:03:26924 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_7.mss] 1205 14:03:26930 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_8.mss] 1205 14:03:26935 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_9.mss] 1205 14:03:26962 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-1.mss] 1205 14:03:26965 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-2.mss] 1205 14:03:27002 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_yellow.mss] 1205 14:03:27005 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_yellow2.mss] 1205 14:03:27013 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_red.mss] 1205 14:03:27020 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_red.mss] 1205 14:03:27029 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center.mss] 1205 14:03:27034 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_red.mss] 1205 14:03:27039 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue_warrior.mss] 1205 14:03:27046 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue.mss] 1205 14:03:27055 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_blue.mss] 1205 14:03:27065 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_blue.mss] 1205 14:03:27265 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_c.mss] 1205 14:03:27269 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_b.mss] 1205 14:03:27318 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeongfly.mss] 1205 14:03:27328 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sweat.mss] 1205 14:03:27347 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/money.mss] 1205 14:03:27354 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/happy.mss] 1205 14:03:27361 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_s.mss] 1205 14:03:27368 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_l.mss] 1205 14:03:27378 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/angry.mss] 1205 14:03:27387 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/aha.mss] 1205 14:03:27402 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/gloom.mss] 1205 14:03:27412 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sorry.mss] 1205 14:03:27417 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/!_mix_back.mss] 1205 14:03:27421 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/question.mss] 1205 14:03:27429 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/fish.mss] 1205 14:03:27443 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait.mss] 1205 14:03:27525 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/falling_stand.mss] 1205 14:03:27538 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/back_falling_stand.mss] 1205 14:03:27583 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dig/dig.mss] 1205 14:03:27590 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait_1.mss] 1205 14:03:27668 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_d.mss] 1205 14:03:27722 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_sword.mss] 1205 14:03:27736 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_spin.mss] 1205 14:03:27776 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi.mss] 1205 14:03:27813 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom.mss] 1205 14:03:27819 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_making.mss] 1205 14:03:27829 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom-badak.mss] 1205 14:03:27862 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan.mss] 1205 14:03:27880 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_making.mss] 1205 14:03:27886 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_swing.mss] 1205 14:03:27925 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksantau_triple.mss] 1205 14:03:27948 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak.mss] 1205 14:03:27977 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang.mss] 1205 14:03:27998 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_sword.mss] 1205 14:03:28017 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_2.mss] 1205 14:03:28032 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_sword.mss] 1205 14:03:28037 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_spin.mss] 1205 14:03:28057 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_2.mss] 1205 14:03:28068 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_sword_making.mss] 1205 14:03:28080 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_badak.mss] 1205 14:03:28103 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_2.mss] 1205 14:03:28118 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_making.mss] 1205 14:03:28127 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_swing.mss] 1205 14:03:28161 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_2.mss] 1205 14:03:28181 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_2.mss] 1205 14:03:28236 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_2.mss] 1205 14:03:28250 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_2_sword.mss] 1205 14:03:28271 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_3.mss] 1205 14:03:28293 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_sword.mss] 1205 14:03:28302 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_spin.mss] 1205 14:03:28332 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_3.mss] 1205 14:03:28347 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_sword_making.mss] 1205 14:03:28365 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_badak.mss] 1205 14:03:28389 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_3.mss] 1205 14:03:28399 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_making.mss] 1205 14:03:28412 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_swing.mss] 1205 14:03:28445 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_3.mss] 1205 14:03:28464 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_3.mss] 1205 14:03:28484 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_3.mss] 1205 14:03:28503 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_3_sword.mss] 1205 14:03:28561 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_4.mss] 1205 14:03:28581 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_sword.mss] 1205 14:03:28600 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_spin.mss] 1205 14:03:28622 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_4.mss] 1205 14:03:28646 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_sword_making.mss] 1205 14:03:28663 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_badak.mss] 1205 14:03:28687 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_4.mss] 1205 14:03:28704 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_making.mss] 1205 14:03:28721 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_swing.mss] 1205 14:03:28757 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_4.mss] 1205 14:03:28783 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_4.mss] 1205 14:03:28817 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_4.mss] 1205 14:03:28843 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_4_sword.mss] 1205 14:03:28940 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg 1205 14:03:28941 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuipi_make.mss] 1205 14:03:28942 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuipi.mss] 1205 14:03:29006 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuichukbok_make.mss] 1205 14:03:29007 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuichukbok.mss] 1205 14:03:29060 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/seonghwigap_make.mss] 1205 14:03:29061 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_seonghwigap.mss] 1205 14:03:29082 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\assassin\effect\16-bottom.jpg 1205 14:03:29083 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/gasokhwa_make.mss] 1205 14:03:29085 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_gasokhwa.mss] 1205 14:03:29099 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuibunno_make.mss] 1205 14:03:29100 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuibunno.mss] 1205 14:03:29128 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam.jpg 1205 14:03:29128 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\w_ring.jpg 1205 14:03:29130 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\white_sphere.jpg 1205 14:03:29132 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\wind.jpg 1205 14:03:29133 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\W_star.jpg 1205 14:03:29134 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam_ring.jpg 1205 14:03:29134 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\gyeokgong_triple_loop_2.jpg 1205 14:03:29135 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\noe_w_ring.jpg 1205 14:03:29136 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/jumunsul_make.mss] 1205 14:03:29138 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_jumunsul.mss] 1205 14:03:29180 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_1.mss] 1205 14:03:29181 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_2.mss] 1205 14:03:29185 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_3.mss] 1205 14:03:29189 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_4.mss] 1205 14:03:29194 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_5.mss] 1205 14:03:29211 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_6.mss] 1205 14:03:29228 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/congratulation.mss] 1205 14:03:29229 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/forgive.mss] 1205 14:03:29233 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/angry.mss] 1205 14:03:29235 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/attractive.mss] 1205 14:03:29246 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/sad.mss] 1205 14:03:29247 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/shy.mss] 1205 14:03:29250 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/cheerup.mss] 1205 14:03:29251 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/banter.mss] 1205 14:03:29255 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/joy.mss] 1205 14:03:29297 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/wait.mss] 1205 14:03:29298 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/walk.mss] 1205 14:03:29304 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait.mss] 1205 14:03:29312 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait_1.mss] 1205 14:03:29412 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait.mss] 1205 14:03:29447 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait_1.mss] 1205 14:03:29614 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/wait.mss] 1205 14:03:29643 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_wait.mss] 1205 14:03:29662 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_react.mss] 1205 14:03:29691 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait.mss] 1205 14:03:29696 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_1.mss] 1205 14:03:29702 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_2.mss] 1205 14:03:29776 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/horse_charge.mss] 1205 14:03:29846 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae.mss] 1205 14:03:29902 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait.mss] 1205 14:03:29969 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/falling_stand.mss] 1205 14:03:29992 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/back_falling_stand.mss] 1205 14:03:30032 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait_1.mss] 1205 14:03:30483 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuipi.mss] 1205 14:03:30999 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuichukbok.mss] 1205 14:03:31000 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_seonghwigap.mss] 1205 14:03:31001 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_gasokhwa.mss] 1205 14:03:31002 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuibunno.mss] 1205 14:03:31003 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_jumunsul.mss] 1205 14:03:31049 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_1.mss] 1205 14:03:31050 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_2.mss] 1205 14:03:31053 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_3.mss] 1205 14:03:31058 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_4.mss] 1205 14:03:31112 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_5.mss] 1205 14:03:31126 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_6.mss] 1205 14:03:31135 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/congratulation.mss] 1205 14:03:31137 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/forgive.mss] 1205 14:03:31139 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/angry.mss] 1205 14:03:31141 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/attractive.mss] 1205 14:03:31148 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/sad.mss] 1205 14:03:31150 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/shy.mss] 1205 14:03:31157 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/cheerup.mss] 1205 14:03:31158 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/banter.mss] 1205 14:03:31166 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/joy.mss] 1205 14:03:31222 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/wait.mss] 1205 14:03:31222 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/walk.mss] 1205 14:03:31236 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait.mss] 1205 14:03:31242 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait_1.mss] 1205 14:03:31366 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait.mss] 1205 14:03:31370 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait_1.mss] 1205 14:03:31509 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/wait.mss] 1205 14:03:31540 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_wait.mss] 1205 14:03:31569 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_react.mss] 1205 14:03:31589 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait.mss] 1205 14:03:31601 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_1.mss] 1205 14:03:31607 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_2.mss] 1205 14:03:31751 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/wait.mss] 1205 14:03:31827 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/falling_stand.mss] 1205 14:03:31837 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/back_falling_stand.mss]
  4. good bro can add me in discord to talk better serca filesTMP4 Ana Pacheco#6878
  5. how to solve this i get when doing razador 0413 01:57:52791 :: CRaceManager::RegisterRacePath : RACE[20387] LOAD MSMFILE[d:/ymir work/npc/flame_bridge_block_chain/bridge_block_chain.msm] ERROR. Vai encontrar outro caminho. 0413 01:57:54062 :: CRaceManager::RegisterRacePath : RACE[20385] LOAD MSMFILE[d:/ymir work/npc/flame_dungeon_npc/flame_npc.msm] ERROR. Vai encontrar outro caminho. 0413 01:57:54063 :: CEffectManager::RegisterEffect - LoadScript(D:\Ymir Work\effect\monster2\yellowred1_big.mse) Erro 0413 01:57:05060 :: CRaceManager::RegisterRacePath : RACE[20388] LOAD MSMFILE[d:/ymir work/npc/flame_door_npc/flame_door_npc.msm] ERROR. Vai encontrar outro caminho.
×
×
  • 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.