• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. fluidsonic

    Compiling Error - Ubuntu 13.04 64 bits REV3777

    Check out the search - many people have the same problem: http://otland.net/f16/compiling-forgotten-server-errors-debian-7-1-wheezy-192944/#post1862688
  2. fluidsonic

    Compiling Illegal instruction

    Did you compile the server on the same machine you're running it on? If not then you should do that.
  3. fluidsonic

    Developer's question about client>server communication

    If you need to stay compatible with Tibia then check out the Open Source projects. If you don't need to stay compatible / do something new: Don't use Tibia's networking logic. It's really awful and the worst I've seen so far. GameDev.net Game Development Community is a good place for such...
  4. fluidsonic

    Compiling compiling error

    Try adding -pthreads to AM_CXXFLAGS in your Makefile.am Try updating Dev-C++ and the tools it uses. Does it use MingW? gcc/g++?
  5. fluidsonic

    Compiling compiling error

    ld: cannot find -lboost_system-mt Sounds like you didn't install the correct version of boost. But I cannot tell you much more than that since I only work with Cygwin on Windows - neither with Dev-C++ nor with Visual Studio (I guess you use Dev-C++?).
  6. fluidsonic

    "Server under maintenance"

    Items will spam your map if you just disable map cleaning ;) You need something which removes your items - even if it's just a server reboot every night.
  7. fluidsonic

    "Server under maintenance"

    We had a similar problem a few weeks ago. The server hang when trying to clean the map. We never found the actual root of the problem as this was quite complex. The server had a long decaying time for corpses and so there were thousands of new corpses after a short time - maybe that was the...
  8. fluidsonic

    Compiling Error - Ubuntu 13.04 64 bits REV3777

    In Makefile.am look for -Werror and remove it.
  9. fluidsonic

    Compiling Compiling on windows 64bit

    You should upgrade libboost to a newer version.
  10. fluidsonic

    Compiling [Debian 7.1] [0.3.6] undefined reference to symbol 'pthread_getspecific@@GLIBC_2.0'

    This looks fine. - - - Updated - - - Try ./autogen.sh ./configure --enable-mysql make clean make -j3
  11. fluidsonic

    Compiling [Debian 7.1] [0.3.6] undefined reference to symbol 'pthread_getspecific@@GLIBC_2.0'

    Open Makefile.am find AM_CXXFLAGS = $(XML_CPPFLAGS) $(OTSERV_FLAGS) $(LUA_CFLAGS) $(DEBUG_FLAGS)\ and replace by AM_CXXFLAGS = -pthread $(XML_CPPFLAGS) $(OTSERV_FLAGS) $(LUA_CFLAGS) $(DEBUG_FLAGS)\ hth, Marc
  12. fluidsonic

    Compiling [Debian 7.1] [0.3.6] undefined reference to symbol 'pthread_getspecific@@GLIBC_2.0'

    Does that help? Answer : Bug#714267: iodine: FTBFS: undefined reference to symbol '__pthread_register_cancel@@GLIBC_2.3.3'
  13. fluidsonic

    Solved Depot bugged

    The items.otb on the server does not match the items used for your map. Most likely there is a Tibia version mismatch somewhere.
  14. fluidsonic

    Solved Hostname problem external ip not working

    So SSH is up, running and reachable. My guess is that the problem is somewhere around the router. Why do you want to make SSH available for the whole world in the first place? If you cannot configure your router to route port 22 to your server, you can try two different approaches: Use...
  15. fluidsonic

    Solved Hostname problem external ip not working

    What does this output? netstat -lntp | grep ssh
  16. fluidsonic

    Solved Hostname problem external ip not working

    Ah, that's what you mean by external IP... Then most likely either port 22 isn't routed to your server in your router or the router uses port 22 on its own.
  17. fluidsonic

    Solved Hostname problem external ip not working

    I don't either :P And you connect to your server with SSH using 192.16x.x.xx? And the PC you use also has 192.16x.x.something? And ssh is definitely running on your server?
  18. fluidsonic

    Solved Hostname problem external ip not working

    Usually you can do whatever you want with your hosts and hostname file - SSH will still work. What does ifconfig output?
  19. fluidsonic

    Windows Server clean takes 2 minutes, help

    As this is a completely new question you should open a new thread for it. Otherwise most people won't even notice your questions ;)
  20. fluidsonic

    Solved [Compiling] TFS errors | Debian 7.1 Wheezy |

    hehe, you're welcome ^^
Back
Top