Okay, I think cleaned sources are better for ya.
Here is cleaned mainline_released sources.
Informations:
Cryptopp: 5.6.2 Boost: 1.55
Fixes:
- All mounts can attack
- All toolsets are set to v120_xp
- Some fixes with Python 2.2
Definitions:
ENABLE_COSTUME_SYSTEM
ENABLE_ENERGY_SYSTEM
ENABLE_DRAGON_SOUL_SYSTEM
ENABLE_BELT_SYSTEM
Download: [Hidden Content]
Password: metin2dev
Tutorial to delete difference between TRUE and true:
Yea, in this sources is bug with true and TRUE, they can not distinguish TRUE and true.
Here is an solution to fix it:
In PythonLauncher.cpp find:
PyModule_AddIntConstant(builtins, "TRUE", 1);
And after that add these lines:
PyModule_AddIntConstant(builtins, "FALSE", 0);
PyModule_AddIntConstant(builtins, "True", 1);
PyModule_AddIntConstant(builtins, "False", 0);