Jump to content

Recommended Posts

  • Premium

You don't need to care about these warnings, if you are ready to release the binary to the players then just select "Release" mode in Visual Studio. If you are getting errors with Release mode, because you probably will, then you need to recompile the cryptopp in Release mode.

  • Love 2

Thanks for responding, debug mode I miss on purpose to see errors. This error causes the client image go very slow and sounds are unnecessary

 

 

How to disable this binary? sound

 

iYJUzsx.png

Edited by Metin2 Dev
Core X - External 2 Internal
  • Premium

This looks better :)

 

EterPackManager.cpp

#ifdef _DEBUG
	if (CFileNameHelper::GetExtension(strFileName) != "mss") {
		TraceError("CANNOT_FIND_PACK_FILE [%s]", strFileName.c_str());
	}
#endif

With this only the mss files are skipped

  • Love 1

..,-

But this way the error will still generate. Might help me fix this error?

 

 

pd: Thanks for answer

 

 

Like Sanchez said, you don't need to care about these warnings.

But if you want to fix them just put the packages and it will be ok.

 

Regards.

  • Love 2

 

 

Didnt work for me. :

 

7no56.png

Full log: http://pastebin.com/cBVtuMLx

16>.AffectFlagContainer.cpp(68) : error C2440: 'initializing' : cannot convert from 'CAffectFlagContainer::Element' to 'char &'

Right click on the BYTE and click Go to Definition and change the char to unsigned char.

6>.PythonGraphic.cpp(294) : error C2664: 'CPythonGraphic::SaveJPEG' : cannot convert parameter 2 from 'char *' to 'LPBYTE'

Double click on the error and change the line to this:

bool bSaved = SaveJPEG(c_pszFileName, (LPBYTE)pbyBuffer, uWidth, uHeight);

Thanks!

But now i have another problem, i get this error when i try to open the game with the compiled binary:

7oM2e.jpg

 

Im using the 40250 Test Client

 

 

The mainline_released branch is for the SG client (root). Use novaline for the test client.

 

Edited by Metin2 Dev
Core X - External 2 Internal

 

 

 

Didnt work for me. :

 

7no56.png

Full log: http://pastebin.com/cBVtuMLx

16>.AffectFlagContainer.cpp(68) : error C2440: 'initializing' : cannot convert from 'CAffectFlagContainer::Element' to 'char &'

Right click on the BYTE and click Go to Definition and change the char to unsigned char.

6>.PythonGraphic.cpp(294) : error C2664: 'CPythonGraphic::SaveJPEG' : cannot convert parameter 2 from 'char *' to 'LPBYTE'

Double click on the error and change the line to this:

bool bSaved = SaveJPEG(c_pszFileName, (LPBYTE)pbyBuffer, uWidth, uHeight);

Thanks!

But now i have another problem, i get this error when i try to open the game with the compiled binary:

7oM2e.jpg

 

Im using the 40250 Test Client

 

 

The mainline_released branch is for the SG client (root). Use novaline for the test client.

 

 

 

use lib files.

 

https://cloud.mail.ru/public/8a0c373e6791/lib.rar

Edited by Metin2 Dev
Core X - External 2 Internal
  • Premium

Use the python27.lib from here: novalineSrcsExternlib
Use the Python 2-7.3 folder from here: novalineSrcsExternPython-2.7.3
Comment this:  PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *, PyFutureFeatures *);
Use CTOA in the client: http://metin2dev.org/board/topic/459-problem-with-clientbinary/?p=3526

I compiled the novaline client binary in release mode without any errors. Then I copied the binary into my 40250 test client and started. After the loading bar reaches 100%, the client closes. (EDIT: Same happens in Debug mode!)

 

syserr.txt

0323 13:35:00013 :: import marshal # builtin

0323 13:35:00013 :: import imp # builtin

0323 13:35:00028 :: ui.py: inconsistent use of tabs and spaces in indentation

0323 13:35:00046 :: import _weakref # builtin

0323 13:35:00716 :: # trying .os.pyd

0323 13:35:00716 :: # trying .os.py

0323 13:35:00716 :: # trying .os.pyw

0323 13:35:00716 :: # trying .os.pyc

0323 13:35:00716 :: # trying libos.pyd

0323 13:35:00716 :: # trying libos.py

0323 13:35:00716 :: # libos.pyc has bad magic

0323 13:35:00720 :: import os # from libos.py

0323 13:35:00720 :: import errno # builtin

0323 13:35:00720 :: import nt # builtin

0323 13:35:00721 :: # trying .ntpath.pyd

0323 13:35:00721 :: # trying .ntpath.py

0323 13:35:00721 :: # trying .ntpath.pyw

0323 13:35:00721 :: # trying .ntpath.pyc

0323 13:35:00721 :: # trying libntpath.pyd

0323 13:35:00721 :: # trying libntpath.py

0323 13:35:00721 :: # libntpath.pyc has bad magic

0323 13:35:00723 :: import ntpath # from libntpath.py

0323 13:35:00723 :: # trying .stat.pyd

0323 13:35:00723 :: # trying .stat.py

0323 13:35:00723 :: # trying .stat.pyw

0323 13:35:00723 :: # trying .stat.pyc

0323 13:35:00724 :: # trying libstat.pyd

0323 13:35:00724 :: # trying libstat.py

0323 13:35:00724 :: # libstat.pyc has bad magic

0323 13:35:00724 :: import stat # from libstat.py

0323 13:35:00724 :: # trying .genericpath.pyd

0323 13:35:00724 :: # trying .genericpath.py

0323 13:35:00724 :: # trying .genericpath.pyw

0323 13:35:00724 :: # trying .genericpath.pyc

0323 13:35:00724 :: # trying libgenericpath.pyd

0323 13:35:00724 :: # trying libgenericpath.py

0323 13:35:00724 :: # libgenericpath.pyc has bad magic

0323 13:35:00725 :: import genericpath # from libgenericpath.py

0323 13:35:00725 :: # trying .warnings.pyd

0323 13:35:00725 :: # trying .warnings.py

0323 13:35:00725 :: # trying .warnings.pyw

0323 13:35:00725 :: # trying .warnings.pyc

0323 13:35:00725 :: # trying libwarnings.pyd

0323 13:35:00725 :: # trying libwarnings.py

0323 13:35:00725 :: # libwarnings.pyc has bad magic

0323 13:35:00728 :: import warnings # from libwarnings.py

0323 13:35:00728 :: # trying .linecache.pyd

0323 13:35:00728 :: # trying .linecache.py

0323 13:35:00728 :: # trying .linecache.pyw

0323 13:35:00728 :: # trying .linecache.pyc

0323 13:35:00728 :: # trying liblinecache.pyd

0323 13:35:00728 :: # trying liblinecache.py

