Jump to content

Metin2 Dev

Bot
  • Posts

    2151
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Metin2 Dev

  1. SERVER_IP and ..._PORT was declared at the top of this file.
  2. Here the __RefreshServerList: [Hidden Content]
  3. I have this already... and import serverinfo.. this is my problem xD [Hidden Content]
  4. Go to google and type kraizy.tgz then go to the first link.
  5. Is there any way to fix it? I don't think this is normal behavior.
  6. I fixxed the problem already, but thanks! I think i will use Python 2.7.12 aswell. Currently i got this error: I dont know where i need to import REGION_DICT.. Do you know howto fix?
  7. Here are my steps what I've done: Client/UserInterface.cpp: bool CheckPythonLibraryFilenames() { for (int i = 0; *sc_apszPythonLibraryFilenames[i] != '\n'; ++i) { std::string stFilename = "NameOfTheFolder\\"; stFilename += sc_apszPythonLibraryFilenames[i]; if (_access(stFilename.c_str(), 0) != 0) { return false; } MoveFile(stFilename.c_str(), stFilename.c_str()); } return true; } Root/System.py: sys.path.append("NameOfTheFolder") Extern/include/Python-2.7/pyconfig.h: #ifndef PYTHONPATH # define PYTHONPATH ".\\DLLs;.\\NameOfTheFolder;.\\NameOfTheFolder\\plat-win;.\\NameOfTheFolder\\lib-tk" #endif Python-2.7.13/PC/pyconfig.h: #ifndef PYTHONPATH # define PYTHONPATH ".\\DLLs;.\\NameOfTheFolder;.\\NameOfTheFolder\\plat-win;.\\NameOfTheFolder\\lib-tk" #endif I withdraw compiled python27_d.dll and python27_d.lib from Python-2.7.13\PCbuild\amd64 and I do those things: python27_d.dll ranem to python27.dll and input to client folder python27_d.lib input to extern\lib When I try to start client, it gives me this error: What am I doing wrong?
  8. Exactly! Thank you a lot! #SOLVED
  9. Hello guys! I wanna rename lib folder, but I know that this folder is loaded by system.py and binary. In binary I've found only one record which containt "lib" so I replaced it. bool CheckPythonLibraryFilenames() { for (int i = 0; *sc_apszPythonLibraryFilenames[i] != '\n'; ++i) { std::string stFilename = "NameOfTheFolder\\"; stFilename += sc_apszPythonLibraryFilenames[i]; if (_access(stFilename.c_str(), 0) != 0) { return false; } MoveFile(stFilename.c_str(), stFilename.c_str()); } return true; } Then in system.py: sys.path.append("NameOfTheFolder") But client crashes immediately after launch. Does anybody know where to edit next?
  10. Why don't you change images in binary sources?
  11. PythonEventManager.cpp const long c_lNormal_Waiting_Time = 0;
  12. No, these are information about how to create LoginInfo file.
  13. Hello guys! I have simple question. I'm searching for string, which contains: 알림: 파일 모드입니다. You can find it every time at first line of client debug cmd. I tried to look for it in root, client binary and libraries. But I didn't find anything. Does anybody know where it is? Thanks!
  14. Following problem: My client starts for a short while... so the client open and close after 3-4 seconds. I found the following line at the log.txt: LoginWindow.__LoadScript.LoadObject - <type 'exceptions.OverflowError'>:Python int too large to convert to C long full log:: I found two solutions how to fix this problem: 1. add following to the PythonUtils.cpp: Same problem... I found an old thread at this forum who told me this: Add this to system.py: Change at root/locale/uiscript all: 0x...... = CTOA(".....") After this i got another error: prntscr.com/dnjp0z full log: Syserr was empty at both errors!! Anyone any idee?
  15. You have to add objects to Zone and Property packages, not only into Zone.
  16. Just add those files into Property package.
  17. Try to rename ymir work folder on D: to something else.
  18. I check ı have dds file I think problem is dds
×
×
  • 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.