Aller au contenu
Top-Metin2.org - Vous êtes à la recherche d'un serveur Metin 2 ? ×
×
×
  • Créer...
  • 0

Wolfman bloqué en position


Testuff

Question

Version des fichiers/ Type d'émulateur : Files 2016 optimisé :

 

 

Votre niveau (Débutant, Intermédiaire, Avancé..) : Débutant

 

Description du problème : Après implantation du tuto suivant dans le client et le serveur, le wolfman ne bouge pas et reste figé en position initiale (tous les autres persos fonctionnent parfaitement sans problème)

 

 

Screenshot du problème concerné :

 

Hidden Content

    Give reaction to this post to see the hidden content.

 

Hidden Content

    Give reaction to this post to see the hidden content.

 

Merci à vous pour votre aide

 

 

 

 

En postant ma demande d'aide, j'affirme avoir lu et accepté le Règlement de Funky-Emulation.

Modifié par Funky Emulation
Core X - External 2 Internal
  • Love 1
Lien vers le commentaire
Partager sur d’autres sites

16 réponses à cette question

Messages recommandés

  • 0
Il y a 13 heures, Julian a dit :

J'ai l'impression que le jeu pense qu'il s'agit d'un guerrier... Ce qui expliquerait le fait de ton autre problème a la select perso.. 

 

Vérifie que tu as bien suivis la partie de l'introloading, c'est elle qui initialise la fonction

playerSettingModule.LoadGameData("WOLFMAN")	

 

 

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Merci pour le conseil, effectivement il me manquait des infos. J'ai ajouté les lignes cependant maintenant le jeu ne se lance plus une fois le personnage selectionné.

 

Voici le syserr :

 

 

1002 22:30:10906 :: Hair number 1 is not exist.
1002 22:30:10908 :: Hair number 1 is not exist.
1002 22:30:10909 :: Hair number 1 is not exist.
1002 22:30:20662 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR
1002 22:30:24850 :: 
playerSettingModule.py(line:1583) LoadGameData
playerSettingModule.py(line:553) __LoadGameWolfman
playerSettingModule.py(line:1326) __LoadGameWolfmanEx

LoadGameData - <type 'exceptions.AttributeError'>:'module' object has no attribute 'MOTION_MODE_CLAW'

1002 22:30:24850 :: ============================================================================================================
1002 22:30:24850 :: Abort!!!!


1002 22:30:24850 ::  !!! Failed to load game data : STEP [85]
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CF9E30>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CF9D30>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC710>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC730>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC750>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC790>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC7B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC7D0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC830>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC850>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC890>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC8B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC8D0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CFC8F0>> ignored
Exception AttributeError: "'NoneType' object has no attribute '__del__'" in <bound method NumberLine.__del__ of <ui.NumberLine object at 0x02CFC950>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02CF9F70>> ignored

 

 

J'ai vérifié dans le game les fichiers suivants, j'ai bien les infos sur le MOTION_MODE_CLAW

 

Char.cpp :

case WEAPON_CLAW:
                dwMode = MOTION_MODE_CLAW;
                break;

case POINT_RESIST_CLAW:

case APPLY_RESIST_CLAW:

 

Motion.cpp :