0323 13:35:00728 :: # liblinecache.pyc has bad magic

0323 13:35:00729 :: import linecache # from liblinecache.py

0323 13:35:00729 :: # trying .types.pyd

0323 13:35:00729 :: # trying .types.py

0323 13:35:00729 :: # trying .types.pyw

0323 13:35:00729 :: # trying .types.pyc

0323 13:35:00729 :: # trying libtypes.pyd

0323 13:35:00729 :: # trying libtypes.py

0323 13:35:00729 :: # libtypes.pyc has bad magic

0323 13:35:00729 :: import types # from libtypes.py

0323 13:35:00730 :: # trying .UserDict.pyd

0323 13:35:00730 :: # trying .UserDict.py

0323 13:35:00730 :: # trying .UserDict.pyw

0323 13:35:00730 :: # trying .UserDict.pyc

0323 13:35:00730 :: # trying libUserDict.pyd

0323 13:35:00730 :: # trying libUserDict.py

0323 13:35:00730 :: # libUserDict.pyc has bad magic

0323 13:35:00731 :: import UserDict # from libUserDict.py

0323 13:35:00732 :: # trying ._abcoll.pyd

0323 13:35:00732 :: # trying ._abcoll.py

0323 13:35:00732 :: # trying ._abcoll.pyw

0323 13:35:00732 :: # trying ._abcoll.pyc

0323 13:35:00732 :: # trying lib_abcoll.pyd

0323 13:35:00732 :: # trying lib_abcoll.py

0323 13:35:00732 :: # lib_abcoll.pyc has bad magic

0323 13:35:00735 :: import _abcoll # from lib_abcoll.py

0323 13:35:00735 :: # trying .abc.pyd

0323 13:35:00735 :: # trying .abc.py

0323 13:35:00735 :: # trying .abc.pyw

0323 13:35:00735 :: # trying .abc.pyc

0323 13:35:00735 :: # trying libabc.pyd

0323 13:35:00735 :: # trying libabc.py

0323 13:35:00735 :: # libabc.pyc has bad magic

0323 13:35:00736 :: import abc # from libabc.py

0323 13:35:00736 :: # trying .copy_reg.pyd

0323 13:35:00736 :: # trying .copy_reg.py

0323 13:35:00736 :: # trying .copy_reg.pyw

0323 13:35:00736 :: # trying .copy_reg.pyc

0323 13:35:00737 :: # trying libcopy_reg.pyd

0323 13:35:00737 :: # trying libcopy_reg.py

0323 13:35:00737 :: # libcopy_reg.pyc has bad magic

0323 13:35:00738 :: import copy_reg # from libcopy_reg.py

0323 13:35:00807 :: import time # builtin

0323 13:35:07132 :: import math # builtin

0323 13:35:07210 :: uiTaskBar.py: inconsistent use of tabs and spaces in indentation

0323 13:35:07253 :: uiDragonSoul.py: inconsistent use of tabs and spaces in indentation

0323 13:35:07308 :: uiSystem.py: inconsistent use of tabs and spaces in indentation

0323 13:35:07343 :: uiQuest.py: inconsistent use of tabs and spaces in indentation

0323 13:35:15508 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010).  Automatic conversion will be attempted.
0323 13:35:19701 :: game.py: inconsistent use of tabs and spaces in indentation

0323 13:35:19878 :: Failed to load script file : locale/de/ui/InventoryWindow.py
0323 13:35:19878 :: # trying .traceback.pyd

0323 13:35:19878 :: # trying .traceback.py

0323 13:35:19878 :: # trying .traceback.pyw

0323 13:35:19878 :: # trying .traceback.pyc

0323 13:35:19879 :: # trying libtraceback.pyd

0323 13:35:19879 :: # trying libtraceback.py

0323 13:35:19879 :: # libtraceback.pyc has bad magic

0323 13:35:19880 :: import traceback # from libtraceback.py

0323 13:35:19881 :: 
ui.py(line:2773) LoadScriptFile
system.py(line:192) execfile
system.py(line:163) Run
locale/de/ui/InventoryWindow.py(line:88) <module>

LoadScriptFile!!!!!!!!!!!!!! - <type 'exceptions.AttributeError'>:'module' object has no attribute 'EQUIPMENT_RING1'

0323 13:35:19881 :: ============================================================================================================
0323 13:35:19881 :: Abort!!!!


0323 13:35:19881 :: 
uiInventory.py(line:284) __LoadWindow
ui.py(line:2790) LoadScriptFile
exception.py(line:36) Abort

InventoryWindow.LoadWindow.LoadObject - <type 'exceptions.SystemExit'>:

0323 13:35:19881 :: ============================================================================================================
0323 13:35:19881 :: Abort!!!!


0323 13:35:19883 :: # clear __builtin__._

0323 13:35:19883 :: # clear sys.path

0323 13:35:19883 :: # clear sys.argv

0323 13:35:19883 :: # clear sys.ps1

0323 13:35:19883 :: # clear sys.ps2

0323 13:35:19883 :: # clear sys.exitfunc

0323 13:35:19883 :: # clear sys.exc_type

0323 13:35:19883 :: # clear sys.exc_value

0323 13:35:19883 :: # clear sys.exc_traceback

0323 13:35:19883 :: # clear sys.last_type

0323 13:35:19883 :: # clear sys.last_value

0323 13:35:19883 :: # clear sys.last_traceback

0323 13:35:19883 :: # clear sys.path_hooks

0323 13:35:19883 :: # clear sys.path_importer_cache

0323 13:35:19883 :: # clear sys.meta_path

0323 13:35:19883 :: # clear sys.flags

0323 13:35:19883 :: # clear sys.float_info

0323 13:35:19883 :: # restore sys.stdin

0323 13:35:19883 :: # restore sys.stdout

0323 13:35:19883 :: # restore sys.stderr

 

Anybody can help?

 

Regards

Your error is:

'module' object has no attribute 'EQUIPMENT_RING1'

Find:

#ifdef ENABLE_NEW_EQUIPMENT_SYSTEM
#ifdef ENABLE_COSTUME_SYSTEM
#ifdef ENABLE_ENERGY_SYSTEM
#ifdef ENABLE_DRAGON_SOUL_SYSTEM

and comment with // the #ifdef and then #endif

  • Love 2

Thank you but I solved it by adding

#define ENABLE_NEW_EQUIPMENT_SYSTEM
#define ENABLE_DRAGON_SOUL_SYSTEM

to Locale_inc.h.

 

Thank you for the suggestion :)

 

Regards

 

EDIT: NEW PROBLEM

Client closes after loading screen.

 

syserr.txt:

0323 15:05:00021 :: import marshal # builtin

0323 15:05:00021 :: import imp # builtin

