Premium jking 191 Posted November 1 Premium Share Posted November 1 Hello, I’d like to share my location-saving and teleportation system with you. The system uses pseudo-caching, so it doesn’t overload the database. It has been tested on a server with over 1,000 players online without any issues. Preview: You can find it on GitHub: This is the hidden content, please Sign In or Sign Up or via metin2.download This is the hidden content, please Sign In or Sign Up Metin2 Download 34 5 Link to comment Share on other sites More sharing options...
ARK 0 Posted November 3 Share Posted November 3 thanks for release bro but main question is When Sanctum s3? 1 Link to comment Share on other sites More sharing options...
TIMEK 0 Posted 5 hours ago Share Posted 5 hours ago saved_locations_manager.cpp:322:6: error: use of undeclared identifier 'IS_REQUIRED_ITEM_MAP' Gdzie to zadeklarować ? Link to comment Share on other sites More sharing options...
Premium jking 191 Posted 3 hours ago Author Premium Share Posted 3 hours ago (edited) 1 hour ago, TIMEK said: saved_locations_manager.cpp:322:6: error: use of undeclared identifier 'IS_REQUIRED_ITEM_MAP' Gdzie to zadeklarować ? char.h: // find: extern int g_nPortalLimitTime; // add below: extern bool IS_REQUIRED_ITEM_MAP(DWORD dwMapIndex); char.cpp: // add under includes: bool IS_REQUIRED_ITEM_MAP(DWORD dwMapIndex); bool IS_REQUIRED_ITEM_MAP(DWORD dwMapIndex) { switch (dwMapIndex) { case 71: // pajaki v2 case 72: // grota case 73: // grota v2 return true; } if (dwMapIndex > 10000) { return true; } return false; } Edited 3 hours ago by jking Link to comment Share on other sites More sharing options...
Recommended Posts