Jump to content

Denizeri24

Member
  • Posts

    188
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Denizeri24

  1. check your database (mysql) level integer type, its probably TINYINT (BYTE / uint8_t) chech with SMALLINT
  2. check your mob_proto.txt, you have empty damage value for temporarily fix, change your function; CHARACTER::GetMobDamageMax() { if (m_pkMobData->m_table.dwDamageRange[1] == 0) { return 1; } else { return m_pkMobData->m_table.dwDamageRange[1]; } }
  3. I didn't tell you to debug the core file, i told you to debug the game file. i change my words; try debugging --> learn debugging..
  4. etc/make.conf CFLAGS += -march=x86-64 CXXFLAGS += -march=x86-64 rebuild crpytopp (pkg delete crpytopp --> make clean --> make install) and game. If the error is not resolved, search this; Program terminated with signal SIGILL, Illegal instruction. Privileged opcode.
  5. etc/make.conf CC = clang-devel CXX = clang++-devel Freebsd has changed default compiler (gcc to clang). The devel version is the developer version and the devel version does not come by default in operating systems. Clang-Devel --> Version 12 or 13 Clang --> Version 8
  6. whats your compiler? gcc or clang? and what versions? and when you compile from ports, what you using compiler? The reason for getting errors in cryptopp is usually compiler diffs (optimizations) and c++ versions..
  7. dont use pkg. use make install (install from ports)
  8. The size of the map will not affect the amount of memory. When you reduce the cache clear time, old area are deleted when the player moves away from the area. This way you can even use an 1024x1024 size map.
  9. block all ports except game / auth ports. limit bandwith for per IP. (just config your freebsd firewall)
  10. what the fucking stupid deleted my comment without notice?
  11. ~10/15 minute. thanks for intel c++ optimizations
  12. install MFC libraries (visual studio) OR #include <afxres.h> ---> #include <windows.h>
  13. wtf is this, how many times do you have to reboot freebsd? I just turn off sendmail, that's more than enough..
  14. for better; constexpr char szTmpBuf[1024 + 1] = {};
  15. directx sdk indir mss 9.3b gerekli 64 bit için, içinde derlenmiş bulunuyor. speedtree v7 gerekli, aynı şekilde sdk içinde mevcut 64 bit library.
  16. some cursor types missing (e.g MAGIC) That is the problem...
×
×
  • 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.