0323 15:05:00045 :: ui.py: inconsistent use of tabs and spaces in indentation

0323 15:05:00062 :: import _weakref # builtin

0323 15:05:00354 :: # trying .os.pyd

0323 15:05:00354 :: # trying .os.py

0323 15:05:00354 :: # trying .os.pyw

0323 15:05:00355 :: # trying .os.pyc

0323 15:05:00355 :: # trying libos.pyd

0323 15:05:00355 :: # trying libos.py

0323 15:05:00355 :: # libos.pyc has bad magic

0323 15:05:00359 :: import os # from libos.py

0323 15:05:00360 :: import errno # builtin

0323 15:05:00360 :: import nt # builtin

0323 15:05:00361 :: # trying .ntpath.pyd

0323 15:05:00361 :: # trying .ntpath.py

0323 15:05:00361 :: # trying .ntpath.pyw

0323 15:05:00361 :: # trying .ntpath.pyc

0323 15:05:00362 :: # trying libntpath.pyd

0323 15:05:00362 :: # trying libntpath.py

0323 15:05:00362 :: # libntpath.pyc has bad magic

0323 15:05:00365 :: import ntpath # from libntpath.py

0323 15:05:00365 :: # trying .stat.pyd

0323 15:05:00365 :: # trying .stat.py

0323 15:05:00365 :: # trying .stat.pyw

0323 15:05:00366 :: # trying .stat.pyc

0323 15:05:00366 :: # trying libstat.pyd

0323 15:05:00366 :: # trying libstat.py

0323 15:05:00366 :: # libstat.pyc has bad magic

0323 15:05:00367 :: import stat # from libstat.py

0323 15:05:00367 :: # trying .genericpath.pyd

0323 15:05:00367 :: # trying .genericpath.py

0323 15:05:00368 :: # trying .genericpath.pyw

0323 15:05:00368 :: # trying .genericpath.pyc

0323 15:05:00368 :: # trying libgenericpath.pyd

0323 15:05:00368 :: # trying libgenericpath.py

0323 15:05:00368 :: # libgenericpath.pyc has bad magic

0323 15:05:00369 :: import genericpath # from libgenericpath.py

0323 15:05:00369 :: # trying .warnings.pyd

0323 15:05:00370 :: # trying .warnings.py

0323 15:05:00370 :: # trying .warnings.pyw

0323 15:05:00370 :: # trying .warnings.pyc

0323 15:05:00370 :: # trying libwarnings.pyd

0323 15:05:00370 :: # trying libwarnings.py

0323 15:05:00370 :: # libwarnings.pyc has bad magic

0323 15:05:00373 :: import warnings # from libwarnings.py

0323 15:05:00373 :: # trying .linecache.pyd

0323 15:05:00374 :: # trying .linecache.py

0323 15:05:00374 :: # trying .linecache.pyw

0323 15:05:00374 :: # trying .linecache.pyc

0323 15:05:00374 :: # trying liblinecache.pyd

0323 15:05:00374 :: # trying liblinecache.py

0323 15:05:00375 :: # liblinecache.pyc has bad magic

0323 15:05:00376 :: import linecache # from liblinecache.py

0323 15:05:00376 :: # trying .types.pyd

0323 15:05:00376 :: # trying .types.py

0323 15:05:00376 :: # trying .types.pyw

0323 15:05:00376 :: # trying .types.pyc

0323 15:05:00377 :: # trying libtypes.pyd

0323 15:05:00377 :: # trying libtypes.py

0323 15:05:00377 :: # libtypes.pyc has bad magic

0323 15:05:00377 :: import types # from libtypes.py

0323 15:05:00378 :: # trying .UserDict.pyd

0323 15:05:00378 :: # trying .UserDict.py

0323 15:05:00378 :: # trying .UserDict.pyw

0323 15:05:00378 :: # trying .UserDict.pyc

0323 15:05:00379 :: # trying libUserDict.pyd

0323 15:05:00379 :: # trying libUserDict.py

0323 15:05:00379 :: # libUserDict.pyc has bad magic

0323 15:05:00380 :: import UserDict # from libUserDict.py

0323 15:05:00381 :: # trying ._abcoll.pyd

0323 15:05:00381 :: # trying ._abcoll.py

0323 15:05:00381 :: # trying ._abcoll.pyw

0323 15:05:00381 :: # trying ._abcoll.pyc

0323 15:05:00381 :: # trying lib_abcoll.pyd

0323 15:05:00381 :: # trying lib_abcoll.py

0323 15:05:00381 :: # lib_abcoll.pyc has bad magic

0323 15:05:00384 :: import _abcoll # from lib_abcoll.py

0323 15:05:00385 :: # trying .abc.pyd

0323 15:05:00385 :: # trying .abc.py

0323 15:05:00385 :: # trying .abc.pyw

0323 15:05:00385 :: # trying .abc.pyc

0323 15:05:00386 :: # trying libabc.pyd

0323 15:05:00386 :: # trying libabc.py

0323 15:05:00386 :: # libabc.pyc has bad magic

0323 15:05:00387 :: import abc # from libabc.py

0323 15:05:00389 :: # trying .copy_reg.pyd

0323 15:05:00389 :: # trying .copy_reg.py

0323 15:05:00389 :: # trying .copy_reg.pyw

0323 15:05:00389 :: # trying .copy_reg.pyc

0323 15:05:00390 :: # trying libcopy_reg.pyd

0323 15:05:00390 :: # trying libcopy_reg.py

0323 15:05:00390 :: # libcopy_reg.pyc has bad magic

0323 15:05:00391 :: import copy_reg # from libcopy_reg.py

0323 15:05:00419 :: import time # builtin

