Jump to content
Metin2 Network
Create New...

Leaderboard

Popular Content

Showing content with the highest reputation on 10/18/2024 in all areas

  1. Freebsd 13.2+ Mariadb 10.6.16 pkg install python3 Download: [Hidden Content]
    3 points
  2. Download: Martysama Download link.rar @SFX has fix for you search shop buttons position Fix: uiikashop.py For those who do not know how to install it, you have here the OVA and Game with Mysql tar.gz Download: Ova Download.rar Ova: User: root Password: password Navicat: (You need to create SSH Tunnel) User: root Password: password
    2 points
  3. Hi Guys, I'm sharing a performance system with you today. If you spawn a lot of mobs, you will get significant fps drops. Let me show you a GIF. Before/ : [Hidden Content] After/: [Hidden Content] Download: [Hidden Content]
    2 points
  4. uitooltip.py Find: def AddItemData(self Add before def ObrazPrzedmiotu(self, file): iconFile = str(file) itemImage = ui.ImageBox() itemImage.SetParent(self) itemImage.Show() itemImage.LoadImage(iconFile) itemImage.SetPosition(itemImage.GetWidth()/ 2 - 5+82, self.toolTipHeight) self.toolTipHeight += itemImage.GetHeight() self.childrenList.append(itemImage) self.ResizeToolTip() in this line we edit the X position of the image itemImage.SetPosition(itemImage.GetWidth()/ 2 - 5+82, self.toolTipHeight) Exemple: if 43101 == itemVnum: if 0 != metinSlot: self.ObrazPrzedmiotu("icon/item/43001.tga")
    2 points
  5. Others people want 2k pln for it packer, funny. Just find #define ENABLE_LZ4_PACK_COMPRESSION Download: [Hidden Content]
    2 points
  6. Since everyone wants a gateway for their servers, I paid a good web developer to make one for my metin2 server, this gateway is tested and a lot of payments have been made through it. Config: gateway/includes/functions.php Free test: [Hidden Content] Username: metin2network password: Metin2Network@ Download: gateway.rar Archive password: metin2.network It is very easy to change the design: gateway\images
    1 point
  7. I shared this because as a player it is difficult to call it up, and I found when I was playing around with copying items. Find Item_manager.cpp void ITEM_MANAGER::RemoveItem(LPITEM item, const char * c_pszReason) { if (!item) // Fix game.core return; and #ifndef DEBUG_ALLOC void ITEM_MANAGER::DestroyItem(LPITEM item) #else void ITEM_MANAGER::DestroyItem(LPITEM item, const char* file, size_t line) #endif { if (!item) // Fix game.core { sys_err("co jest kurwa."); return; } and void ITEM_MANAGER::GetPlayerItem(LPITEM item, TPlayerItem* result) { if (!item) return;
    1 point
  8. download: [Hidden Content]
    1 point
  9. Thank you for the post ALLex Now we will take care that your topic reaches many people by adding tags Forum Description : Metin2 Server Files, Server Files, Metin2 Private Servers, Metin2, Metin2 Systems, C++ and Python, Metin2 Home Pages, Metin2 Private Server, Metin2 Download, Metin2 Support, Metin2 Forum, Metin2 Pvp Servers, Errors, Bugs, Requests, Metin2 Pvp Forum, Everything About Metin2. Tags: #Metin2 Server Files, #Server Files, #Metin2 Private Servers, #Metin2, #Metin2 Systems, #C++ and Python, #Metin2 Home Pages, #Metin2 Private Server, #Metin2 Download, #Metin2 Support, #Metin2 Forum, #Metin2 Pvp Servers, #Errors, #Bugs, #Requests, #Metin2 Pvp #Forum .
    1 point
  10. 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()
    1 point
  11. download: [Hidden Content]
    1 point
  12. 0 points
×
×
  • 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