Jump to content
Metin2 Network
Create New...

ALLex

Moderator
  • Posts

    102
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ALLex

  1. let me check, i just share from other forum, i didn`t check it :))
  2. Hello Friends You know that so many files are shared in the Forum that some of them are compiled with GCC8 - GCC9 or GCC10. There is also MySQL, of course, if it is on MySQL, MySQL 5.6 or MariaDB 10.3 is used. That's why I will share 2 different Freebsd VDIs on a single topic. 1 - Mysql 5.6 (Version) 2 - MariaDB 10.3 (Version) Freebsd Login ; User : root Password : dev Download: Google Drive: [Hidden Content] Dosyaupload [Hidden Content]__MySQL_-_MariaDB
  3. Automatic Message This topic has been moved from "Resources and information metin2 servers > [C++ / Python] Metin2 Systems" to "[C++ / Python] Metin2 Systems > Resources and information metin2 servers > Metin2 Fixes"
  4. Automatic Message This topic has been moved from "Resources and information metin2 servers > [C++ / Python] Metin2 Systems" to "[C++ / Python] Metin2 Systems > Resources and information metin2 servers > Metin2 Fixes"
  5. ALLex

    New Forum Theme

    What do you think of the new theme?
  6. EterPythonLib\PythonWindowManagerModule.cpp // Search for this function PyObject* wndImageLoadImage(PyObject* poSelf, PyObject* poArgs) { // ... existing code ... } // Add below PyObject* wndImageUnloadImage(PyObject* poSelf, PyObject* poArgs) { UI::CWindow* pWindow; if (!PyTuple_GetWindow(poArgs, 0, &pWindow)) { return Py_BuildException(); } if (!((UI::CImageBox*)pWindow)->UnloadImage()) { return Py_BuildException("Failed to unload image"); } return Py_BuildNone(); } // Search for this method registration { "LoadImage", wndImageLoadImage, METH_VARARGS }, // Add below { "UnloadImage", wndImageUnloadImage, METH_VARARGS }, EterPythonLib\PythonWindow.cpp // Search for this method BOOL CImageBox::LoadImage(const char* c_szFileName) { // ... existing code ... } // Add below BOOL CImageBox::UnloadImage() { if (!m_pImageInstance) return FALSE; OnDestroyInstance(); return TRUE; } EterPythonLib\PythonWindow.h // Search for this method declaration BOOL LoadImage(const char* c_szFileName); // Add below BOOL UnloadImage(); root/ui.py # Search for this class definition class ImageBox(Window): # ... existing members ... # Find these lines self.eventFunc = {} self.eventArgs = {} # Add below self.imageLoaded = False # ... # Search for this line where you load the image wndMgr.LoadImage(self.hWnd, imageName) # Add below self.imageLoaded = True # ... # Search for this destructor definition def __del__(self): # ... existing code ... # Add below if self.imageLoaded: self.UnloadImage()
  7. Download: Metin2.Network - Empire War Rework.rar
  8. [Hidden Content] Download: [Hidden Content]
×
×
  • Create New...

Important Information

Terms of Service

Write what you are looking for and press enter or click the search icon to begin your search