• 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!

Search results

  1. fluidsonic

    Solved Problem solved!

    Looks like that our items.otb and items.xml files don't match. One of them is the wrong Tibia version.
  2. fluidsonic

    Lib Ubuntu

    Same error as before or new one? Try compiling your server again after running the command which Cronox posted.
  3. fluidsonic

    Linux Segmentation fault.

    okay I see that there are actually bugs in in configmanager.cpp of 0.2.x TFS. I modified the file a bit. Unzip it from and check out if it works better.
  4. fluidsonic

    Linux Segmentation fault.

    Append the flag to CXXFLAGS in the file "Makefile".
  5. fluidsonic

    Linux Segmentation fault.

    Did you compile it on your own? For some reason it doesn't include debugging information! You should compile again with -ggdb to get a more helpful output. What TFS version are you using btw?
  6. fluidsonic

    Linux Segmentation fault.

    What does this command in gdb output after a crash? bt
  7. fluidsonic

    Solved Error on TFS

    What's the complete log output during startup?
  8. fluidsonic

    Linux - Check on running server

    Depends on how you start your server. # open a new "screen" for your server and name that screen "server": screen -S server # run your server: ./theforgottenserver # leave the screen: # press Ctrl+A, then press D # (or just close Putty) # to reconnect to your screen: screen -dr...
  9. fluidsonic

    Trying to start my server on my Ubuntu VPS. Errors with MAP

    Also note that Linux is case sensitive. So world.otbm and World.otbm are different file names. So make sure that the case is the same.
  10. fluidsonic

    Having a little Issue compling to Linux..!

    Did you run this command? apt-get install libboost-dev libboost-system-dev libboost-filesystem.dev libboost-date-time-dev libboost-regex-dev libboost-thread-dev libgmp3-dev liblua5.1-0 liblua5.1-0-dev lua5.1 libsqlite0-dev libsqlite3-dev sqlite3 libmysql++-dev libmysqlclient15-dev...
  11. fluidsonic

    Having a little Issue compling to Linux..!

    In the docs folder.
  12. fluidsonic

    Having a little Issue compling to Linux..!

    It's all written in the README file. That's why it called like it is ;) apt-get install libboost-dev libboost-system-dev libboost-filesystem.dev libboost-date-time-dev libboost-regex-dev libboost-thread-dev libgmp3-dev liblua5.1-0 liblua5.1-0-dev lua5.1 libsqlite0-dev libsqlite3-dev sqlite3...
  13. fluidsonic

    Having a little Issue compling to Linux..!

    Forgot ./autogen.sh and ./configure before making?
  14. fluidsonic

    Having a little Issue compling to Linux..!

    Show us your console input and output.
  15. fluidsonic

    [Germany Host] Please Help

    Depends on what you want to pay. Hetzner Online AG: Root Server EX40
  16. fluidsonic

    [Database] Password enconding?

    It's fine as it is. The actual problem is that you need them in plain text. Find another solution to whatever you are trying to achieve.
  17. fluidsonic

    Compiling problem compiling linux ubuntu

    And please please please don't use --enable-root-permission since it is a security risk.
  18. fluidsonic

    Lua How do I make a stackable item unstackable?

    If I read the TFS sources correctly you should not change the stackable property of any item. It will break the netcode and most likely cause your player's Tibia to crash. The stackable property on the server must always be the same value as on the client. Same for item group.
  19. fluidsonic

    Compiling Linux Compiling Problem HELP

    Just run the command I posted instead of "make" and post the results here.
  20. fluidsonic

    Compiling Linux Compiling Problem HELP

    Did you define BOOST_POSIX_API or BOOST_WINDOWS_API anywhere? Try the following in the directory with your TFS sources and post what the output is: grep -r "BOOST_POSIX_API|BOOST_WINDOWS_API" *
Back
Top