0323 15:05:17158 ::     Çѱ¹¹«½Ö¹öÁ¯(#2    ) cannot find icon file. setting to default.
0323 15:05:17165 ::     ±¤·ûÆÈ±¥ÆÐ+0(#13180) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+1(#13181) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+2(#13182) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+3(#13183) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+4(#13184) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+5(#13185) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+6(#13186) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+7(#13187) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+8(#13188) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+9(#13189) cannot find icon file. setting to default.
0323 15:05:17176 ::       À§Ä¡±â¾ïºÎ(#22020) cannot find icon file. setting to default.
0323 15:05:17176 ::           À̵¿ºÎ(#22030) cannot find icon file. setting to default.
0323 15:05:17177 ::           »ý¸íºÎ(#22040) cannot find icon file. setting to default.
0323 15:05:17177 ::           ȯ»ýºÎ(#22050) cannot find icon file. setting to default.
0323 15:05:17178 ::           °¡¸®ºñ(#29001) cannot find icon file. setting to default.
0323 15:05:17179 ::         û°¡¸®ºñ(#29002) cannot find icon file. setting to default.
0323 15:05:17179 ::         Ȳ°¡¸®ºñ(#29003) cannot find icon file. setting to default.
0323 15:05:17179 ::         È«°¡¸®ºñ(#29004) cannot find icon file. setting to default.
0323 15:05:17179 ::         ³ì°¡¸®ºñ(#29005) cannot find icon file. setting to default.
0323 15:05:17180 ::           ȲÁÖ¼®(#29006) cannot find icon file. setting to default.
0323 15:05:17180 ::           ûÁÖ¼®(#29007) cannot find icon file. setting to default.
0323 15:05:17180 ::           û½Å¼ö(#29008) cannot find icon file. setting to default.
0323 15:05:17180 ::           Ȳ½Å¼ö(#29009) cannot find icon file. setting to default.
0323 15:05:17180 ::           È«½Å¼ö(#29010) cannot find icon file. setting to default.
0323 15:05:17180 ::           ³ì½Å¼ö(#29011) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬Ã»½Å¼ö(#29012) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬È²½Å¼ö(#29013) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬È«½Å¼ö(#29014) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬³ì½Å¼ö(#29015) cannot find icon file. setting to default.
0323 15:05:17182 :: ¿õ±ÍÀÇ È²±Ý¾î±Ý´Ï(#30103) cannot find icon file. setting to default.
0323 15:05:17182 ::    »ç¸·ÀÇ °Å¹ÌÁÙ(#30104) cannot find icon file. setting to default.
0323 15:05:17182 ::  Åå½î´Â Àü°¥²¿¸®(#30105) cannot find icon file. setting to default.
0323 15:05:17182 ::   À¯¶û ¾î¸Ó´Ï ¾à(#30106) cannot find icon file. setting to default.
0323 15:05:17182 ::    ¿õ±ÍÀÇ ¼Û°÷´Ï(#30107) cannot find icon file. setting to default.
0323 15:05:17182 :: µµÀÚ±âÂø»ö¿ëÀ¯¾à(#30108) cannot find icon file. setting to default.
0323 15:05:17183 ::    »ç¸·ÀÇ °Å¹ÌÁÙ(#30109) cannot find icon file. setting to default.
0323 15:05:17183 ::    ÈľȼÒÀÇ ÆíÁö(#30110) cannot find icon file. setting to default.
0323 15:05:17183 ::  Åå½î´Â Àü°¥²¿¸®(#30111) cannot find icon file. setting to default.
0323 15:05:17183 ::             Àå¾î(#30112) cannot find icon file. setting to default.
0323 15:05:17183 ::        ¹Ð±³ °æÀü(#30113) cannot find icon file. setting to default.
0323 15:05:17183 ::           ±«Áú±Õ(#30114) cannot find icon file. setting to default.
0323 15:05:17183 ::      ±«Áú Ä¡·áÁ¦(#30115) cannot find icon file. setting to default.
0323 15:05:17184 ::    Çà»óÀÎÀÇ ÆíÁö(#30117) cannot find icon file. setting to default.
0323 15:05:17184 ::    »ç±ÍÀÇ º¸¼®ÇÔ(#30118) cannot find icon file. setting to default.
0323 15:05:17188 ::      VIP-Feature(#38001) cannot find icon file. setting to default.
0323 15:05:17188 :: Tombola_ticket_today(#38002) cannot find icon file. setting to default.
0323 15:05:17188 :: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default.
0323 15:05:17189 ::   Tombola_reroll(#38004) cannot find icon file. setting to default.
0323 15:05:17189 ::   TombolaPP_spin(#38005) cannot find icon file. setting to default.
0323 15:05:17189 ::      Momo-Reroll(#38006) cannot find icon file. setting to default.
0323 15:05:17190 ::    ¼Ò¸®³ª´Â ¹æ¿ï(#40005) cannot find icon file. setting to default.
0323 15:05:17190 ::    ¿À¶ûij ¼ö¼Û¼­(#40006) cannot find icon file. setting to default.
0323 15:05:17190 :: ¿À¶ûij º¸½º ÆíÁö(#40007) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41315) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41316) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41317) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41318) cannot find icon file. setting to default.
0323 15:05:17192 ::           Èæ»ç°©(#41319) cannot find icon file. setting to default.
0323 15:05:17192 ::       ¼±¹°º¸µû¸®(#50041) cannot find icon file. setting to default.
0323 15:05:17192 ::   ½Â¸¶¼Òȯ¼ö·Ã¼­(#50061) cannot find icon file. setting to default.
0323 15:05:17193 ::       ½Â¸¶¼ö·Ã¼­(#50062) cannot find icon file. setting to default.
0323 15:05:17193 ::     ¿ë°¢º¸¹°»óÀÚ(#50118) cannot find icon file. setting to default.
0323 15:05:17193 ::       ¿µ¼®º¸µû¸®(#50119) cannot find icon file. setting to default.
0323 15:05:17194 ::         ¼®Ã¢Æ÷¾×(#50805) cannot find icon file. setting to default.
0323 15:05:17194 ::       ¿µÁö¹ö¼¸¾×(#50806) cannot find icon file. setting to default.
0323 15:05:17195 ::         ¸¸º´Ãʾ×(#50807) cannot find icon file. setting to default.
0323 15:05:17195 ::       »ê»Í³ª¹«¾×(#50808) cannot find icon file. setting to default.
0323 15:05:17195 ::         ¹Îµé·¹¾×(#50809) cannot find icon file. setting to default.
0323 15:05:17195 ::         ȫȭ¾¾¾×(#50810) cannot find icon file. setting to default.
0323 15:05:17195 ::           ´ëÃß¾×(#50811) cannot find icon file. setting to default.
0323 15:05:17196 ::     »ïÁö±¸¿±Ãʾ×(#50812) cannot find icon file. setting to default.
0323 15:05:17196 ::           ºó¾àº´(#50901) cannot find icon file. setting to default.
0323 15:05:17196 ::    Ȱ½É¾× Á¦Á¶¹ý(#50905) cannot find icon file. setting to default.
0323 15:05:17196 ::    Çǵ¶¼ö Á¦Á¶¹ý(#50906) cannot find icon file. setting to default.
0323 15:05:17196 ::    º¸È¯¼ö Á¦Á¶¹ý(#50907) cannot find icon file. setting to default.
0323 15:05:17196 ::    ¿µº¸¼ö Á¦Á¶¹ý(#50908) cannot find icon file. setting to default.
0323 15:05:17196 ::    ÁøÇǵ¶ Á¦Á¶¹ý(#50909) cannot find icon file. setting to default.
0323 15:05:17196 ::    Ȱ½É¾× Á¦Á¶¹ý(#50910) cannot find icon file. setting to default.
0323 15:05:17198 ::             ºÒ°æ(#70103) cannot find icon file. setting to default.
0323 15:05:17199 ::      ¿ë½ÅÀÇ Áö¿ø(#71031) cannot find icon file. setting to default.
0323 15:05:17199 ::      µ¿·á¿Í ȸÆ÷(#71047) cannot find icon file. setting to default.
0323 15:05:17199 ::     Àü±¤ÆÇº¸µû¸®(#71091) cannot find icon file. setting to default.
0323 15:05:17200 ::       °æÇèÀǹÝÁö(#72303) cannot find icon file. setting to default.
0323 15:05:17200 ::      ÃູÀÇ ±¸½½(#72304) cannot find icon file. setting to default.
0323 15:05:17201 ::         ¸¸³âÇÑö(#72308) cannot find icon file. setting to default.
0323 15:05:17201 ::    ¾ß°øÀÇ ºñÀü¼­(#72309) cannot find icon file. setting to default.
0323 15:05:17201 ::         Á־ȼú¼­(#72310) cannot find icon file. setting to default.
0323 15:05:17201 ::        ¿ë½ÅÀÇ È¯(#72311) cannot find icon file. setting to default.
0323 15:05:17201 ::      ¿ë½ÅÀÇ °ø°Ý(#72312) cannot find icon file. setting to default.
0323 15:05:17202 ::      ¿ë½ÅÀÇ ¹æ¾î(#72313) cannot find icon file. setting to default.
0323 15:05:17202 ::    ¿ë½ÅÀÇ Ãູ¼­(#72314) cannot find icon file. setting to default.
0323 15:05:17203 ::         µ·ÁÖ¸Ó´Ï(#80001) cannot find icon file. setting to default.
0323 15:05:17203 ::             ¹éÁö(#80002) cannot find icon file. setting to default.
0323 15:05:17203 ::           ºó¹°Åë(#90001) cannot find icon file. setting to default.
0323 15:05:17203 ::             ¹°Åë(#90002) cannot find icon file. setting to default.
0323 15:05:17203 ::             º¸¼®(#90004) cannot find icon file. setting to default.
0323 15:05:17204 ::             ¿µ¼®(#90006) cannot find icon file. setting to default.
0323 15:05:17204 ::             ±¤¼®(#90007) cannot find icon file. setting to default.
0323 15:05:17259 :: import math # builtin

0323 15:05:17300 :: uiTaskBar.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17319 :: uiDragonSoul.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17349 :: uiSystem.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17386 :: uiQuest.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17695 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
0323 15:05:17696 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg]
0323 15:05:17700 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg
0323 15:05:17701 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg]
0323 15:05:25089 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010).  Automatic conversion will be attempted.
0323 15:05:25197 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25197 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/°ø¿ë/hay_01.gr2]
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25202 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr
0323 15:05:25202 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr]
0323 15:05:26424 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg
0323 15:05:26442 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcassassineffect16-bottom.jpg
0323 15:05:26462 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam.jpg
0323 15:05:26463 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectw_ring.jpg
0323 15:05:26464 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwhite_sphere.jpg
0323 15:05:26465 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwind.jpg
0323 15:05:26465 :: CResourceManager::GetResourcePointer: File not exist D:Ymir WorkpcshamaneffectW_star.jpg
0323 15:05:26466 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam_ring.jpg
0323 15:05:26466 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectgyeokgong_triple_loop_2.jpg
0323 15:05:26467 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectnoe_w_ring.jpg
0323 15:05:26857 :: CResourceManager::GetResourcePointer: File not exist D:/Ymir Work/pc2/warrior/action/dance_6.GR2
0323 15:05:30182 :: game.py: inconsistent use of tabs and spaces in indentation

0323 15:05:30284 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub
0323 15:05:30285 :: CANNOT_FIND_PACK_FILE [d:/ymir work/ui/game/quest/slot_button_01.sub]
0323 15:05:31133 :: CResourceManager::GetResourcePointer: File not exist season1npcbackchonseason1npcbackchonbackchon.dds
0323 15:05:31134 :: CANNOT_FIND_PACK_FILE [season1/npc/backchon/season1/npc/backchon/backchon.dds]
0323 15:05:31469 :: Unknown packet header: 96, last: 3 81
0323 15:05:31537 :: # clear __builtin__._

0323 15:05:31538 :: # clear sys.path

0323 15:05:31538 :: # clear sys.argv

0323 15:05:31538 :: # clear sys.ps1

0323 15:05:31538 :: # clear sys.ps2

0323 15:05:31538 :: # clear sys.exitfunc

0323 15:05:31539 :: # clear sys.exc_type

0323 15:05:31539 :: # clear sys.exc_value

0323 15:05:31539 :: # clear sys.exc_traceback

0323 15:05:31539 :: # clear sys.last_type

0323 15:05:31539 :: # clear sys.last_value

0323 15:05:31539 :: # clear sys.last_traceback

0323 15:05:31539 :: # clear sys.path_hooks

0323 15:05:31539 :: # clear sys.path_importer_cache

0323 15:05:31539 :: # clear sys.meta_path

0323 15:05:31540 :: # clear sys.flags

0323 15:05:31540 :: # clear sys.float_info

0323 15:05:31540 :: # restore sys.stdin

0323 15:05:31540 :: # restore sys.stdout

0323 15:05:31540 :: # restore sys.stderr

0323 15:05:31618 :: granny_shared_vbs:
0323 15:05:31619 :: 	0: 40
0323 15:05:31619 :: 	1: 20
0323 15:05:31619 :: 	2: 20
0323 15:05:31620 :: 	3: 40
0323 15:05:31620 :: 	4: 1
0323 15:05:31620 :: 	5: 20
0323 15:05:31621 :: 	6: 1
0323 15:05:31621 :: 	7: 0
0323 15:05:31621 :: 	8: 0

 

Anybody can help? :s

 

Regards

Thank you but I solved it by adding

#define ENABLE_NEW_EQUIPMENT_SYSTEM
#define ENABLE_DRAGON_SOUL_SYSTEM

to Locale_inc.h.

 

Thank you for the suggestion :)

 

Regards

 

EDIT: NEW PROBLEM

Client closes after loading screen.

 

syserr.txt:

0323 15:05:00021 :: import marshal # builtin

0323 15:05:00021 :: import imp # builtin

0323 15:05:00045 :: ui.py: inconsistent use of tabs and spaces in indentation

0323 15:05:00062 :: import _weakref # builtin

0323 15:05:00354 :: # trying .os.pyd

0323 15:05:00354 :: # trying .os.py

0323 15:05:00354 :: # trying .os.pyw

0323 15:05:00355 :: # trying .os.pyc

0323 15:05:00355 :: # trying libos.pyd

0323 15:05:00355 :: # trying libos.py

0323 15:05:00355 :: # libos.pyc has bad magic

0323 15:05:00359 :: import os # from libos.py

0323 15:05:00360 :: import errno # builtin

0323 15:05:00360 :: import nt # builtin

0323 15:05:00361 :: # trying .ntpath.pyd

0323 15:05:00361 :: # trying .ntpath.py

0323 15:05:00361 :: # trying .ntpath.pyw

0323 15:05:00361 :: # trying .ntpath.pyc

0323 15:05:00362 :: # trying libntpath.pyd

0323 15:05:00362 :: # trying libntpath.py

0323 15:05:00362 :: # libntpath.pyc has bad magic

0323 15:05:00365 :: import ntpath # from libntpath.py

0323 15:05:00365 :: # trying .stat.pyd

0323 15:05:00365 :: # trying .stat.py

0323 15:05:00365 :: # trying .stat.pyw

0323 15:05:00366 :: # trying .stat.pyc

0323 15:05:00366 :: # trying libstat.pyd

0323 15:05:00366 :: # trying libstat.py

0323 15:05:00366 :: # libstat.pyc has bad magic

0323 15:05:00367 :: import stat # from libstat.py

0323 15:05:00367 :: # trying .genericpath.pyd

0323 15:05:00367 :: # trying .genericpath.py

0323 15:05:00368 :: # trying .genericpath.pyw

0323 15:05:00368 :: # trying .genericpath.pyc

0323 15:05:00368 :: # trying libgenericpath.pyd

0323 15:05:00368 :: # trying libgenericpath.py

0323 15:05:00368 :: # libgenericpath.pyc has bad magic

0323 15:05:00369 :: import genericpath # from libgenericpath.py

0323 15:05:00369 :: # trying .warnings.pyd

0323 15:05:00370 :: # trying .warnings.py

0323 15:05:00370 :: # trying .warnings.pyw

0323 15:05:00370 :: # trying .warnings.pyc

0323 15:05:00370 :: # trying libwarnings.pyd

0323 15:05:00370 :: # trying libwarnings.py

0323 15:05:00370 :: # libwarnings.pyc has bad magic

0323 15:05:00373 :: import warnings # from libwarnings.py

0323 15:05:00373 :: # trying .linecache.pyd

0323 15:05:00374 :: # trying .linecache.py

0323 15:05:00374 :: # trying .linecache.pyw

0323 15:05:00374 :: # trying .linecache.pyc

0323 15:05:00374 :: # trying liblinecache.pyd

0323 15:05:00374 :: # trying liblinecache.py

0323 15:05:00375 :: # liblinecache.pyc has bad magic

0323 15:05:00376 :: import linecache # from liblinecache.py

0323 15:05:00376 :: # trying .types.pyd

0323 15:05:00376 :: # trying .types.py

0323 15:05:00376 :: # trying .types.pyw

0323 15:05:00376 :: # trying .types.pyc

0323 15:05:00377 :: # trying libtypes.pyd

0323 15:05:00377 :: # trying libtypes.py

0323 15:05:00377 :: # libtypes.pyc has bad magic

0323 15:05:00377 :: import types # from libtypes.py

0323 15:05:00378 :: # trying .UserDict.pyd

0323 15:05:00378 :: # trying .UserDict.py

0323 15:05:00378 :: # trying .UserDict.pyw

0323 15:05:00378 :: # trying .UserDict.pyc

0323 15:05:00379 :: # trying libUserDict.pyd

0323 15:05:00379 :: # trying libUserDict.py

0323 15:05:00379 :: # libUserDict.pyc has bad magic

0323 15:05:00380 :: import UserDict # from libUserDict.py

0323 15:05:00381 :: # trying ._abcoll.pyd

0323 15:05:00381 :: # trying ._abcoll.py

0323 15:05:00381 :: # trying ._abcoll.pyw

0323 15:05:00381 :: # trying ._abcoll.pyc

0323 15:05:00381 :: # trying lib_abcoll.pyd

0323 15:05:00381 :: # trying lib_abcoll.py

0323 15:05:00381 :: # lib_abcoll.pyc has bad magic

0323 15:05:00384 :: import _abcoll # from lib_abcoll.py

0323 15:05:00385 :: # trying .abc.pyd

0323 15:05:00385 :: # trying .abc.py

0323 15:05:00385 :: # trying .abc.pyw

0323 15:05:00385 :: # trying .abc.pyc

0323 15:05:00386 :: # trying libabc.pyd

0323 15:05:00386 :: # trying libabc.py

0323 15:05:00386 :: # libabc.pyc has bad magic

0323 15:05:00387 :: import abc # from libabc.py

0323 15:05:00389 :: # trying .copy_reg.pyd

0323 15:05:00389 :: # trying .copy_reg.py

0323 15:05:00389 :: # trying .copy_reg.pyw

0323 15:05:00389 :: # trying .copy_reg.pyc

0323 15:05:00390 :: # trying libcopy_reg.pyd

0323 15:05:00390 :: # trying libcopy_reg.py

0323 15:05:00390 :: # libcopy_reg.pyc has bad magic

0323 15:05:00391 :: import copy_reg # from libcopy_reg.py

0323 15:05:00419 :: import time # builtin

0323 15:05:17158 ::     Çѱ¹¹«½Ö¹öÁ¯(#2    ) cannot find icon file. setting to default.
0323 15:05:17165 ::     ±¤·ûÆÈ±¥ÆÐ+0(#13180) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+1(#13181) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+2(#13182) cannot find icon file. setting to default.
0323 15:05:17166 ::     ±¤·ûÆÈ±¥ÆÐ+3(#13183) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+4(#13184) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+5(#13185) cannot find icon file. setting to default.
0323 15:05:17167 ::     ±¤·ûÆÈ±¥ÆÐ+6(#13186) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+7(#13187) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+8(#13188) cannot find icon file. setting to default.
0323 15:05:17168 ::     ±¤·ûÆÈ±¥ÆÐ+9(#13189) cannot find icon file. setting to default.
0323 15:05:17176 ::       À§Ä¡±â¾ïºÎ(#22020) cannot find icon file. setting to default.
0323 15:05:17176 ::           À̵¿ºÎ(#22030) cannot find icon file. setting to default.
0323 15:05:17177 ::           »ý¸íºÎ(#22040) cannot find icon file. setting to default.
0323 15:05:17177 ::           ȯ»ýºÎ(#22050) cannot find icon file. setting to default.
0323 15:05:17178 ::           °¡¸®ºñ(#29001) cannot find icon file. setting to default.
0323 15:05:17179 ::         û°¡¸®ºñ(#29002) cannot find icon file. setting to default.
0323 15:05:17179 ::         Ȳ°¡¸®ºñ(#29003) cannot find icon file. setting to default.
0323 15:05:17179 ::         È«°¡¸®ºñ(#29004) cannot find icon file. setting to default.
0323 15:05:17179 ::         ³ì°¡¸®ºñ(#29005) cannot find icon file. setting to default.
0323 15:05:17180 ::           ȲÁÖ¼®(#29006) cannot find icon file. setting to default.
0323 15:05:17180 ::           ûÁÖ¼®(#29007) cannot find icon file. setting to default.
0323 15:05:17180 ::           û½Å¼ö(#29008) cannot find icon file. setting to default.
0323 15:05:17180 ::           Ȳ½Å¼ö(#29009) cannot find icon file. setting to default.
0323 15:05:17180 ::           È«½Å¼ö(#29010) cannot find icon file. setting to default.
0323 15:05:17180 ::           ³ì½Å¼ö(#29011) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬Ã»½Å¼ö(#29012) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬È²½Å¼ö(#29013) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬È«½Å¼ö(#29014) cannot find icon file. setting to default.
0323 15:05:17181 ::         ¿¬³ì½Å¼ö(#29015) cannot find icon file. setting to default.
0323 15:05:17182 :: ¿õ±ÍÀÇ È²±Ý¾î±Ý´Ï(#30103) cannot find icon file. setting to default.
0323 15:05:17182 ::    »ç¸·ÀÇ °Å¹ÌÁÙ(#30104) cannot find icon file. setting to default.
0323 15:05:17182 ::  Åå½î´Â Àü°¥²¿¸®(#30105) cannot find icon file. setting to default.
0323 15:05:17182 ::   À¯¶û ¾î¸Ó´Ï ¾à(#30106) cannot find icon file. setting to default.
0323 15:05:17182 ::    ¿õ±ÍÀÇ ¼Û°÷´Ï(#30107) cannot find icon file. setting to default.
0323 15:05:17182 :: µµÀÚ±âÂø»ö¿ëÀ¯¾à(#30108) cannot find icon file. setting to default.
0323 15:05:17183 ::    »ç¸·ÀÇ °Å¹ÌÁÙ(#30109) cannot find icon file. setting to default.
0323 15:05:17183 ::    ÈľȼÒÀÇ ÆíÁö(#30110) cannot find icon file. setting to default.
0323 15:05:17183 ::  Åå½î´Â Àü°¥²¿¸®(#30111) cannot find icon file. setting to default.
0323 15:05:17183 ::             Àå¾î(#30112) cannot find icon file. setting to default.
0323 15:05:17183 ::        ¹Ð±³ °æÀü(#30113) cannot find icon file. setting to default.
0323 15:05:17183 ::           ±«Áú±Õ(#30114) cannot find icon file. setting to default.
0323 15:05:17183 ::      ±«Áú Ä¡·áÁ¦(#30115) cannot find icon file. setting to default.
0323 15:05:17184 ::    Çà»óÀÎÀÇ ÆíÁö(#30117) cannot find icon file. setting to default.
0323 15:05:17184 ::    »ç±ÍÀÇ º¸¼®ÇÔ(#30118) cannot find icon file. setting to default.
0323 15:05:17188 ::      VIP-Feature(#38001) cannot find icon file. setting to default.
0323 15:05:17188 :: Tombola_ticket_today(#38002) cannot find icon file. setting to default.
0323 15:05:17188 :: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default.
0323 15:05:17189 ::   Tombola_reroll(#38004) cannot find icon file. setting to default.
0323 15:05:17189 ::   TombolaPP_spin(#38005) cannot find icon file. setting to default.
0323 15:05:17189 ::      Momo-Reroll(#38006) cannot find icon file. setting to default.
0323 15:05:17190 ::    ¼Ò¸®³ª´Â ¹æ¿ï(#40005) cannot find icon file. setting to default.
0323 15:05:17190 ::    ¿À¶ûij ¼ö¼Û¼­(#40006) cannot find icon file. setting to default.
0323 15:05:17190 :: ¿À¶ûij º¸½º ÆíÁö(#40007) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41315) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41316) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41317) cannot find icon file. setting to default.
0323 15:05:17191 ::           ÆÄȲ°©(#41318) cannot find icon file. setting to default.
0323 15:05:17192 ::           Èæ»ç°©(#41319) cannot find icon file. setting to default.
0323 15:05:17192 ::       ¼±¹°º¸µû¸®(#50041) cannot find icon file. setting to default.
0323 15:05:17192 ::   ½Â¸¶¼Òȯ¼ö·Ã¼­(#50061) cannot find icon file. setting to default.
0323 15:05:17193 ::       ½Â¸¶¼ö·Ã¼­(#50062) cannot find icon file. setting to default.
0323 15:05:17193 ::     ¿ë°¢º¸¹°»óÀÚ(#50118) cannot find icon file. setting to default.
0323 15:05:17193 ::       ¿µ¼®º¸µû¸®(#50119) cannot find icon file. setting to default.
0323 15:05:17194 ::         ¼®Ã¢Æ÷¾×(#50805) cannot find icon file. setting to default.
0323 15:05:17194 ::       ¿µÁö¹ö¼¸¾×(#50806) cannot find icon file. setting to default.
0323 15:05:17195 ::         ¸¸º´Ãʾ×(#50807) cannot find icon file. setting to default.
0323 15:05:17195 ::       »ê»Í³ª¹«¾×(#50808) cannot find icon file. setting to default.
0323 15:05:17195 ::         ¹Îµé·¹¾×(#50809) cannot find icon file. setting to default.
0323 15:05:17195 ::         ȫȭ¾¾¾×(#50810) cannot find icon file. setting to default.
0323 15:05:17195 ::           ´ëÃß¾×(#50811) cannot find icon file. setting to default.
0323 15:05:17196 ::     »ïÁö±¸¿±Ãʾ×(#50812) cannot find icon file. setting to default.
0323 15:05:17196 ::           ºó¾àº´(#50901) cannot find icon file. setting to default.
0323 15:05:17196 ::    Ȱ½É¾× Á¦Á¶¹ý(#50905) cannot find icon file. setting to default.
0323 15:05:17196 ::    Çǵ¶¼ö Á¦Á¶¹ý(#50906) cannot find icon file. setting to default.
0323 15:05:17196 ::    º¸È¯¼ö Á¦Á¶¹ý(#50907) cannot find icon file. setting to default.
0323 15:05:17196 ::    ¿µº¸¼ö Á¦Á¶¹ý(#50908) cannot find icon file. setting to default.
0323 15:05:17196 ::    ÁøÇǵ¶ Á¦Á¶¹ý(#50909) cannot find icon file. setting to default.
0323 15:05:17196 ::    Ȱ½É¾× Á¦Á¶¹ý(#50910) cannot find icon file. setting to default.
0323 15:05:17198 ::             ºÒ°æ(#70103) cannot find icon file. setting to default.
0323 15:05:17199 ::      ¿ë½ÅÀÇ Áö¿ø(#71031) cannot find icon file. setting to default.
0323 15:05:17199 ::      µ¿·á¿Í ȸÆ÷(#71047) cannot find icon file. setting to default.
0323 15:05:17199 ::     Àü±¤ÆÇº¸µû¸®(#71091) cannot find icon file. setting to default.
0323 15:05:17200 ::       °æÇèÀǹÝÁö(#72303) cannot find icon file. setting to default.
0323 15:05:17200 ::      ÃູÀÇ ±¸½½(#72304) cannot find icon file. setting to default.
0323 15:05:17201 ::         ¸¸³âÇÑö(#72308) cannot find icon file. setting to default.
0323 15:05:17201 ::    ¾ß°øÀÇ ºñÀü¼­(#72309) cannot find icon file. setting to default.
0323 15:05:17201 ::         Á־ȼú¼­(#72310) cannot find icon file. setting to default.
0323 15:05:17201 ::        ¿ë½ÅÀÇ È¯(#72311) cannot find icon file. setting to default.
0323 15:05:17201 ::      ¿ë½ÅÀÇ °ø°Ý(#72312) cannot find icon file. setting to default.
0323 15:05:17202 ::      ¿ë½ÅÀÇ ¹æ¾î(#72313) cannot find icon file. setting to default.
0323 15:05:17202 ::    ¿ë½ÅÀÇ Ãູ¼­(#72314) cannot find icon file. setting to default.
0323 15:05:17203 ::         µ·ÁÖ¸Ó´Ï(#80001) cannot find icon file. setting to default.
0323 15:05:17203 ::             ¹éÁö(#80002) cannot find icon file. setting to default.
0323 15:05:17203 ::           ºó¹°Åë(#90001) cannot find icon file. setting to default.
0323 15:05:17203 ::             ¹°Åë(#90002) cannot find icon file. setting to default.
0323 15:05:17203 ::             º¸¼®(#90004) cannot find icon file. setting to default.
0323 15:05:17204 ::             ¿µ¼®(#90006) cannot find icon file. setting to default.
0323 15:05:17204 ::             ±¤¼®(#90007) cannot find icon file. setting to default.
0323 15:05:17259 :: import math # builtin

0323 15:05:17300 :: uiTaskBar.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17319 :: uiDragonSoul.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17349 :: uiSystem.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17386 :: uiQuest.py: inconsistent use of tabs and spaces in indentation

0323 15:05:17695 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
0323 15:05:17696 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/0.jpg]
0323 15:05:17700 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg
0323 15:05:17701 :: CANNOT_FIND_PACK_FILE [d:/ymir work/effect/affect/damagevalue/poison0.jpg]
0323 15:05:25089 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010).  Automatic conversion will be attempted.
0323 15:05:25197 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25197 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/°ø¿ë/hay_01.gr2]
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25198 :: CArea::SetBuilding: There is no data: d:/ymir work/zone/°ø¿ë/hay_01.gr2
0323 15:05:25202 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr
0323 15:05:25202 :: CANNOT_FIND_PACK_FILE [d:/ymir work/zone/b/obj/general_obj_pieceofstone01 .mdatr]
0323 15:05:26424 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg
0323 15:05:26442 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcassassineffect16-bottom.jpg
0323 15:05:26462 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam.jpg
0323 15:05:26463 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectw_ring.jpg
0323 15:05:26464 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwhite_sphere.jpg
0323 15:05:26465 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectwind.jpg
0323 15:05:26465 :: CResourceManager::GetResourcePointer: File not exist D:Ymir WorkpcshamaneffectW_star.jpg
0323 15:05:26466 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectjigam_ring.jpg
0323 15:05:26466 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectgyeokgong_triple_loop_2.jpg
0323 15:05:26467 :: CResourceManager::GetResourcePointer: File not exist D:Ymir Workpcshamaneffectnoe_w_ring.jpg
0323 15:05:26857 :: CResourceManager::GetResourcePointer: File not exist D:/Ymir Work/pc2/warrior/action/dance_6.GR2
0323 15:05:30182 :: game.py: inconsistent use of tabs and spaces in indentation

0323 15:05:30284 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub
0323 15:05:30285 :: CANNOT_FIND_PACK_FILE [d:/ymir work/ui/game/quest/slot_button_01.sub]
0323 15:05:31133 :: CResourceManager::GetResourcePointer: File not exist season1npcbackchonseason1npcbackchonbackchon.dds
0323 15:05:31134 :: CANNOT_FIND_PACK_FILE [season1/npc/backchon/season1/npc/backchon/backchon.dds]
0323 15:05:31469 :: Unknown packet header: 96, last: 3 81
0323 15:05:31537 :: # clear __builtin__._

0323 15:05:31538 :: # clear sys.path

0323 15:05:31538 :: # clear sys.argv

0323 15:05:31538 :: # clear sys.ps1

0323 15:05:31538 :: # clear sys.ps2

0323 15:05:31538 :: # clear sys.exitfunc

0323 15:05:31539 :: # clear sys.exc_type

0323 15:05:31539 :: # clear sys.exc_value

0323 15:05:31539 :: # clear sys.exc_traceback

0323 15:05:31539 :: # clear sys.last_type

0323 15:05:31539 :: # clear sys.last_value

0323 15:05:31539 :: # clear sys.last_traceback

0323 15:05:31539 :: # clear sys.path_hooks

0323 15:05:31539 :: # clear sys.path_importer_cache

0323 15:05:31539 :: # clear sys.meta_path

0323 15:05:31540 :: # clear sys.flags

0323 15:05:31540 :: # clear sys.float_info

0323 15:05:31540 :: # restore sys.stdin

0323 15:05:31540 :: # restore sys.stdout

0323 15:05:31540 :: # restore sys.stderr

0323 15:05:31618 :: granny_shared_vbs:
0323 15:05:31619 :: 	0: 40
0323 15:05:31619 :: 	1: 20
0323 15:05:31619 :: 	2: 20
0323 15:05:31620 :: 	3: 40
0323 15:05:31620 :: 	4: 1
0323 15:05:31620 :: 	5: 20
0323 15:05:31621 :: 	6: 1
0323 15:05:31621 :: 	7: 0
0323 15:05:31621 :: 	8: 0

 

Anybody can help? :s

 

Regards

0323 15:05:31469 :: Unknown packet header: 96, last: 3 81

 

use client mainline_sg and server mainline  or client novaline and server mainline.

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.