{
    const char * c_apszFolderName[MAIN_RACE_MAX_NUM] =
    {
        "data/pc/warrior",
        "data/pc/assassin",
        "data/pc/sura",
        "data/pc/shaman",
        "data/pc2/warrior",
        "data/pc2/assassin",
        "data/pc2/sura",
        "data/pc2/shaman",
        "data/pc3/wolfman"
    };
    
    for (int i = 0; i < MAIN_RACE_MAX_NUM; ++i)
    {
        CMotionSet * pkMotionSet = M2_NEW CMotionSet;
        m_map_pkMotionSet.insert(TContainer::value_type(i, pkMotionSet));

        char sz[256];

        if (i == 😎 // Wolfman
        {
            snprintf(sz, sizeof(sz), "%s/general/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_GENERAL, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/general/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_GENERAL, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/claw/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_CLAW, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/claw/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_CLAW, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/horse/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_HORSE, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/horse/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_HORSE, MOTION_WALK);
        }
        else
        {

            snprintf(sz, sizeof(sz), "%s/general/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_GENERAL, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/general/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_GENERAL, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/twohand_sword/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_TWOHAND_SWORD, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/twohand_sword/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_TWOHAND_SWORD, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/onehand_sword/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_ONEHAND_SWORD, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/onehand_sword/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_ONEHAND_SWORD, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/dualhand_sword/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_DUALHAND_SWORD, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/dualhand_sword/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_DUALHAND_SWORD, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/bow/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_BOW, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/bow/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_BOW, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/bell/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_BELL, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/bell/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_BELL, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/fan/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_FAN, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/fan/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_FAN, MOTION_WALK);

            snprintf(sz, sizeof(sz), "%s/horse/run.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_HORSE, MOTION_RUN);
            snprintf(sz, sizeof(sz), "%s/horse/walk.msa", c_apszFolderName);
            pkMotionSet->Load(sz, MOTION_MODE_HORSE, MOTION_WALK);
        }
    }

 

Motion.h :

enum EMotionMode
{
    MOTION_MODE_GENERAL,
    MOTION_MODE_ONEHAND_SWORD,
    MOTION_MODE_TWOHAND_SWORD,
    MOTION_MODE_DUALHAND_SWORD,
    MOTION_MODE_BOW,
    MOTION_MODE_BELL,
    MOTION_MODE_FAN,
    MOTION_MODE_CLAW,
    MOTION_MODE_HORSE,
    MOTION_MODE_MAX_NUM
};

 

 

 

 

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Désolé pour mon faible niveau, mais j'essaye depuis deux soirs de compiler désespérément mon client, malheureusement je ne peux utiliser que Visual Studio 2017 sous Windows 10 ou Visual studio Code sous Ubuntu et la compilation se finit en échec avec un problème de compatibilité demandé 2013 v120_xp. Ne connaissant que très peu ce logiciel, j'avoue ne pas comprendre la demande du logiciel.

 

Sur Visual Studio 2017 Community, j'ai essayé d'ajouter le module v140 ... windows xp, mais je suis toujours à deux echecs. Est-il nécessaire d'utiliser Visual Studio 2013 Pro sur Windows pour compiler le client, svp ?

 

Erreur lors de la compilation

Gravité    Code    Description    Projet    Fichier    Ligne    Suppression State
Erreur    RC1015    cannot open include file 'afxres.h'.    UserInterface    C:\Users\Carob\Downloads\Source FE 2016_client\Source FE 2016\source\UserInterface\UserInterface.rc    11    
Avertissement    MSB8051    Support for targeting Windows XP is deprecated and will not be present in future releases of Visual Studio. Please see aka.ms/dev16_deprecation for more information.    EterLib    C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\Common7\IDE\VC\VCTargets\Platforms\Win32\PlatformToolsets\v141_xp\Toolset.targets    39    
Avertissement    C4267    '=' : conversion de 'size_t' en 'short', perte possible de données    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\grpfonttexture.cpp    283    
Erreur    C2872    'data' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    216    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    217    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    224    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    231    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    241    
Erreur    C2872    'data' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    242    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    243    
Erreur    C2872    'data' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    261    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    262    
Erreur    C2872    'data' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    266    
Erreur    C2872    'size' : symbole ambigu    EterLib    c:\users\carob\downloads\source fe 2016_client\source fe 2016\source\eterlib\jpegfile.cpp    267    
Avertissement    MSB8051    Support for targeting Windows XP is deprecated and will not be present in future releases of Visual Studio. Please see aka.ms/dev16_deprecation for more information.    UserInterface    C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\Common7\IDE\VC\VCTargets\Platforms\Win32\PlatformToolsets\v141_xp\Toolset.targets    39    

 

 

J'ai essayé de suivre ce tuto, mais visual studio 2013 ne s'installe pas sur windows 10 :

 

 

 

Modifié par Testuff
Lien vers le commentaire
Partager sur d’autres sites

  • 0

Bonjour,

 

Je viens de recompiler le lanceur avec les modifications.

 

Il me reste un dernier soucis dans le fichier InstanceBase.h.

 

Si je mets (car j'ai le wolfman et le wolfwomen):

 

inline int RaceToJob(int race)
{
    const int JOB_NUM = 5;
    return race % JOB_NUM;
}

inline int RaceToSex(int race)
{
    switch (race)
    {
        case 0:
        case 2:
        case 5:
        case 7:

        case 9:
            return 1;
        case 1:
        case 3:
        case 4:
        case 6:

        case 8:
            return 0;

    }
    return 0;
}

 

Resultats : Le sura est ok, le warrior est ok, le ninja est ok, le shaman devient un sura en terme de skill, le wolfman devient un shaman en terme de skill

 

 

Si je mets (car j'ai le wolfman et le wolfwomen):


inline int RaceToJob(int race)
{
    switch (race)
    {
        case 0:
        case 4:
            return 0;
        case 1:
        case 5:
            return 1;
        case 2:
        case 6:
            return 2;
        case 3:
        case 7:
            return 3;
        case 8:
            return 4;
        default:
            return 0;
    }
    return 0;
}

inline int RaceToSex(int race)
{
    switch (race)
    {
        case 0:
        case 2:
        case 5:
        case 7:
        case 8:
            return 1;
        case 1:
        case 3:
        case 4:
        case 6:
            return 0;

    }
    return 0;
}
 

Tout marche, mais le wolfman ne se lance plus

 

Syserr :

 

 

1012 08:06:39573 :: 
game.py(line:228) Open
game.py(line:645) StartGame
game.py(line:797) RefreshCharacter
interfaceModule.py(line:596) RefreshCharacter
uiCharacter.py(line:1113) RefreshCharacter
uiCharacter.py(line:1175) __SelectSkillGroup
uiCharacter.py(line:1161) __SetSkillSlotData
uiCharacter.py(line:858) RefreshSkill
uiCharacter.py(line:833) __RefreshSkillPage

GameWindow.Open - <type 'exceptions.RuntimeError'>:skill.GetSkillType - Failed to find skill by 170

1012 08:06:39573 :: ============================================================================================================
1012 08:06:39573 :: Abort!!!!

 

 

 

 

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Bonsoir à tous,

 

D’après mes recherches le problème viendrait de mon mob_proto client, mais je ne parvient pas a refaire les transformations en txt ou xml. Quelqu'un pourrait me redonner les outils pour faire les transformations mob_proto.txt ==> mob_proto client du local, svp.

 

Merci à tous

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Bonjour a tous,

 

Bon j'ai résolu une partie du problème en modifiant les fichiers skilldesc.txt et skilltable.txt coté client (présent dans locale_fr/local/fr)

 

Voici les modifications du fichier skilldesc.txt :

 

170    WOLFMAN    Blue Power    Blue Power    Blue Power    The epistemological gives you makes.    Defense is increased    Chance to put opponents into a unconscious is increased            STANDING_SKILL        blue_possession    1    4            Defense  +%.0f    (200 + str*0.2 + con*0.5 ) *k        Faint Chance %.0f%%     1 + 9*SkillPoint
171    WOLFMAN    Bleeding Anger    Bleeding Anger    Bleeding Anger    An irrepressible anger takes over your body.    Attack rating is increased    Piercing strike chance is increased            STANDING_SKILL        red_possession    2    4            Attack value +%.1f    (3 * iq + 2 * lv)*k        Chance to ignore defense of the opponent %.0f%%    10*k                
172    WOLFMAN    Air attack    Air attack    Air attack    Go to your opponent and meet crushing defeat.    Claw attack                ATTACK_SKILL|NEED_TARGET|WEAPON_LIMITATION    CLAW    reef_attack    3    4            Attack Power %.0f-%.0f    3*MinATK + (0.8*MinATK + STR*6 + DEX*2 + CON) * SkillPoint    3*MaxATK + (0.8*MaxATK + STR*6 + DEX*2 + CON) * SkillPoint                
173    WOLFMAN    Howl of the Prairie    Howl of the Prairie    Howl of the Prairie    Your cry let your opponents tremble!    Punch attack                ATTACK_SKILL|NEED_TARGET|WEAPON_LIMITATION    CLAW    split_slash    4    4            Attack Power %.0f-%.0f    3*MinATK + (0.8*MinATK + STR*6 + DEX*2 + CON) * SkillPoint    3*MaxATK + (0.8*MaxATK + STR*6 + DEX*2 + CON) * SkillPoint                
174    WOLFMAN    Mouth destruction    Mouth destruction    Mouth destruction    Tear steal your opponent with his.    Claw attack 3 times                ATTACK_SKILL|NEED_TARGET|WEAPON_LIMITATION    CLAW    wind_death    5    4            Attack Power %.0f-%.0f    3*MinATK + (0.8*MinATK + STR*6 + DEX*2 + CON) * SkillPoint    3*MaxATK + (0.8*MaxATK + STR*6 + DEX*2 + CON) * SkillPoint                
175    WOLFMAN    Divide    Divide    Divide    Storms directly on your opponent and to shred it!    Claw attack                ATTACK_SKILL|NEED_TARGET|WEAPON_LIMITATION    CLAW    wreckage    6    4            Attack Power %.0f-%.0f    3*MinATK + (0.8*MinATK + STR*6 + DEX*2 + CON) * SkillPoint    3*MaxATK + (0.8*MaxATK + STR*6 + DEX*2 + CON) * SkillPoint

 

Voici les modifications du fichier skilltable.txt :

 

170    ÃâÇ÷ ºÐ³ë    1    1    1    0    DEF_GRADE    (200 + str*0.2 + con*0.5 ) *k    80+220*k    60+90*k        40+40*k            SELFONLY    16    MOV_SPEED    -(1+9*k)    60+90*k        0    0    NORMAL    1    1    0    0
171    ºí·ç ÆÄ¿ö    1    1    1    0    ATT_GRADE    (100 + str + lv * 3)*k    100+200*k    30+50*k        30+10*k            SELFONLY,PENETRATE        NONE    1+k*9            0    0    MELEE    4    1    0    0
172    °ø±â °ø°Ý    1    1    1    0    HP    -(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)    50+130*k            15            ATTACK,USE_MELEE_DAMAGE        NONE                0    0    MELEE    12    0.8    0    0
173    ÇÁ·¹¸®ÀÇ ÇÏ¿ï    1    1    1    0    HP    -(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)    50+130*k            15            ATTACK,USE_MELEE_DAMAGE,SPLASH        NONE                0    0    MELEE    12    0.8    0    0
174    ÀÔ Æı«    1    1    1    0    HP    -(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)    50+130*k            15            ATTACK,USE_MELEE_DAMAGE,SPLASH        NONE                0    0    MELEE    12    0.8    0    0
175    ³ª´©±â    1    1    1    0    HP    -(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)    50+130*k            15            ATTACK,USE_MELEE_DAMAGE,SPLASH        NONE                0    0    MELEE    12    0.8    0    0

 

Par contre maintenant le bouton "+" présent pour ajouter 1 point sur les skills ne fonctionne pas uniquement pour le wolfman. La commande /setsk fonctionne par contre parfaitement.

 

Si quelqu'un avait une idée, je suis preneur.

 

Merci à tous

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Malheureusement, j'ai beaucoup d'erreur dans le sysser après avoir recompiler mon client, cependant aucune ne me semble correspondre à mon problème :

 

Mon Sysser :

 

1102 11:49:00274 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dropitem/dropitem.mss]
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_01_85_001.gr2
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_01_85_002.gr2
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_01_85_003.gr2
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_01_85_004.gr2
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_02_85_005.gr2
1102 11:49:14829 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_02_85_006.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_02_85_007.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_02_85_008.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_03_85_011.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_03_85_012.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_03_85_013.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_03_85_014.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_04_85_015.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_04_85_016.gr2
1102 11:49:14830 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_04_85_017.gr2
1102 11:49:14831 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/item/wing/Acce_04_85_018.gr2
1102 11:49:14849 ::     Çѱ¹¹«œÖ¹öÁ¯(#2    ) cannot find icon file. setting to default.
1102 11:49:14860 ::     ±€·ûÆȱ¥ÆÐ+0(#13180) cannot find icon file. setting to default.
1102 11:49:14860 ::     ±€·ûÆȱ¥ÆÐ+1(#13181) cannot find icon file. setting to default.
1102 11:49:14860 ::     ±€·ûÆȱ¥ÆÐ+2(#13182) cannot find icon file. setting to default.
1102 11:49:14861 ::     ±€·ûÆȱ¥ÆÐ+3(#13183) cannot find icon file. setting to default.
1102 11:49:14861 ::     ±€·ûÆȱ¥ÆÐ+4(#13184) cannot find icon file. setting to default.
1102 11:49:14861 ::     ±€·ûÆȱ¥ÆÐ+5(#13185) cannot find icon file. setting to default.
1102 11:49:14861 ::     ±€·ûÆȱ¥ÆÐ+6(#13186) cannot find icon file. setting to default.
1102 11:49:14861 ::     ±€·ûÆȱ¥ÆÐ+7(#13187) cannot find icon file. setting to default.
1102 11:49:14862 ::     ±€·ûÆȱ¥ÆÐ+8(#13188) cannot find icon file. setting to default.
1102 11:49:14862 ::     ±€·ûÆȱ¥ÆÐ+9(#13189) cannot find icon file. setting to default.
1102 11:49:14880 ::           WA_9+1(#21120) cannot find icon file. setting to default.
1102 11:49:14880 ::           WA_9+2(#21121) cannot find icon file. setting to default.
1102 11:49:14880 ::           WA_9+3(#21122) cannot find icon file. setting to default.
1102 11:49:14880 ::           WA_9+4(#21123) cannot find icon file. setting to default.
1102 11:49:14881 ::           WA_9+5(#21124) cannot find icon file. setting to default.
1102 11:49:14881 ::           WA_9+6(#21125) cannot find icon file. setting to default.
1102 11:49:14881 ::           WA_9+7(#21126) cannot find icon file. setting to default.
1102 11:49:14881 ::           WA_9+8(#21127) cannot find icon file. setting to default.
1102 11:49:14881 ::           WA_9+9(#21128) cannot find icon file. setting to default.
1102 11:49:14882 ::       À§Ä¡±âŸïºÎ(#22020) cannot find icon file. setting to default.
1102 11:49:14882 ::           À̵¿ºÎ(#22030) cannot find icon file. setting to default.
1102 11:49:14882 ::           »ýžíºÎ(#22040) cannot find icon file. setting to default.
1102 11:49:14882 ::           ȯ»ýºÎ(#22050) cannot find icon file. setting to default.
1102 11:49:14883 ::     ³ì»ö¹°Ÿà(ŒÒ)(#27123) cannot find icon file. setting to default.
1102 11:49:14884 ::           °¡ž®ºñ(#29001) cannot find icon file. setting to default.
1102 11:49:14885 ::         û°¡ž®ºñ(#29002) cannot find icon file. setting to default.
1102 11:49:14885 ::         Ȳ°¡ž®ºñ(#29003) cannot find icon file. setting to default.
1102 11:49:14885 ::         È«°¡ž®ºñ(#29004) cannot find icon file. setting to default.
1102 11:49:14885 ::         ³ì°¡ž®ºñ(#29005) cannot find icon file. setting to default.
1102 11:49:14885 ::           ȲÁÖŒ®(#29006) cannot find icon file. setting to default.
1102 11:49:14885 ::           ûÁÖŒ®(#29007) cannot find icon file. setting to default.
1102 11:49:14886 ::           ûœÅŒö(#29008) cannot find icon file. setting to default.
1102 11:49:14886 ::           ȲœÅŒö(#29009) cannot find icon file. setting to default.
1102 11:49:14886 ::           È«œÅŒö(#29010) cannot find icon file. setting to default.
1102 11:49:14886 ::           ³ìœÅŒö(#29011) cannot find icon file. setting to default.
1102 11:49:14886 ::         ¿¬Ã»œÅŒö(#29012) cannot find icon file. setting to default.
1102 11:49:14886 ::         ¿¬È²œÅŒö(#29013) cannot find icon file. setting to default.
1102 11:49:14886 ::         ¿¬È«œÅŒö(#29014) cannot find icon file. setting to default.
1102 11:49:14887 ::         ¿¬³ìœÅŒö(#29015) cannot find icon file. setting to default.
1102 11:49:14888 :: ¿õ±ÍÀÇ È²±ÝŸî±ÝŽÏ(#30103) cannot find icon file. setting to default.
1102 11:49:14888 ::    »çž·ÀÇ °Å¹ÌÁÙ(#30104) cannot find icon file. setting to default.
1102 11:49:14888 ::  ÅåœîŽÂ Àü°¥²¿ž®(#30105) cannot find icon file. setting to default.
1102 11:49:14888 ::   À¯¶û ŸîžÓŽÏ Ÿà(#30106) cannot find icon file. setting to default.
1102 11:49:14888 ::    ¿õ±ÍÀÇ ŒÛ°÷ŽÏ(#30107) cannot find icon file. setting to default.
1102 11:49:14889 :: µµÀÚ±âÂø»ö¿ëÀ¯Ÿà(#30108) cannot find icon file. setting to default.
1102 11:49:14889 ::    »çž·ÀÇ °Å¹ÌÁÙ(#30109) cannot find icon file. setting to default.
1102 11:49:14889 ::    ÈÄŸÈŒÒÀÇ ÆíÁö(#30110) cannot find icon file. setting to default.
1102 11:49:14889 ::  ÅåœîŽÂ Àü°¥²¿ž®(#30111) cannot find icon file. setting to default.
1102 11:49:14890 ::             ÀåŸî(#30112) cannot find icon file. setting to default.
1102 11:49:14890 ::        ¹Ð±³ °æÀü(#30113) cannot find icon file. setting to default.
1102 11:49:14890 ::      ±«Áú Ä¡·áÁŠ(#30115) cannot find icon file. setting to default.
1102 11:49:14890 ::    Çà»óÀÎÀÇ ÆíÁö(#30117) cannot find icon file. setting to default.
1102 11:49:14890 ::    »ç±ÍÀÇ ºžŒ®ÇÔ(#30118) cannot find icon file. setting to default.
1102 11:49:14898 ::      VIP-Feature(#38001) cannot find icon file. setting to default.
1102 11:49:14898 :: Tombola_ticket_today(#38002) cannot find icon file. setting to default.
1102 11:49:14898 :: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default.
1102 11:49:14898 ::   Tombola_reroll(#38004) cannot find icon file. setting to default.
1102 11:49:14898 ::   TombolaPP_spin(#38005) cannot find icon file. setting to default.
1102 11:49:14898 ::      Momo-Reroll(#38006) cannot find icon file. setting to default.
1102 11:49:14898 ::    Char-Transfer(#38012) cannot find icon file. setting to default.
1102 11:49:14899 ::      Char-Rename(#38013) cannot find icon file. setting to default.
1102 11:49:14899 ::        Auto-Hunt(#38014) cannot find icon file. setting to default.
1102 11:49:14899 ::    ŒÒž®³ªŽÂ ¹æ¿ï(#40005) cannot find icon file. setting to default.
1102 11:49:14899 ::    ¿À¶ûij ŒöŒÛŒ­(#40006) cannot find icon file. setting to default.
1102 11:49:14900 :: ¿À¶ûij ºžœº ÆíÁö(#40007) cannot find icon file. setting to default.
1102 11:49:14900 ::   ºó ¹«±â ÄÚœºÆ¬(#41000) cannot find icon file. setting to default.
1102 11:49:14903 ::       Œ±¹°ºžµûž®(#50041) cannot find icon file. setting to default.
1102 11:49:14903 ::       œÂž¶Œö·ÃŒ­(#50062) cannot find icon file. setting to default.
1102 11:49:14903 ::     ¿ë°¢ºž¹°»óÀÚ(#50118) cannot find icon file. setting to default.
1102 11:49:14904 ::       ¿µŒ®ºžµûž®(#50119) cannot find icon file. setting to default.
1102 11:49:14906 ::         Œ®Ã¢Æ÷Ÿ×(#50805) cannot find icon file. setting to default.
1102 11:49:14906 ::       ¿µÁö¹öŒžŸ×(#50806) cannot find icon file. setting to default.
1102 11:49:14906 ::         žžºŽÃÊŸ×(#50807) cannot find icon file. setting to default.
1102 11:49:14906 ::       »ê»Í³ª¹«Ÿ×(#50808) cannot find icon file. setting to default.
1102 11:49:14906 ::         ¹Îµé·¹Ÿ×(#50809) cannot find icon file. setting to default.
1102 11:49:14907 ::         È«È­ŸŸŸ×(#50810) cannot find icon file. setting to default.
1102 11:49:14907 ::           ŽëÃߟ×(#50811) cannot find icon file. setting to default.
1102 11:49:14907 ::     »ïÁö±ž¿±ÃÊŸ×(#50812) cannot find icon file. setting to default.
1102 11:49:14907 ::           ºóŸàºŽ(#50901) cannot find icon file. setting to default.
1102 11:49:14908 ::    È°œÉŸ× ÁŠÁ¶¹ý(#50905) cannot find icon file. setting to default.
1102 11:49:14908 ::    Çǵ¶Œö ÁŠÁ¶¹ý(#50906) cannot find icon file. setting to default.
1102 11:49:14908 ::    ºžÈ¯Œö ÁŠÁ¶¹ý(#50907) cannot find icon file. setting to default.
1102 11:49:14908 ::    ¿µºžŒö ÁŠÁ¶¹ý(#50908) cannot find icon file. setting to default.
1102 11:49:14908 ::    ÁøÇǵ¶ ÁŠÁ¶¹ý(#50909) cannot find icon file. setting to default.
1102 11:49:14908 ::    È°œÉŸ× ÁŠÁ¶¹ý(#50910) cannot find icon file. setting to default.
1102 11:49:14911 :: ŸÆ±âÀü°©»çÀÚŒÒȯÆÐ(#55707) cannot find icon file. setting to default.
1102 11:49:14911 :: ŸÆ±âÀü°©»çÀÚŒÒȯÆÐ(#55708) cannot find icon file. setting to default.
1102 11:49:14912 :: ŸÆ±âÀü°©»çÀÚŒÒȯÆÐ(#55709) cannot find icon file. setting to default.
1102 11:49:14912 :: ŸÆ±âÀü°©»çÀÚŒÒȯÆÐ(#55710) cannot find icon file. setting to default.
1102 11:49:14912 ::             ºÒ°æ(#70103) cannot find icon file. setting to default.
1102 11:49:14913 ::      µ¿·á¿Í ÈžÆ÷(#71047) cannot find icon file. setting to default.
1102 11:49:14914 ::     Àü±€ÆǺžµûž®(#71091) cannot find icon file. setting to default.
1102 11:49:14916 ::       °æÇèÀǹÝÁö(#72303) cannot find icon file. setting to default.
1102 11:49:14916 ::      ÃູÀÇ ±žœœ(#72304) cannot find icon file. setting to default.
1102 11:49:14916 ::    Ÿß°øÀÇ ºñÀüŒ­(#72309) cannot find icon file. setting to default.
1102 11:49:14916 ::         ÁÖŸÈŒúŒ­(#72310) cannot find icon file. setting to default.
1102 11:49:14917 ::        ¿ëœÅÀÇ È¯(#72311) cannot find icon file. setting to default.
1102 11:49:14917 ::      ¿ëœÅÀÇ °ø°Ý(#72312) cannot find icon file. setting to default.
1102 11:49:14917 ::      ¿ëœÅÀÇ ¹æŸî(#72313) cannot find icon file. setting to default.
1102 11:49:14917 ::    ¿ëœÅÀÇ ÃູŒ­(#72314) cannot find icon file. setting to default.
1102 11:49:14919 ::         µ·ÁÖžÓŽÏ(#80001) cannot find icon file. setting to default.
1102 11:49:14920 ::             ¹éÁö(#80002) cannot find icon file. setting to default.
1102 11:49:15602 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/dust.mss]
1102 11:49:15605 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dust/running_dust.mss]
1102 11:49:15617 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_red.mss]
1102 11:49:15622 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_blue.mss]
1102 11:49:15626 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_green.mss]
1102 11:49:15629 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/drugup_purple.mss]
1102 11:49:15633 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_red.mss]
1102 11:49:15637 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/recuperation/autodrugup_blue.mss]
1102 11:49:15645 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item1.mss]
1102 11:49:15662 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item2.mss]
1102 11:49:15672 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item3.mss]
1102 11:49:15681 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item4.mss]
1102 11:49:15691 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item6.mss]
1102 11:49:15701 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/buff/buff_item7.mss]
1102 11:49:15711 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/gwantong.mss]
1102 11:49:15771 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_select.mss]
1102 11:49:15775 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click_glow_select.mss]
1102 11:49:15780 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun.mss]
1102 11:49:15783 :: CANNOT_FIND_PACK_FILE [sound/effect/world/shinsoo_select.mss]
1102 11:49:15785 :: CANNOT_FIND_PACK_FILE [sound/effect/world/shinsoo_glow_select.mss]
1102 11:49:15787 :: CANNOT_FIND_PACK_FILE [sound/effect/world/chunjo_select.mss]
1102 11:49:15789 :: CANNOT_FIND_PACK_FILE [sound/effect/world/chunjo_glow_select.mss]
1102 11:49:15790 :: CANNOT_FIND_PACK_FILE [sound/effect/world/jinnos_select.mss]
1102 11:49:15791 :: CANNOT_FIND_PACK_FILE [sound/effect/world/jinnos_glow_select.mss]
1102 11:49:15792 :: CANNOT_FIND_PACK_FILE [sound/effect/world/mob_select.mss]
1102 11:49:15794 :: CANNOT_FIND_PACK_FILE [sound/effect/world/mob_glow_select.mss]
1102 11:49:15813 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/click/click.mss]
1102 11:49:15818 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target.mss]
1102 11:49:15820 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
1102 11:49:15820 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/nontarget.mss]
1102 11:49:15820 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg]
1102 11:49:15822 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage.mss]
1102 11:49:15824 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/damage_1.mss]
1102 11:49:15826 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg
1102 11:49:15826 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/poison.mss]
1102 11:49:15826 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg]
1102 11:49:15829 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/miss.mss]
1102 11:49:15831 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/damagevalue/target_miss.mss]
1102 11:49:15854 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage1.mss]
1102 11:49:15863 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage2.mss]
1102 11:49:15871 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/percent_damage3.mss]
1102 11:49:15909 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/wait.mss]
1102 11:49:15918 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/intro/not_selected.mss]
1102 11:49:15963 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/wait.mss]
1102 11:49:15974 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/intro/not_selected.mss]
1102 11:49:16018 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/wait.mss]
1102 11:49:16027 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/intro/not_selected.mss]
1102 11:49:16069 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/wait.mss]
1102 11:49:16082 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/intro/not_selected.mss]
1102 11:49:16125 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/wait.mss]
1102 11:49:16140 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/intro/not_selected.mss]
1102 11:49:16185 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/wait.mss]
1102 11:49:16201 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/intro/not_selected.mss]
1102 11:49:16245 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/wait.mss]
1102 11:49:16257 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/intro/not_selected.mss]
1102 11:49:16301 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/wait.mss]
1102 11:49:16313 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/intro/not_selected.mss]
1102 11:49:16322 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/intro/wait.mss]
1102 11:49:16333 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/intro/not_selected.mss]
1102 11:49:16387 :: Hair number 1 is not exist.
1102 11:49:16394 :: Hair number 1 is not exist.
1102 11:49:16395 :: Hair number 1 is not exist.
1102 11:49:23321 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/fall/fall_7.mss]
1102 11:50:24040 :: CANNOT_FIND_PACK_FILE [sound/effect/background/fire_general_obj_charcoal.mss]
1102 11:50:24090 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/°ø¿ë/hay_01.gr2
1102 11:50:24090 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/°ø¿ë/hay_01.gr2]
1102 11:50:24090 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
1102 11:50:24090 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
1102 11:50:24090 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
1102 11:50:24090 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
1102 11:50:24095 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr
1102 11:50:24095 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr]
1102 11:50:24349 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_appear.mss]
1102 11:50:24353 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/appear_die/monster_die.mss]
1102 11:50:24371 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_weapon.mss]
1102 11:50:24378 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_blow.mss]
1102 11:50:24385 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_electric/light_1_body.mss]
1102 11:50:24401 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_a.mss]
1102 11:50:24403 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_b.mss]
1102 11:50:24405 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/empire/empire_c.mss]
1102 11:50:24411 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_loop.mss]
1102 11:50:24418 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_spear_loop.mss]
1102 11:50:24424 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_poison/poison_loop.mss]
1102 11:50:24429 :: CANNOT_FIND_PACK_FILE [sound/effect/affect/slow.mss]
1102 11:50:24435 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/stun/stun_loop.mss]
1102 11:50:24437 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/ready/ready.mss]
1102 11:50:24443 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang_loop.mss]
1102 11:50:24452 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_loop.mss]
1102 11:50:24458 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_loop.mss]
1102 11:50:24466 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_loop.mss]
1102 11:50:24471 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_loop.mss]
1102 11:50:24477 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_loop.mss]
1102 11:50:24484 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_loop.mss]
1102 11:50:24491 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_loop.mss]
1102 11:50:24502 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/heuksin_loop.mss]
1102 11:50:24510 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_loop.mss]
1102 11:50:24513 :: CANNOT_FIND_PACK_FILE [sound/effect/hit/blow_flame/flame_loop.mss]
1102 11:50:24519 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_hand.mss]
1102 11:50:24525 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_hand.mss]
1102 11:50:24529 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeop_loop.mss]
1102 11:50:24530 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_red.mss]
1102 11:50:24531 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_blue.mss]
1102 11:50:24532 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/guild_war_flag/flag_yellow.mss]
1102 11:50:24534 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7.mss]
1102 11:50:24538 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8.mss]
1102 11:50:24542 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9.mss]
1102 11:50:24546 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_b.mss]
1102 11:50:24553 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_b.mss]
1102 11:50:24560 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_b.mss]
1102 11:50:24563 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_f.mss]
1102 11:50:24566 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_f.mss]
1102 11:50:24570 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_f.mss]
1102 11:50:24573 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_7_s.mss]
1102 11:50:24576 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_8_s.mss]
1102 11:50:24580 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/sword/sword_9_s.mss]
1102 11:50:24582 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_7.mss]
1102 11:50:24586 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_8.mss]
1102 11:50:24589 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor_9.mss]
1102 11:50:24592 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-1.mss]
1102 11:50:24594 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/armor/armor-4-2-2.mss]
1102 11:50:24598 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_yellow.mss]
1102 11:50:24600 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_yellow2.mss]
1102 11:50:24605 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_red.mss]
1102 11:50:24611 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_red.mss]
1102 11:50:24616 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center.mss]
1102 11:50:24622 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_red.mss]
1102 11:50:24625 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue_warrior.mss]
1102 11:50:24629 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_center_small_blue.mss]
1102 11:50:24635 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_piece_blue.mss]
1102 11:50:24640 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/gathering/ga_spirit_blue.mss]
1102 11:50:24757 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_c.mss]
1102 11:50:24760 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_b.mss]
1102 11:50:24784 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeongfly.mss]
1102 11:50:24790 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sweat.mss]
1102 11:50:24794 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/money.mss]
1102 11:50:24799 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/happy.mss]
1102 11:50:24802 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_s.mss]
1102 11:50:24807 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/love_l.mss]
1102 11:50:24813 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/angry.mss]
1102 11:50:24820 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/aha.mss]
1102 11:50:24831 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/gloom.mss]
1102 11:50:24836 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/sorry.mss]
1102 11:50:24840 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/!_mix_back.mss]
1102 11:50:24843 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/question.mss]
1102 11:50:24849 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/emoticon/fish.mss]
1102 11:50:24851 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait.mss]
1102 11:50:24883 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/falling_stand.mss]
1102 11:50:24894 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/back_falling_stand.mss]
1102 11:50:24911 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/dig/dig.mss]
1102 11:50:24916 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/general/wait_1.mss]
1102 11:50:24938 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_d.mss]
1102 11:50:24952 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_sword.mss]
1102 11:50:24956 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_spin.mss]
1102 11:50:24974 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi.mss]
1102 11:50:24984 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom.mss]
1102 11:50:24988 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_sword_making.mss]
1102 11:50:24993 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom-badak.mss]
1102 11:50:25011 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan.mss]
1102 11:50:25021 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_spark.mss]
1102 11:50:25028 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_sword.mss]
1102 11:50:25043 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol.mss]
1102 11:50:25056 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_making.mss]
1102 11:50:25059 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_swing.mss]
1102 11:50:25086 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksantau_triple.mss]
1102 11:50:25103 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak.mss]
1102 11:50:25119 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeokgongjang.mss]
1102 11:50:25134 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_sword.mss]
1102 11:50:25150 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae.mss]
1102 11:50:25159 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_loop.mss]
1102 11:50:25175 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_2.mss]
1102 11:50:25185 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_sword.mss]
1102 11:50:25189 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_2_spin.mss]
1102 11:50:25203 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_2.mss]
1102 11:50:25209 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_sword_making.mss]
1102 11:50:25216 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_2_badak.mss]
1102 11:50:25229 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_2.mss]
1102 11:50:25236 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_2_spark.mss]
1102 11:50:25243 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_2_sword.mss]
1102 11:50:25259 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_2.mss]
1102 11:50:25267 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_making.mss]
1102 11:50:25272 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_2_swing.mss]
1102 11:50:25294 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_2.mss]
1102 11:50:25305 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_2.mss]
1102 11:50:25317 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_2.mss]
1102 11:50:25327 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_2_sword.mss]
1102 11:50:25343 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_2.mss]
1102 11:50:25352 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_loop_2.mss]
1102 11:50:25366 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_3.mss]
1102 11:50:25379 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_sword.mss]
1102 11:50:25386 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_3_spin.mss]
1102 11:50:25401 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_3.mss]
1102 11:50:25411 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_sword_making.mss]
1102 11:50:25421 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_3_badak.mss]
1102 11:50:25434 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_3.mss]
1102 11:50:25443 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_3_spark.mss]
1102 11:50:25452 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_3_sword.mss]
1102 11:50:25468 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_3.mss]
1102 11:50:25476 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_making.mss]
1102 11:50:25482 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_3_swing.mss]
1102 11:50:25505 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_3.mss]
1102 11:50:25517 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_3.mss]
1102 11:50:25532 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_3.mss]
1102 11:50:25543 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_3_sword.mss]
1102 11:50:25558 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_3.mss]
1102 11:50:25567 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_loop_3.mss]
1102 11:50:25580 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/samyeon_4.mss]
1102 11:50:25595 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_sword.mss]
1102 11:50:25605 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/palbang_4_spin.mss]
1102 11:50:25620 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/jeongwi_4.mss]
1102 11:50:25633 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_sword_making.mss]
1102 11:50:25644 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geom_4_badak.mss]
1102 11:50:25659 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/tanhwan_4.mss]
1102 11:50:25668 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_4_spark.mss]
1102 11:50:25677 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_4_sword.mss]
1102 11:50:25694 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gihyeol_4.mss]
1102 11:50:25705 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_making.mss]
1102 11:50:25712 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gigongcham_4_swing.mss]
1102 11:50:25736 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/gyeoksan_4.mss]
1102 11:50:25752 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/daejingak_4.mss]
1102 11:50:25770 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/cheongeun_4.mss]
1102 11:50:25782 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/geompung_4_sword.mss]
1102 11:50:25796 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_4.mss]
1102 11:50:25804 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/effect/noegeomdorae_loop_4.mss]
1102 11:50:25811 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg
1102 11:50:25812 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuipi_make.mss]
1102 11:50:25812 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuipi.mss]
1102 11:50:25823 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuichukbok_make.mss]
1102 11:50:25823 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuichukbok.mss]
1102 11:50:25828 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/seonghwigap_make.mss]
1102 11:50:25829 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_seonghwigap.mss]
1102 11:50:25834 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\assassin\effect\16-bottom.jpg
1102 11:50:25834 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/gasokhwa_make.mss]
1102 11:50:25835 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_gasokhwa.mss]
1102 11:50:25842 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/yongsinuibunno_make.mss]
1102 11:50:25843 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_yongsinuibunno.mss]
1102 11:50:25857 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam.jpg
1102 11:50:25858 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\w_ring.jpg
1102 11:50:25858 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\white_sphere.jpg
1102 11:50:25858 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\wind.jpg
1102 11:50:25859 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\W_star.jpg
1102 11:50:25859 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam_ring.jpg
1102 11:50:25859 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\gyeokgong_triple_loop_2.jpg
1102 11:50:25860 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\noe_w_ring.jpg
1102 11:50:25860 :: CANNOT_FIND_PACK_FILE [sound/guild/effect/jumunsul_make.mss]
1102 11:50:25861 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/skill/guild_jumunsul.mss]
1102 11:50:25863 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_1.mss]
1102 11:50:25864 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_2.mss]
1102 11:50:25864 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_3.mss]
1102 11:50:25864 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_4.mss]
1102 11:50:25865 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_5.mss]
1102 11:50:25865 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/dance_6.mss]
1102 11:50:25865 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/congratulation.mss]
1102 11:50:25866 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/forgive.mss]
1102 11:50:25866 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/angry.mss]
1102 11:50:25867 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/attractive.mss]
1102 11:50:25867 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/sad.mss]
1102 11:50:25868 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/shy.mss]
1102 11:50:25868 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/cheerup.mss]
1102 11:50:25869 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/banter.mss]
1102 11:50:25869 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/action/joy.mss]
1102 11:50:25878 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/wait.mss]
1102 11:50:25878 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/wedding/walk.mss]
1102 11:50:25879 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait.mss]
1102 11:50:25885 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/onehand_sword/wait_1.mss]
1102 11:50:25949 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait.mss]
1102 11:50:25954 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/twohand_sword/wait_1.mss]
1102 11:50:26027 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/wait.mss]
1102 11:50:26043 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_wait.mss]
1102 11:50:26051 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/fishing/fishing_react.mss]
1102 11:50:26067 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait.mss]
1102 11:50:26070 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_1.mss]
1102 11:50:26074 :: CANNOT_FIND_PACK_FILE [sound/pc/warrior/horse/wait_2.mss]
1102 11:50:26118 :: CANNOT_FIND_PACK_FILE [sound/pc/common/effect/horse_charge.mss]
1102 11:50:26188 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait.mss]
1102 11:50:26220 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/falling_stand.mss]
1102 11:50:26229 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/back_falling_stand.mss]
1102 11:50:26248 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/general/wait_1.mss]
1102 11:50:26414 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuipi.mss]
1102 11:50:26421 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuichukbok.mss]
1102 11:50:26422 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_seonghwigap.mss]
1102 11:50:26422 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_gasokhwa.mss]
1102 11:50:26423 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_yongsinuibunno.mss]
1102 11:50:26423 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/skill/guild_jumunsul.mss]
1102 11:50:26425 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_1.mss]
1102 11:50:26426 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_2.mss]
1102 11:50:26426 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_3.mss]
1102 11:50:26427 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_4.mss]
1102 11:50:26427 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_5.mss]
1102 11:50:26428 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/dance_6.mss]
1102 11:50:26428 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/congratulation.mss]
1102 11:50:26429 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/forgive.mss]
1102 11:50:26429 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/angry.mss]
1102 11:50:26430 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/attractive.mss]
1102 11:50:26430 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/sad.mss]
1102 11:50:26430 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/shy.mss]
1102 11:50:26431 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/cheerup.mss]
1102 11:50:26431 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/banter.mss]
1102 11:50:26432 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/action/joy.mss]
1102 11:50:26439 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/wait.mss]
1102 11:50:26440 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/wedding/walk.mss]
1102 11:50:26440 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait.mss]
1102 11:50:26446 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/onehand_sword/wait_1.mss]
1102 11:50:26516 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait.mss]
1102 11:50:26520 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/twohand_sword/wait_1.mss]
1102 11:50:26594 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/wait.mss]
1102 11:50:26612 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_wait.mss]
1102 11:50:26622 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/fishing/fishing_react.mss]
1102 11:50:26641 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait.mss]
1102 11:50:26644 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_1.mss]
1102 11:50:26648 :: CANNOT_FIND_PACK_FILE [sound/pc2/warrior/horse/wait_2.mss]
1102 11:50:26728 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/wait.mss]
1102 11:50:26761 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/falling_stand.mss]
1102 11:50:26770 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/back_falling_stand.mss]
1102 11:50:26787 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/general/wait_1.mss]
1102 11:50:26811 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup.mss]
1102 11:50:26814 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_fallow.mss]
1102 11:50:26820 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_blow.mss]
1102 11:50:26829 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_start.mss]
1102 11:50:26833 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_end.mss]
1102 11:50:26839 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_blow.mss]
1102 11:50:26854 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal.mss]
1102 11:50:26858 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_foot.mss]
1102 11:50:26868 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop.mss]
1102 11:50:26877 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/poison.mss]
1102 11:50:26878 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/sangong.mss]
1102 11:50:26888 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_start.mss]
1102 11:50:26891 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_end.mss]
1102 11:50:26901 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_blow.mss]
1102 11:50:26908 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_hand.mss]
1102 11:50:26919 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_energy.mss]
1102 11:50:26924 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_arrowenergy.mss]
1102 11:50:26937 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_energy.mss]
1102 11:50:26941 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_arrowenergy.mss]
1102 11:50:26950 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_start.mss]
1102 11:50:26959 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_arrowenergy.mss]
1102 11:50:26959 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/dokgigung.mss]
1102 11:50:26965 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_hand.mss]
1102 11:50:26973 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_blow.mss]
1102 11:50:26985 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2.mss]
1102 11:50:26987 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2_fallow.mss]
1102 11:50:26995 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_2_blow.mss]
1102 11:50:27000 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_start.mss]
1102 11:50:27004 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_end.mss]
1102 11:50:27011 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_2_blow.mss]
1102 11:50:27023 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_2.mss]
1102 11:50:27030 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_2_foot.mss]
1102 11:50:27038 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_2.mss]
1102 11:50:27046 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_2.mss]
1102 11:50:27053 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_start_2.mss]
1102 11:50:27057 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_end_2.mss]
1102 11:50:27067 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_blow_2.mss]
1102 11:50:27074 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_hand_2.mss]
1102 11:50:27084 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_2_energy.mss]
1102 11:50:27091 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_2_arrowenergy.mss]
1102 11:50:27100 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_2_energy.mss]
1102 11:50:27103 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_2_arrowenergy.mss]
1102 11:50:27106 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_2_start.mss]
1102 11:50:27113 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_2_arrowenergy.mss]
1102 11:50:27119 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_hand_2.mss]
1102 11:50:27128 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_blow_2.mss]
1102 11:50:27140 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3.mss]
1102 11:50:27144 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3_fallow.mss]
1102 11:50:27154 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_3_blow.mss]
1102 11:50:27163 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_3_start.mss]
1102 11:50:27173 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_3_blow.mss]
1102 11:50:27187 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_3.mss]
1102 11:50:27194 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_3_foot.mss]
1102 11:50:27205 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_3.mss]
1102 11:50:27216 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_3.mss]
1102 11:50:27224 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_start_3.mss]
1102 11:50:27228 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_end_3.mss]
1102 11:50:27240 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_blow_3.mss]
1102 11:50:27247 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_hand_3.mss]
1102 11:50:27259 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_3_energy.mss]
1102 11:50:27267 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_3_arrowenergy.mss]
1102 11:50:27277 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_3_energy.mss]
1102 11:50:27284 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_3_arrowenergy.mss]
1102 11:50:27289 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_3_start.mss]
1102 11:50:27296 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_3_arrowenergy.mss]
1102 11:50:27302 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_hand_3.mss]
1102 11:50:27310 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_blow_3.mss]
1102 11:50:27323 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4.mss]
1102 11:50:27327 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4_fallow.mss]
1102 11:50:27337 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/amseup_4_blow.mss]
1102 11:50:27346 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_start.mss]
1102 11:50:27353 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_end.mss]
1102 11:50:27362 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gungsintanyeong_4_blow.mss]
1102 11:50:27378 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_4.mss]
1102 11:50:27386 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/charyunsal_4_foot.mss]
1102 11:50:27397 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/eunhyeongbeop_4.mss]
1102 11:50:27409 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/dokgigung_4.mss]
1102 11:50:27416 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_start_4.mss]
1102 11:50:27419 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_end_4.mss]
1102 11:50:27429 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_blow_4.mss]
1102 11:50:27437 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/seomjeom_hand_4.mss]
1102 11:50:27449 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_4_energy.mss]
1102 11:50:27459 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gwangyeoksul_4_arrowenergy.mss]
1102 11:50:27471 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_4_energy.mss]
1102 11:50:27479 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/hwajopa_4_arrowenergy.mss]
1102 11:50:27485 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/gyeonggong_4_start.mss]
1102 11:50:27496 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/yeonsa_4_arrowenergy.mss]
1102 11:50:27503 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_hand_4.mss]
1102 11:50:27513 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/taeyang_blow_4.mss]
1102 11:50:27515 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuipi.mss]
1102 11:50:27519 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuichukbok.mss]
1102 11:50:27520 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_seonghwigap.mss]
1102 11:50:27520 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_gasokhwa.mss]
1102 11:50:27521 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_yongsinuibunno.mss]
1102 11:50:27522 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/skill/guild_jumunsul.mss]
1102 11:50:27523 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_1.mss]
1102 11:50:27524 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_2.mss]
1102 11:50:27524 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_3.mss]
1102 11:50:27524 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_4.mss]
1102 11:50:27525 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_5.mss]
1102 11:50:27525 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/dance_6.mss]
1102 11:50:27526 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/congratulation.mss]
1102 11:50:27526 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/forgive.mss]
1102 11:50:27527 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/angry.mss]
1102 11:50:27527 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/attractive.mss]
1102 11:50:27528 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/sad.mss]
1102 11:50:27529 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/shy.mss]
1102 11:50:27529 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/cheerup.mss]
1102 11:50:27530 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/banter.mss]
1102 11:50:27530 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/joy.mss]
1102 11:50:27533 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/kiss_with_assassin.mss]
1102 11:50:27534 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/kiss_with_shaman.mss]
1102 11:50:27535 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/french_kiss_with_assassin.mss]
1102 11:50:27536 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/action/french_kiss_with_shaman.mss]
1102 11:50:27537 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/wedding/wait.mss]
1102 11:50:27538 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/wedding/walk.mss]
1102 11:50:27538 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/onehand_sword/wait.mss]
1102 11:50:27541 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/onehand_sword/wait_1.mss]
1102 11:50:27611 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/dualhand_sword/wait.mss]
1102 11:50:27614 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/dualhand_sword/wait_1.mss]
1102 11:50:27691 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/wait.mss]
1102 11:50:27694 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/wait_1.mss]
1102 11:50:27701 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/bow/walk.mss]
1102 11:50:27728 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/wait.mss]
1102 11:50:27744 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/fishing_wait.mss]
1102 11:50:27752 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/fishing/fishing_react.mss]
1102 11:50:27766 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait.mss]
1102 11:50:27769 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait_1.mss]
1102 11:50:27774 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse/wait_2.mss]
1102 11:50:27843 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/horse_onehand_sword_splash.mss]
1102 11:50:27879 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/effect/horse_onehand_sword_splash_making.mss]
1102 11:50:27880 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait.mss]
1102 11:50:27883 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait_1.mss]
1102 11:50:27887 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/wait_2.mss]
1102 11:50:27893 :: CANNOT_FIND_PACK_FILE [sound/pc/assassin/horse_bow/run.mss]
1102 11:50:27916 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/wait.mss]
1102 11:50:27945 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/falling_stand.mss]
1102 11:50:27954 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/back_falling_stand.mss]
1102 11:50:27976 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/general/wait_1.mss]
1102 11:50:28101 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuipi.mss]
1102 11:50:28105 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuichukbok.mss]
1102 11:50:28106 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_seonghwigap.mss]
1102 11:50:28106 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_gasokhwa.mss]
1102 11:50:28107 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_yongsinuibunno.mss]
1102 11:50:28108 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/skill/guild_jumunsul.mss]
1102 11:50:28109 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/slap_hurt.mss]
1102 11:50:28109 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_1.mss]
1102 11:50:28110 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_2.mss]
1102 11:50:28110 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_3.mss]
1102 11:50:28110 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_4.mss]
1102 11:50:28111 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_5.mss]
1102 11:50:28111 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/dance_6.mss]
1102 11:50:28112 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/congratulation.mss]
1102 11:50:28112 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/forgive.mss]
1102 11:50:28113 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/angry.mss]
1102 11:50:28113 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/attractive.mss]
1102 11:50:28114 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/sad.mss]
1102 11:50:28114 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/shy.mss]
1102 11:50:28115 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/cheerup.mss]
1102 11:50:28115 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/banter.mss]
1102 11:50:28115 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/action/joy.mss]
1102 11:50:28124 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/wedding/wait.mss]
1102 11:50:28124 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/wedding/walk.mss]
1102 11:50:28124 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/onehand_sword/wait.mss]
1102 11:50:28128 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/onehand_sword/wait_1.mss]
1102 11:50:28193 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/dualhand_sword/wait.mss]
1102 11:50:28197 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/dualhand_sword/wait_1.mss]
1102 11:50:28263 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/wait.mss]
1102 11:50:28267 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/wait_1.mss]
1102 11:50:28273 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/bow/walk.mss]
1102 11:50:28300 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/wait.mss]
1102 11:50:28315 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/fishing_wait.mss]
1102 11:50:28326 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/fishing/fishing_react.mss]
1102 11:50:28339 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait.mss]
1102 11:50:28342 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait_1.mss]
1102 11:50:28347 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse/wait_2.mss]
1102 11:50:28436 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait.mss]
1102 11:50:28439 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait_1.mss]
1102 11:50:28443 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/wait_2.mss]
1102 11:50:28450 :: CANNOT_FIND_PACK_FILE [sound/pc2/assassin/horse_bow/run.mss]
1102 11:50:28477 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/wait.mss]
1102 11:50:28512 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/falling_stand.mss]
1102 11:50:28522 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/general/back_falling_stand.mss]
1102 11:50:28578 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa.mss]
1102 11:50:28589 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom.mss]
1102 11:50:28594 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_make.mss]
1102 11:50:28610 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_making.mss]
1102 11:50:28628 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap.mss]
1102 11:50:28646 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_making.mss]
1102 11:50:28659 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_making.mss]
1102 11:50:28674 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom.mss]
1102 11:50:28693 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_make.mss]
1102 11:50:28707 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_making.mss]
1102 11:50:28710 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_fallow.mss]
1102 11:50:28715 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand.mss]
1102 11:50:28716 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/mahwan.mss]
1102 11:50:28731 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_2.mss]
1102 11:50:28744 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_2.mss]
1102 11:50:28752 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_2.mss]
1102 11:50:28763 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_2_making.mss]
1102 11:50:28775 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_2_making.mss]
1102 11:50:28786 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_2_making.mss]
1102 11:50:28795 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_2_making.mss]
1102 11:50:28812 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_2.mss]
1102 11:50:28827 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_2_making.mss]
1102 11:50:28835 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_2_making.mss]
1102 11:50:28838 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_2_fallow.mss]
1102 11:50:28843 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_2.mss]
1102 11:50:28858 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_3.mss]
1102 11:50:28871 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_3.mss]
1102 11:50:28880 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_3.mss]
1102 11:50:28897 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_3_making.mss]
1102 11:50:28913 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_4_making.mss]
1102 11:50:28925 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_3_making.mss]
1102 11:50:28934 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_3_making.mss]
1102 11:50:28953 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_3.mss]
1102 11:50:28972 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_3_making.mss]
1102 11:50:28982 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_3_making.mss]
1102 11:50:28986 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_3_fallow.mss]
1102 11:50:28993 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_3.mss]
1102 11:50:29007 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/swaeryeong_4.mss]
1102 11:50:29025 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/yonggwonpa_4.mss]
1102 11:50:29040 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/gwigeom_4.mss]
1102 11:50:29061 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/fear_4_making.mss]
1102 11:50:29077 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/jumagap_3_making.mss]
1102 11:50:29088 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/pabeopsul_4_making.mss]
1102 11:50:29100 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/maryeong_4_making.mss]
1102 11:50:29127 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/hwayeom_4.mss]
1102 11:50:29146 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/muyeong_4_making.mss]
1102 11:50:29156 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/tusok_4_making.mss]
1102 11:50:29160 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_4_fallow.mss]
1102 11:50:29167 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/geomhwagyeokhand_4.mss]
1102 11:50:29168 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuipi.mss]
1102 11:50:29169 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuichukbok.mss]
1102 11:50:29169 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_seonghwigap.mss]
1102 11:50:29170 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_gasokhwa.mss]
1102 11:50:29170 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_yongsinuibunno.mss]
1102 11:50:29171 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/skill/guild_jumunsul.mss]
1102 11:50:29173 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_1.mss]
1102 11:50:29173 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_2.mss]
1102 11:50:29173 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_3.mss]
1102 11:50:29174 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_4.mss]
1102 11:50:29174 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_5.mss]
1102 11:50:29175 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/dance_6.mss]
1102 11:50:29175 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/congratulation.mss]
1102 11:50:29175 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/forgive.mss]
1102 11:50:29176 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/angry.mss]
1102 11:50:29176 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/attractive.mss]
1102 11:50:29177 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/sad.mss]
1102 11:50:29177 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/shy.mss]
1102 11:50:29177 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/cheerup.mss]
1102 11:50:29178 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/banter.mss]
1102 11:50:29178 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/joy.mss]
1102 11:50:29180 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/kiss_with_warrior.mss]
1102 11:50:29181 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/kiss_with_sura.mss]
1102 11:50:29182 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/french_kiss_with_warrior.mss]
1102 11:50:29183 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/action/french_kiss_with_sura.mss]
1102 11:50:29185 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/wedding/wait.mss]
1102 11:50:29186 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/wedding/walk.mss]
1102 11:50:29186 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/onehand_sword/wait.mss]
1102 11:50:29255 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/wait.mss]
1102 11:50:29275 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/fishing_wait.mss]
1102 11:50:29284 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/fishing/fishing_react.mss]
1102 11:50:29305 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait.mss]
1102 11:50:29308 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait_1.mss]
1102 11:50:29313 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/horse/wait_2.mss]
1102 11:50:29353 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/horse_onehand_sword_splash_energy.mss]
1102 11:50:29363 :: CANNOT_FIND_PACK_FILE [sound/pc/sura/effect/horse_onehand_sword_splash_blow.mss]
1102 11:50:29398 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/wait.mss]
1102 11:50:29437 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/falling_stand.mss]
1102 11:50:29448 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/general/back_falling_stand.mss]
1102 11:50:29581 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuipi.mss]
1102 11:50:29582 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuichukbok.mss]
1102 11:50:29582 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_seonghwigap.mss]
1102 11:50:29583 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_gasokhwa.mss]
1102 11:50:29583 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_yongsinuibunno.mss]
1102 11:50:29584 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/skill/guild_jumunsul.mss]
1102 11:50:29585 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/slap_hurt.mss]
1102 11:50:29586 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_1.mss]
1102 11:50:29586 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_2.mss]
1102 11:50:29586 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_3.mss]
1102 11:50:29587 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_4.mss]
1102 11:50:29587 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_5.mss]
1102 11:50:29588 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/dance_6.mss]
1102 11:50:29588 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/congratulation.mss]
1102 11:50:29588 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/forgive.mss]
1102 11:50:29589 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/angry.mss]
1102 11:50:29589 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/attractive.mss]
1102 11:50:29589 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/sad.mss]
1102 11:50:29590 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/shy.mss]
1102 11:50:29590 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/cheerup.mss]
1102 11:50:29591 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/banter.mss]
1102 11:50:29591 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/action/joy.mss]
1102 11:50:29599 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/wedding/wait.mss]
1102 11:50:29600 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/wedding/walk.mss]
1102 11:50:29600 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/onehand_sword/wait.mss]
1102 11:50:29675 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/wait.mss]
1102 11:50:29697 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/fishing_wait.mss]
1102 11:50:29709 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/fishing/fishing_react.mss]
1102 11:50:29729 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait.mss]
1102 11:50:29734 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait_1.mss]
1102 11:50:29741 :: CANNOT_FIND_PACK_FILE [sound/pc2/sura/horse/wait_2.mss]
1102 11:50:29803 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/wait.mss]
1102 11:50:29836 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/falling_stand.mss]
1102 11:50:29847 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/general/back_falling_stand.mss]
1102 11:50:29880 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_1.mss]
1102 11:50:29880 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_2.mss]
1102 11:50:29881 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_3.mss]
1102 11:50:29881 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_4.mss]
1102 11:50:29882 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_5.mss]
1102 11:50:29882 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/dance_6.mss]
1102 11:50:29882 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/congratulation.mss]
1102 11:50:29883 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/forgive.mss]
1102 11:50:29883 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/angry.mss]
1102 11:50:29883 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/attractive.mss]
1102 11:50:29884 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/sad.mss]
1102 11:50:29884 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/shy.mss]
1102 11:50:29885 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/cheerup.mss]
1102 11:50:29885 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/banter.mss]
1102 11:50:29885 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/joy.mss]
1102 11:50:29888 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/kiss_with_assassin.mss]
1102 11:50:29889 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/kiss_with_shaman.mss]
1102 11:50:29890 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/french_kiss_with_assassin.mss]
1102 11:50:29891 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/action/french_kiss_with_shaman.mss]
1102 11:50:29893 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/wedding/wait.mss]
1102 11:50:29894 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/wedding/walk.mss]
1102 11:50:29894 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fan/wait.mss]
1102 11:50:29969 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/bell/wait.mss]
1102 11:50:30050 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/1bipamaking.mss]
1102 11:50:30064 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_a.mss]
1102 11:50:30070 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noegem_boom.mss]
1102 11:50:30087 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong.mss]
1102 11:50:30100 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_making.mss]
1102 11:50:30112 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_making.mss]
1102 11:50:30124 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_making.mss]
1102 11:50:30135 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_making.mss]
1102 11:50:30152 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_a.mss]
1102 11:50:30158 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/2jeongeop_making.mss]
1102 11:50:30162 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_making.mss]
1102 11:50:30167 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_making.mss]
1102 11:50:30175 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_2_making.mss]
1102 11:50:30184 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_2_head.mss]
1102 11:50:30203 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_2.mss]
1102 11:50:30217 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_2_making.mss]
1102 11:50:30234 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_2_making.mss]
1102 11:50:30248 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_3_making.mss]
1102 11:50:30257 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_3_head.mss]
1102 11:50:30284 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_3.mss]
1102 11:50:30301 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_3_making.mss]
1102 11:50:30318 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_3_making.mss]
1102 11:50:30334 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/bipabu_4_making.mss]
1102 11:50:30345 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/yongpa_4_head.mss]
1102 11:50:30381 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/paeryong_4.mss]
1102 11:50:30389 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/3hosin_making_4.mss]
1102 11:50:30394 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/boho_making_4.mss]
1102 11:50:30399 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/6gicheon_making_4.mss]
1102 11:50:30410 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/noejeon_4_making.mss]
1102 11:50:30427 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/pokroe_4_making.mss]
1102 11:50:30434 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/10kwaesok_making_4.mss]
1102 11:50:30438 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/effect/jeungryeok_making_4.mss]
1102 11:50:30439 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuipi.mss]
1102 11:50:30440 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuichukbok.mss]
1102 11:50:30440 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_seonghwigap.mss]
1102 11:50:30441 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_gasokhwa.mss]
1102 11:50:30441 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_yongsinuibunno.mss]
1102 11:50:30442 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/skill/guild_jumunsul.mss]
1102 11:50:30442 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/wait.mss]
1102 11:50:30461 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/fishing_wait.mss]
1102 11:50:30471 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/fishing/fishing_react.mss]
1102 11:50:30486 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait.mss]
1102 11:50:30489 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait_1.mss]
1102 11:50:30495 :: CANNOT_FIND_PACK_FILE [sound/pc/shaman/horse/wait_2.mss]
1102 11:50:30593 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/wait.mss]
1102 11:50:30627 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/falling_stand.mss]
1102 11:50:30636 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/general/back_falling_stand.mss]
1102 11:50:30669 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/slap_hurt.mss]
1102 11:50:30670 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_1.mss]
1102 11:50:30670 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_2.mss]
1102 11:50:30670 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_3.mss]
1102 11:50:30671 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_4.mss]
1102 11:50:30671 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_5.mss]
1102 11:50:30672 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/dance_6.mss]
1102 11:50:30672 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/congratulation.mss]
1102 11:50:30672 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/forgive.mss]
1102 11:50:30673 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/angry.mss]
1102 11:50:30673 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/attractive.mss]
1102 11:50:30674 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/sad.mss]
1102 11:50:30674 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/shy.mss]
1102 11:50:30674 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/cheerup.mss]
1102 11:50:30675 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/banter.mss]
1102 11:50:30675 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/action/joy.mss]
1102 11:50:30684 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/wedding/wait.mss]
1102 11:50:30685 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/wedding/walk.mss]
1102 11:50:30685 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fan/wait.mss]
1102 11:50:30760 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/bell/wait.mss]
1102 11:50:30902 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuipi.mss]
1102 11:50:30903 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuichukbok.mss]
1102 11:50:30903 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_seonghwigap.mss]
1102 11:50:30904 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_gasokhwa.mss]
1102 11:50:30904 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_yongsinuibunno.mss]
1102 11:50:30905 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/skill/guild_jumunsul.mss]
1102 11:50:30905 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/wait.mss]
1102 11:50:30926 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/fishing_wait.mss]
1102 11:50:30938 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/fishing/fishing_react.mss]
1102 11:50:30960 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait.mss]
1102 11:50:30963 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait_1.mss]
1102 11:50:30968 :: CANNOT_FIND_PACK_FILE [sound/pc2/shaman/horse/wait_2.mss]
1102 11:50:31062 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/general/wait.mss]
1102 11:50:31087 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/general/front_falling_standup.mss]
1102 11:50:31093 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/general/back_falling_standup.mss]
1102 11:50:31137 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_02.mss]
1102 11:50:31139 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_03.mss]
1102 11:50:31151 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_02.mss]
1102 11:50:31153 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_03.mss]
1102 11:50:31165 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_02.mss]
1102 11:50:31166 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_01.mss]
1102 11:50:31170 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_03.mss]
1102 11:50:31177 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/clu_throw_01.mss]
1102 11:50:31178 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/clu_throw_02.mss]
1102 11:50:31178 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/clu_throw_03.mss]
1102 11:50:31182 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/split_slash1.mss]
1102 11:50:31194 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_01.mss]
1102 11:50:31196 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_02.mss]
1102 11:50:31205 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_01.mss]
1102 11:50:31207 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_02.mss]
1102 11:50:31211 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_03.mss]
1102 11:50:31222 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_08.mss]
1102 11:50:31226 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_04.mss]
1102 11:50:31228 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_10.mss]
1102 11:50:31235 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_08.mss]
1102 11:50:31239 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_04.mss]
1102 11:50:31241 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_10.mss]
1102 11:50:31247 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_03_2.mss]
1102 11:50:31249 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_04.mss]
1102 11:50:31251 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_06.mss]
1102 11:50:31258 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/split_slash3.mss]
1102 11:50:31262 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_09.mss]
1102 11:50:31264 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_07.mss]
1102 11:50:31269 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_04.mss]
1102 11:50:31275 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_05.mss]
1102 11:50:31279 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_06.mss]
1102 11:50:31281 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_07.mss]
1102 11:50:31285 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_08.mss]
1102 11:50:31292 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_01.mss]
1102 11:50:31296 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/blue_possession_09.mss]
1102 11:50:31303 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_01.mss]
1102 11:50:31308 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/red_possession_09.mss]
1102 11:50:31313 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_08.mss]
1102 11:50:31314 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/reef_attack_07.mss]
1102 11:50:31320 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/split_slash5.mss]
1102 11:50:31324 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_04.mss]
1102 11:50:31326 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_03.mss]
1102 11:50:31328 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wind_death_05.mss]
1102 11:50:31334 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_09.mss]
1102 11:50:31338 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_11.mss]
1102 11:50:31342 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/wreckage_10.mss]
1102 11:50:31343 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/blue_possession_4.msa]
1102 11:50:31343 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/blue_possession_4.msa) ERROR
1102 11:50:31343 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/red_possession_4.msa]
1102 11:50:31343 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/red_possession_4.msa) ERROR
1102 11:50:31343 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/reef_attack_4.msa]
1102 11:50:31343 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/reef_attack_4.msa) ERROR
1102 11:50:31343 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/split_slash_4.msa]
1102 11:50:31343 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/split_slash_4.msa) ERROR
1102 11:50:31343 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/wind_death_4.msa]
1102 11:50:31343 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/wind_death_4.msa) ERROR
1102 11:50:31344 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/skill/wreckage_4.msa]
1102 11:50:31344 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/wreckage_4.msa) ERROR
1102 11:50:31344 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_yongsinuipi.mss]
1102 11:50:31345 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_yongsinuichukbok.mss]
1102 11:50:31345 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_seonghwigap.mss]
1102 11:50:31346 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_gasokhwa.mss]
1102 11:50:31347 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_yongsinuibunno.mss]
1102 11:50:31347 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/skill/guild_jumunsul.mss]
1102 11:50:31349 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_1.mss]
1102 11:50:31349 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_2.mss]
1102 11:50:31350 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_3.mss]
1102 11:50:31350 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_4.mss]
1102 11:50:31351 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_5.mss]
1102 11:50:31351 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/dance_6.mss]
1102 11:50:31352 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/congratulation.mss]
1102 11:50:31352 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/forgive.mss]
1102 11:50:31353 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/angry.mss]
1102 11:50:31353 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/attractive.mss]
1102 11:50:31354 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/sad.mss]
1102 11:50:31354 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/shy.mss]
1102 11:50:31354 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/cheerup.mss]
1102 11:50:31355 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/banter.mss]
1102 11:50:31355 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/action/joy.mss]
1102 11:50:31364 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/wedding/wait.mss]
1102 11:50:31364 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/wedding/walk.mss]
1102 11:50:31365 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/claw/wait.mss]
1102 11:50:31370 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/claw/wait1.mss]
1102 11:50:31445 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/fishing/wait.mss]
1102 11:50:31469 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/fishing/fishing_wait.mss]
1102 11:50:31483 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/fishing/fishing_react.mss]
1102 11:50:31504 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse/wait.mss]
1102 11:50:31509 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse/wait1.mss]
1102 11:50:31513 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse/wait2.mss]
1102 11:50:31520 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse/walk.mss]
1102 11:50:31523 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse/run.mss]
1102 11:50:31564 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/skill_wildattack_01.mss]
1102 11:50:31566 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/skill_wildattack_02.mss]
1102 11:50:31579 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/skill_splash_02.mss]
1102 11:50:31581 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/skill_splash.mss]
1102 11:50:31583 :: CANNOT_FIND_PACK_FILE [sound/pc3/common/effect/skill_splash_03.mss]
1102 11:50:31583 :: CANNOT_FIND_PACK_FILE [sound/pc3/wolfman/horse_claw/skill_splash.mss]
1102 11:50:31584 :: CResourceManager::GetResourcePointer: File not exist D:/Ymir Work/pc3/wolfman/horse/skill_splash.GR2
1102 11:50:31584 :: CANNOT_FIND_PACK_FILE [d:/ymir work/pc3/wolfman/horse/skill_splash.gr2]
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/blue_possession_4.msa) ERROR
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/red_possession_4.msa) ERROR
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/reef_attack_4.msa) ERROR
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/split_slash_4.msa) ERROR
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/wind_death_4.msa) ERROR
1102 11:50:31590 :: CRaceData::RegisterMotionData - LoadMotionData(c_szFileName=d:/ymir work/pc3/wolfman/skill/wreckage_4.msa) ERROR
1102 11:50:31795 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub
1102 11:50:31795 :: CANNOT_FIND_PACK_FILE [d:/ymir work/ui/game/quest/slot_button_01.sub]
1102 11:50:31975 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/00.sub
1102 11:50:31975 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/00.sub]
1102 11:50:31975 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/01.sub
1102 11:50:31975 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/01.sub]
1102 11:50:31975 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/02.sub
1102 11:50:31975 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/02.sub]
1102 11:50:31976 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/03.sub
1102 11:50:31976 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/03.sub]
1102 11:50:31976 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/04.sub
1102 11:50:31976 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/04.sub]
1102 11:50:31976 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/05.sub
1102 11:50:31976 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/05.sub]
1102 11:50:31976 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/06.sub
1102 11:50:31976 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/06.sub]
1102 11:50:31977 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/07.sub
1102 11:50:31977 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/07.sub]
1102 11:50:31977 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/08.sub
1102 11:50:31977 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/08.sub]
1102 11:50:31977 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/09.sub
1102 11:50:31977 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/09.sub]
1102 11:50:31977 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/11.sub
1102 11:50:31977 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/11.sub]
1102 11:50:31978 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/12.sub
1102 11:50:31978 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/12.sub]
1102 11:50:31978 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/13.sub
1102 11:50:31978 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/13.sub]
1102 11:50:31978 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/14.sub
1102 11:50:31979 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/14.sub]
1102 11:50:31979 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/15.sub
1102 11:50:31979 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/15.sub]
1102 11:50:31979 :: CResourceManager::GetResourcePointer: File not exist locale/en/ui/Mall/16.sub
1102 11:50:31979 :: CANNOT_FIND_PACK_FILE [locale/en/ui/mall/16.sub]
1102 11:50:33033 :: Hair number 1 is not exist.
1102 11:50:33037 :: CANNOT_FIND_PACK_FILE [sound/npc/blacksmith/die.mss]
1102 11:50:33037 :: CANNOT_FIND_PACK_FILE [sound/npc/blacksmith/run.mss]
1102 11:50:33038 :: CANNOT_FIND_PACK_FILE [sound/npc/blacksmith/wait.mss]
1102 11:50:33038 :: CANNOT_FIND_PACK_FILE [sound/npc/blacksmith/wait_2.mss]
1102 11:50:33059 :: CANNOT_FIND_PACK_FILE [sound/npc/oldster/die.mss]
1102 11:50:33060 :: CANNOT_FIND_PACK_FILE [sound/npc/oldster/run.mss]
1102 11:50:33060 :: CANNOT_FIND_PACK_FILE [sound/npc/oldster/wait.mss]
1102 11:50:33061 :: CANNOT_FIND_PACK_FILE [sound/npc/oldster/wait_1.mss]
1102 11:50:33062 :: CANNOT_FIND_PACK_FILE [sound/npc/oldster/walk.mss]
1102 11:50:33096 :: CANNOT_FIND_PACK_FILE [sound/npc/hotel_grandma/wait.mss]
1102 11:50:33107 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/00.mss]
1102 11:50:33107 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/00_1.mss]
1102 11:50:33108 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/02.mss]
1102 11:50:33108 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/03.mss]
1102 11:50:33109 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/20.mss]
1102 11:50:33109 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/20_1.mss]
1102 11:50:33109 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/30.mss]
1102 11:50:33110 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/30_1.mss]
1102 11:50:33110 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/31.mss]
1102 11:50:33111 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/32.mss]
1102 11:50:33111 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/33.mss]
1102 11:50:33111 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/34.mss]
1102 11:50:33112 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/34_1.mss]
1102 11:50:33112 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/35.mss]
1102 11:50:33113 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/36.mss]
1102 11:50:33113 :: CANNOT_FIND_PACK_FILE [sound/npc/jinno_patrol_spear/37.mss]
1102 11:50:33182 :: CANNOT_FIND_PACK_FILE [sound/npc2/scholar_beige_m/wait.mss]
1102 11:50:33183 :: CANNOT_FIND_PACK_FILE [sound/npc2/scholar_beige_m/wait1.mss]
1102 11:50:33183 :: CANNOT_FIND_PACK_FILE [sound/npc2/scholar_beige_m/walk.mss]
1102 11:50:33183 :: CANNOT_FIND_PACK_FILE [sound/npc2/scholar_beige_m/run.mss]
1102 11:50:33184 :: CANNOT_FIND_PACK_FILE [sound/npc2/scholar_beige_m/dead.mss]
1102 11:50:33228 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/00.mss]
1102 11:50:33229 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/00_1.mss]
1102 11:50:33229 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/02.mss]
1102 11:50:33230 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/03.mss]
1102 11:50:33230 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/20.mss]
1102 11:50:33231 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/20_1.mss]
1102 11:50:33231 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/30.mss]
1102 11:50:33232 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/30_1.mss]
1102 11:50:33232 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/31.mss]
1102 11:50:33232 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/32.mss]
1102 11:50:33233 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/33.mss]
1102 11:50:33233 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/34.mss]
1102 11:50:33234 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/34_1.mss]
1102 11:50:33234 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/35.mss]
1102 11:50:33235 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/36.mss]
1102 11:50:33235 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_spear/37.mss]
1102 11:50:33298 :: CANNOT_FIND_PACK_FILE [sound/npc/goods/wait.mss]
1102 11:50:33318 :: CANNOT_FIND_PACK_FILE [sound/npc/arms/wait.mss]
1102 11:50:33332 :: CANNOT_FIND_PACK_FILE [sound/npc/defence/wait.mss]
1102 11:50:33345 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/00.mss]
1102 11:50:33345 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/00_1.mss]
1102 11:50:33346 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/00_2.mss]
1102 11:50:33347 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/02.mss]
1102 11:50:33348 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/20.mss]
1102 11:50:33348 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/20_1.mss]
1102 11:50:33348 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/30.mss]
1102 11:50:33349 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/31.mss]
1102 11:50:33349 :: CANNOT_FIND_PACK_FILE [sound/npc/pony/25.mss]
1102 11:50:33389 :: CANNOT_FIND_PACK_FILE [sound/npc/plant_researcher/die.mss]
1102 11:50:33390 :: CANNOT_FIND_PACK_FILE [sound/npc/plant_researcher/run.mss]
1102 11:50:33390 :: CANNOT_FIND_PACK_FILE [sound/npc/plant_researcher/wait.mss]
1102 11:50:33391 :: CANNOT_FIND_PACK_FILE [sound/npc/plant_researcher/wait_1.mss]
1102 11:50:33391 :: CANNOT_FIND_PACK_FILE [sound/npc/plant_researcher/walk.mss]
1102 11:50:33419 :: CANNOT_FIND_PACK_FILE [sound/npc/mr_restaurant/die.mss]
1102 11:50:33419 :: CANNOT_FIND_PACK_FILE [sound/npc/mr_restaurant/run.mss]
1102 11:50:33420 :: CANNOT_FIND_PACK_FILE [sound/npc/mr_restaurant/wait.mss]
1102 11:50:33420 :: CANNOT_FIND_PACK_FILE [sound/npc/mr_restaurant/wait_2.mss]
1102 11:50:33420 :: CANNOT_FIND_PACK_FILE [sound/npc/mr_restaurant/walk.mss]
1102 11:50:33447 :: CANNOT_FIND_PACK_FILE [sound/inseon/stand00.mss]
1102 11:50:33460 :: CANNOT_FIND_PACK_FILE [sound/npc/doctor/die.mss]
1102 11:50:33460 :: CANNOT_FIND_PACK_FILE [sound/npc/doctor/run.mss]
1102 11:50:33461 :: CANNOT_FIND_PACK_FILE [sound/npc/doctor/wait.mss]
1102 11:50:33461 :: CANNOT_FIND_PACK_FILE [sound/npc/doctor/walk.mss]
1102 11:50:33482 :: CANNOT_FIND_PACK_FILE [sound/npc/beggar/die.mss]
1102 11:50:33483 :: CANNOT_FIND_PACK_FILE [sound/npc/beggar/run.mss]
1102 11:50:33483 :: CANNOT_FIND_PACK_FILE [sound/npc/beggar/wait.mss]
1102 11:50:33484 :: CANNOT_FIND_PACK_FILE [sound/npc/beggar/wait_1.mss]
1102 11:50:33484 :: CANNOT_FIND_PACK_FILE [sound/npc/beggar/walk.mss]
1102 11:50:33514 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/00.mss]
1102 11:50:33515 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/00_1.mss]
1102 11:50:33515 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/02.mss]
1102 11:50:33516 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/03.mss]
1102 11:50:33516 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/20.mss]
1102 11:50:33517 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/30.mss]
1102 11:50:33517 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/30_1.mss]
1102 11:50:33518 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/31.mss]
1102 11:50:33518 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/32.mss]
1102 11:50:33518 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/33.mss]
1102 11:50:33519 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/34.mss]
1102 11:50:33519 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/34_1.mss]
1102 11:50:33520 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/35.mss]
1102 11:50:33520 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/36.mss]
1102 11:50:33520 :: CANNOT_FIND_PACK_FILE [sound/npc/sinsu_patrol_bow/37.mss]
1102 11:50:33574 :: CANNOT_FIND_PACK_FILE [sound/npc/baby_and_mom/die.mss]
1102 11:50:33575 :: CANNOT_FIND_PACK_FILE [sound/npc/baby_and_mom/run.mss]
1102 11:50:33575 :: CANNOT_FIND_PACK_FILE [sound/npc/baby_and_mom/wait.mss]
1102 11:50:33575 :: CANNOT_FIND_PACK_FILE [sound/npc/baby_and_mom/walk.mss]
1102 11:50:33606 :: CANNOT_FIND_PACK_FILE [sound/npc/guard_leader/die.mss]
1102 11:50:33607 :: CANNOT_FIND_PACK_FILE [sound/npc/guard_leader/run.mss]
1102 11:50:33607 :: CANNOT_FIND_PACK_FILE [sound/npc/guard_leader/wait.mss]
1102 11:50:33607 :: CANNOT_FIND_PACK_FILE [sound/npc/guard_leader/wait_1.mss]
1102 11:50:33608 :: CANNOT_FIND_PACK_FILE [sound/npc/guard_leader/walk.mss]
1102 11:50:33711 :: Unknown Server Command SetTeamOffline xMei | SetTeamOffline
1102 11:50:33728 :: Unknown Server Command SetTeamOffline Ninja | SetTeamOffline
1102 11:50:33728 :: Unknown Server Command SetTeamOffline Thaia | SetTeamOffline
1102 11:50:33752 :: CANNOT_FIND_PACK_FILE [sound/effect/etc/direction/direction_land.mss]
1102 11:50:42599 :: Unknown Server Command SetTeamOffline xMei | SetTeamOffline
1102 11:50:42599 :: Unknown Server Command SetTeamOffline Ninja | SetTeamOffline
1102 11:50:42599 :: Unknown Server Command SetTeamOffline Thaia | SetTeamOffline
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x05689E10>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x05689D10>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C6F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C710>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C730>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C750>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C770>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C7B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C7D0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C7F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C850>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C870>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C8B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x0568C8D0>> ignored
Exception AttributeError: "'NoneType' object has no attribute '__del__'" in <bound method NumberLine.__del__ of <ui.NumberLine object at 0x0568C8F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x05689F50>> ignored
1102 11:50:50695 :: granny_shared_vbs:
1102 11:50:50695 ::     0: 40
1102 11:50:50695 ::     1: 20
1102 11:50:50695 ::     2: 20
1102 11:50:50695 ::     3: 40
1102 11:50:50696 ::     4: 2
1102 11:50:50696 ::     5: 20
1102 11:50:50696 ::     6: 0
1102 11:50:50696 ::     7: 0
1102 11:50:50696 ::     8: 0

 

