• 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. D

    Windows Shop problem

    Could you try navigating to the folder: "data/globalevents/scripts/others" and then open "shop.lua" and paste the contents here?
  2. D

    Windows Shop problem

    Are you sure you gave the right script? I see no mention of "TIBIAWS Shop" or the "z_ots_communication" table in that script.
  3. D

    Adding soul points on level gain.

    Well it isn't implemented in a way where you can easily change it like that sadly. Also soul points are both stored and transmitted to the client through an 8-bit unsigned integer. Which means the maximum amount of soul points a player can have are 255 soul points. Some workarounds could be...
  4. D

    Windows Change new player database entry Znote AAC

    Seems like it is done here in the latest revision of ZnoteAAC: https://github.com/Znote/ZnoteAAC/blob/master/engine/function/users.php#L1175 However a little longer down you see that if you have configured ZnoteAAC to work with TFS 1.x it removes that field from the insert query. I don't know...
  5. D

    Solved Error on Login

    Replace that with this: <?xml version="1.0" encoding="UTF-8"?> <groups> <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" /> <group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" /> <group id="3"...
  6. D

    Solved Error on Login

    Interesting. Are you by chance missing the XML file "groups.xml" from the data/XML folder? If not, can you show us its contents?
  7. D

    Solved [TFS 1.2] World Chat Channel !mute not working.

    The space in after !mute is necessary as you substring the first 6 characters of the message which should include the space. Also you need return false to tell the server not to send the usual message. You can give this a try: local CHANNEL_HELP = 3 local muted =...
  8. D

    Solved cannot open config.lua: No such file or directory

    Use "cd" to change command prompt directory to your OT server. It is trying to find config.lua in "C:\Users\Administrator" So do: "cd Downloads\Global10.90" And from there run "theforgottenserver"
  9. D

    Change playersonline.php ZNOTE

    Something like this might be what you want. Never worked with ZnoteAAC so there might be some functions that let you do it more easily. <?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?> <h1>Who is online?</h1> <?php $array = online_list(); if ($array) { ?>...
  10. D

    OpenTibia SharpMapTracker 0.8.1 by Jo3Bingham

    For those of you who want the source code I have made a pull request here: https://github.com/jo3bingham/sharpmaptracker
  11. D

    OpenTibia SharpMapTracker 0.8.1 by Jo3Bingham

    SharpMapTracker v0.8.22 update by drac0ner Changelog Added support for Tibia 10.90 & 10.91 Fixed a client launch bug Download SharpMapTracker v0.8.22 Notes I started looking at this project yesterday so some bugs might occur. I've only ran the tracker for a 1 minute test and also tried some...
Back
Top