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

    Solved [PHP] Check server players

    Thanks. I see using this I can get a lot of useful informations!
  2. D

    Solved [PHP] Check server players

    Hi, guys! I'm making something like server list - but, I need to know how to get how many players are online. Is there any other way than look for "xx players online" on ots website?
  3. D

    Windows [C#/C++] How to read .spr and .otb files?

    Hi. I'm programming in C# and C++ and I've got simple question: how to read .spr and .otb files? Please a sample code or something other.
  4. D

    [8.7] Simple Outfit Changer

    Sorry, I can't :(
  5. D

    [8.7] Simple Outfit Changer

    Hello. It's simple program for Tibia that allows you to change your outfit to every possible (all looktypes too). Download: speedy*****malware.localhost Scan: virustotal.com
  6. D

    Clean database with a command?

    I don't know, how to make a SQL query, but I made something other. Put this PHP script on your server, run once and delete: $conn = mysql_connect('localhost', 'root', 'password'); mysql_select_db('ots', $conn); $accounts = mysql_query('SELECT * FROM accounts WHERE id > 1') while($account =...
  7. D

    Shell - gg

    Proszę: http://www.zdrowie.med.pl/ekg/pic/ekg2.jpg :) @Topic: cd /sciezka/do/pliku/ screen -S gg ./plik CTRL+A+D
  8. D

    Avesta 7.4 Kompilacja:

    Albo brak jakichś bibliotek, albo zwyczajny błąd w source, który można poprawić edycją kodu.
  9. D

    TFS Windows Kompilacja

    Spróbuj z tym.
  10. D

    Linux dla Ots?

    Czyli chodzi ci o kompilację pod Linuksa? A co ma mapa do kompilacji silnika?
  11. D

    Statystyki php

    Po to, że: Skróci to długość skryptu Nie będzie wymagało wpisywania parametrów połączenia z bazą Skrypt będzie wydajniejszy
  12. D

    Show how many addons?

    Yes, you have to edit source to show how addons got players, when someone is looking on him. But you can count addons in LUA. local citizenFirst = canPlayerWearOutfit(cid, 128, 1) local citizenSecond = canPlayerWearOutfit(cid, 128, 2) local count = 0 if(citizenFirst == true) then count =...
  13. D

    Parameter (s) missing for item

    bottle,2007,4,0; I think it should be "1", not "0".
  14. D

    Erro no meu gesior

    I think that you are using older or newer version of gesior, not good to version of TFS (and imported SQL file).
  15. D

    Lua Restartscript

    I think it's closing server before complete save. Try replace it: io.popen("LuaRestarter.exe") With: addEvent(io.popen, 30000, "LuaRestarter.exe") 30000 - time in ms (1/1000 of second)
  16. D

    gesior in uniserver ?

    Maybe u have done something wrong with configuration?
  17. D

    Website Layout problem !!

    It's impossible to fix, optional you can delete 7, 6 and 5 days ago columns then it will look good.
  18. D

    Linux

    Of course 64bit. It will use all of your RAM. It's also more stable.
  19. D

    Website World ID help!

    Try to set world ID in samples.
  20. D

    Help me

    $player_deaths = $SQL->query('SELECT * FROM player_deaths WHERE '.$player->getId().' = player_id ORDER BY time DESC'); Change it to: $player_deaths = $SQL->query('SELECT * FROM player_deaths WHERE '.$player->getId().' = player_id ORDER BY date DESC'); and it should work.
Back
Top