Voici les lignes dans le log.txt qui apparaissent lorsque je bouge la souris sur les boutons "+"

 

1102 11:50:40256 :: PointWindow: Skill_Active_Slot
1102 11:50:40355 :: PointWindow: !!debug
1102 11:50:40421 :: PointWindow: !!debug
1102 11:50:40553 :: PointWindow: Skill_Active_Slot
1102 11:50:40569 :: PointWindow: !!debug
1102 11:50:40784 :: PointWindow: !!debug
1102 11:50:42383 :: PointWindow: !!debug
1102 11:50:42416 :: PointWindow: Skill_Active_Slot
1102 11:50:42434 :: PointWindow: !!debug

 

 

Modifié par Testuff
Merci pour le conseil :-)
Lien vers le commentaire
Partager sur d’autres sites

  • 0
  • Retraité

Hello

 

N'oublie pas de mettre ton sysser dans une balise code pour que ça soit plus lisible ^^

 

Édit: 

 

En effet ton sysser est très rempli x)

Tu devrais y mettre un peu d'ordre nottament en corrigeant toutes les erreurs liées au Wolfman.

 

Ça te corrigera bien des problèmes ^^

 

Lien vers le commentaire
Partager sur d’autres sites

  • 0

Voici le syserr de la version Release du client :

 

