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

Recent content by fluidsonic

  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.
Back
Top