• 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 Load Monster/npc

    What files are in your data/world directory? Is there something in the file data/world/<your-map-name>-spawn.xml? Sounds like your map file (<name>.otbm) doesn't match the corresponding <name>-house.xml and <name>-spawn.xml. If you copy the map somewhere then always copy the other two files...
  2. fluidsonic

    problem with team battle event mod

    Looking at the TFS code I think onLogout is somewhat buggy. Try replacing <event type="logout" name="teambattleLogout" event="script"><![CDATA[ domodlib('teamFunctions') function onLogout(cid) clearTeamEventStorages(cid) if thereIsAWinner() then endTeamEvent("KO") end return...
  3. fluidsonic

    Windows high synchronization time

    Synchronization is very database-intense so the bottleneck is most likely there. I don't think that there are any other options which would make sense. You said that you have a new database. How did you update it and what database are you using now?
  4. fluidsonic

    Linux Segmentation fault.

    You're using an items.xml which is newer than what your server supports. You have to use the items.xml provided with your server.
  5. fluidsonic

    Compiling get current player

    uhm... You declared a variable player but didn't assign anything to it. Thus it points to some random location in memory which causes a crash when you try to use the variable. You cannot change any players in outfits.cpp while loading the outfits. What are you trying to achieve?
  6. fluidsonic

    Compiling get current player

    Still no code here :P
  7. fluidsonic

    Solved MYSQL/Database

    Look for file "mysql.sql" - usually in the folder "schemas" of your TFS.
  8. fluidsonic

    Solved MYSQL/Database

    But you didn't set server_path before trying Cronox' config.lua. And in line 1 there is still a comment.
  9. fluidsonic

    Solved Connect problem

    You added multiple forwards for ports 7171, 7172 and 80 - this is not possible. Remove all forwards where the Target IP Address is NOT 192.168.0.10. Also remove all forwards for MySQL port 3306. This is not necessary and you should NEVER make your database accessible from the internet. Also...
  10. fluidsonic

    Solved Problem solved!

    Yes. It might improve the server performance :)
  11. fluidsonic

    Solved Problem solved!

    items.otb AND items.xml
  12. fluidsonic

    Solved Connect problem

    So port 7171 is still not open and reachable. Maybe a firewall is still blocking it? Windows Firewall, maybe? Can you please post your router configuration regarding port forwarding, your local IP address (enter "ipconfig" in command line), your global IP address (What's My IP Address...
  13. fluidsonic

    Solved team battle event

    Try replacing all occurrences of math.mod with math.fmod
  14. fluidsonic

    Solved Problem solved!

    Since it's actually the same one we are using these should work: https://github.com/fluidsonic/tyano-core/tree/master/server/data/items
  15. fluidsonic

    Solved MYSQL/Database

    The website is coded quite bad... You have to remove all comments from your config.lua, i.e. everything which starts with "--" up to the end of the line.
  16. fluidsonic

    Solved MYSQL/Database

    The website you are trying to install has a configuration file. Open it and look for the setting "server_path". You have to set this to the path to your TFS.
  17. fluidsonic

    Windows high synchronization time

    Assuming TFS 0.3.7-pre. How many houses and auctions does your server have? Synchronization time gets higher the more houses and auctions you have in your database. More likely is a problem with your database. Which one do you use? sqlite? MySQL? If you use sqlite you should move to MySQL. If...
  18. fluidsonic

    Compiling get current player

    You must post more of your code, otherwise we can just guess what you're doing wrong. Most likely the variable "player" is either 0 at this location or the player object was already deleted. Whatever you are trying to achieve, you should try to do it in LUA.
  19. fluidsonic

    Lib Ubuntu

    Tricky one... What TFS are you using? Can you please post your output when running ./configure and make? Also please post the output of the following commands: dpkg -l "*crypto*" find /lib -iname "*libcrypto*" 2>/dev/null
  20. fluidsonic

    Solved Problem solved!

    Don't change items.otb and items.xml manually. If the version doesn't match this usually means that plenty of items are wrong. Look for the items.otb which matches your targetted Tibia version and use the most recent items.xml which works with your TFS. We don't know your TFS or Tibia version...
Back
Top