1104 16:38:09295 :: Hair number 1 is not exist.
1104 16:38:09297 :: Hair number 1 is not exist.
1104 16:38:09298 :: Hair number 1 is not exist.
1104 16:38:22678 :: Hair number 1 is not exist.
1104 16:38:25434 :: Unknown Server Command SetTeamOffline xMei | SetTeamOffline
1104 16:38:25434 :: Unknown Server Command SetTeamOffline Ninja | SetTeamOffline
1104 16:38:25434 :: Unknown Server Command SetTeamOffline Thaia | SetTeamOffline
1104 16:38:32380 :: Unknown Server Command SetTeamOffline xMei | SetTeamOffline
1104 16:38:32380 :: Unknown Server Command SetTeamOffline Ninja | SetTeamOffline
1104 16:38:32380 :: Unknown Server Command SetTeamOffline Thaia | SetTeamOffline
1104 16:38:42379 :: Unknown Server Command SetTeamOffline xMei | SetTeamOffline
1104 16:38:42379 :: Unknown Server Command SetTeamOffline Ninja | SetTeamOffline
1104 16:38:42379 :: Unknown Server Command SetTeamOffline Thaia | SetTeamOffline
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DA9E10>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DA9D10>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC6F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC710>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC730>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC750>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC770>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC7B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC7D0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC7F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC850>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC870>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC8B0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DAC8D0>> ignored
Exception AttributeError: "'NoneType' object has no attribute '__del__'" in <bound method NumberLine.__del__ of <ui.NumberLine object at 0x02DAC8F0>> ignored
Exception TypeError: "'NoneType' object is not callable" in <bound method CursorImage.__del__ of <mouseModule.CursorImage object at 0x02DA9F50>> ignored

 

