Jump to content

Jira

Premium
  • Posts

    191
  • Joined

  • Days Won

    2
  • Feedback

    0%

Everything posted by Jira

  1. you followed that tutorial ? You changed public ip with internal ip ( )? You get kicked by server because map location inserted an wrong ip(maybe public ip and you use internal ip). This is the reason in my opinion.
  2. I don't have any issues with internal and public ip. I don't changed nothing on client side and i don't use sura starter bla bla. I edited the sv side to get the right ip, that's all.
  3. I think the problem is from sv side not from client side, please what says syslog after kick?
  4. Right, but most of private servers has linked python static and removed that function ofc there is another method. But thx for tool.
  5. try self.AppendTextLine(str(localeInfo.TOOLTIP_AUTO_POTION_REST % (100.0 - ((usedAmount / totalAmount) * 100.0))), self.POSITIVE_COLOR)
  6. That's happened when _CONTAINER_DEBUG_LEVEL > 0. You have two options to solve that assert: 1) set _CONTAINER_DEBUG_LEVEL to 0; 2) add the data for tables(monarch, land, banword) , of course you can compile on release mode(_CONTAINER_DEBUG_LEVEL = 0). [Hidden Content] [Hidden Content] when i don't have bandword table or it's empty. Btw u can check the vector if it's empty like this
  7. You need a compiler to do your job, It's called GNU C/C++ compiler [Hidden Content] pkg install gcc or cd /usr/ports/lang/gcc/ && make install clean
  8. The crash is created by cryptopp, maybe is unstable version. The version of cryptopp for client is ? Check if it's the same version.
  9. I think something is wrong with your regen files. Maybe is a crash core. Someone force the limit on handshake.(flood)
  10. upgrade the cryptopp librarry for client side and see whats happen
  11. You can generate projects for many IDEs(visual studio, clion, eclipse, etc) and it's easy to learn, also u can use third party libraries. Of course you can speed your build for your own project via cotire ,also there is alternatives for cmake (premake5, meson, etc).
  12. btw instead of extern u can use vcpkg
  13. [Hidden Content] BIGINT, maybe there in your code is mistakes
  14. there is build_locale_string.py and merge, just use it.
  15. Instead of reward you can auto give the item, but be careful with inventory space.
  16. Cannot open bla bla. you don't have MFC stuff installed, windows.h instead of afxres.h and for MilesLib error add after header guard/pragma inside of stdafx.h #define WINDOWS_IGNORE_PACKING_MISMATCH
  17. battle.cpp return CPVPManager::instance().CanAttack(ch, victim); to bool bIsFarmMap = false; switch (ch->GetMapIndex()) { case 113: case 219: case 240: case 351: case 352: { if (victim->IsPC() && ch->IsPC()) bIsFarmMap = true; } break; } return CPVPManager::instance().CanAttack(ch, victim, bIsFarmMap); pvp.h bool CanAttack(LPCHARACTER pkChr, LPCHARACTER pkVictim); to bool CanAttack(LPCHARACTER pkChr, LPCHARACTER pkVictim, bool bIsFarmMap = false); pvp.cpp bool CPVPManager::CanAttack(LPCHARACTER pkChr, LPCHARACTER pkVictim) to bool CPVPManager::CanAttack(LPCHARACTER pkChr, LPCHARACTER pkVictim, bool bIsFarmMap) inside of body after if ( LC_IsYMIR() == true || LC_IsKorea() == true ) { if ( pkChr->GetPKMode() == PK_MODE_PROTECT || pkVictim->GetPKMode() == PK_MODE_PROTECT ) { return false; } } add if (bIsFarmMap == true) return false;
  18. register keyword is deprecated since c++11, but you compile c file as cpp file, that's wrong, please use lzo instead of minilzo or compile it with c compiler.
×
×
  • 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.