Je ne comprend vraiment pas pourquoi ce bouton "+" ne marche pas pour mon Wolfman

Lien vers le commentaire
Partager sur d’autres sites

  • 0

C'est bon j'ai trouvé la solution :

 

Remplacer la ligne suivante coté server dans le char_skill.cpp :

if (pkSkill->dwType - 1 == GetJob())

 

Par la ligne suivante :

if (pkSkill->dwType - 1 == GetJob() || (GetJob() == 4 && pkSkill->dwType == 1))

 

Je passe en "résolu"

  • Love 1
Lien vers le commentaire
Partager sur d’autres sites

Invité
Ce sujet ne peut plus recevoir de nouvelles réponses.


  • brilliantdiscord_widget
  • Flux d'Activité

    1. 37
    2. 21

      Metin2 en 2020 peut-on en parler?

    3. 0

      METIN2Project

    4. 3

      Ressources - UnPack - Metin2 Client - Officiel

    5. 0

      Barre des tâches d'argent étendue

    6. 16

      Redémarrage automatique des channels

    7. 16

      Multi Logo GM / SGM / GA

  • En ligne récemment

    • Aucun utilisateur enregistré regarde cette page.

Information importante

Conditions d’utilisation / Politique de confidentialité / Règles / Nous avons placé des cookies sur votre appareil pour aider à améliorer ce site. Vous pouvez choisir d’ajuster vos paramètres de cookie, sinon nous supposerons que vous êtes d’accord pour continuer.