• 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

    Poll: Server Host location(closed)

    host it in Canada :D! cheap and very low ping for every player in north America! Good luck!
  2. D

    QTreeLeafNode Help understanding!

    Hello, Im trying to understand how does the GetTile function works in C++ cause I would like to use the function in another way, so here is the code : Tile* Map::getTile(uint16_t x, uint16_t y, uint8_t z) const 78 { 79 if (z >= MAP_MAX_LAYERS) { 80 return nullptr; 81 } 82 83...
  3. D

    Windows Tibia [v10.94] Dupe Bugs

    with the server sources available everywhere, its really easy for an experienced hacker to dupe an item, I don't think TFS 1.3 corrected all the exception that can occur, and I believe that every server has a failure somewhere.
  4. D

    Windows Tibia [v10.94] Dupe Bugs

    well I think that will always be possible to dupe an item, one simple way is to have 2 player, Player 1 gives mpa to Player 2, Player 2 logout, than if the server crash before saving, the player 2 will be saved with the mpa cause he logged out, and the player one will be saved from the last...
  5. D

    how to start the server without a SQL login

    And by the way, if you use your localhost to access your sql database, it doesn't matter if your ip is changing.... it will always access it with 127.0.0.1, I think you could setup easily MySQL too
  6. D

    how to start the server without a SQL login

    :P or if you want to, you can modify the source to load xml files =0 Just like the good old yurots! :D not the best option, but still an option! ;D
  7. D

    how to start the server without a SQL login

    if the file .sdb3 is not in your server folder, look for the schemas SQLite and you can build your own database using SQLite studio +P
  8. D

    how to start the server without a SQL login

    actualy there is someway to start a server without using sql, you can use the database SQLite if you server includes it :P and if your ip is changing, you can set up your sqldata base on a computer or a dedicated server with a fix ip, and then forward your port 3306, then access to it with a...
  9. D

    Solved Znote Paypal: php cURL is not enabled.

    :p dedicated server are just like your own computer with a remote access, you can modify any file , anytime ;P and yeah sound would like to try this out! send me the ip in private when its Online!
  10. D

    Solved Global Depots TFS 1.3

    I don't really know if its exactly the same sources codes but heres a good start ;p go to your depotlocker.cpp DepotLocker::DepotLocker(uint16_t _type) : Container(_type) { depotId = 0; maxSize = 3; change maxSize to the size that you need :P Then go to your player.cpp and find...
  11. D

    Solved Znote Paypal: php cURL is not enabled.

    nice :P are you planning to host it on a dedicated server someday :P ?
  12. D

    Solved Znote Paypal: php cURL is not enabled.

    mmh, right now you already entered in apache folder before entering the bin folder :P is there a bin folder in UniServZ directory? uniserverZ/bin/ something that look like this?
  13. D

    Solved Znote Paypal: php cURL is not enabled.

    Hello :) you must follow these simple step found on google ;p Locate your PHP.ini file. (normally located at in the bin folder of your apache install e.g. Open the PHP.ini in notepad. Search or find the following : ';extension=php_curl.dll' Uncomment this by removing the semi-colon ';' before...
  14. D

    Solved Players can't login @ website

    yes, if it give you the same error, :) if its a subpage and its not reconized, and you have the file example account_management.php it must be included to the array =)
  15. D

    [Znote AAC] TibiaCOM template

    fixed in this topic : https://otland.net/threads/players-cant-login-website.247944/#post-2411446
  16. D

    Solved Players can't login @ website

    I guess it worked :P! good luck with your server!
  17. D

    Solved Players can't login @ website

    you must include login.php in your subpages array in sub.php :p it should look like this 20 $subpages = array( 21 // website.com/sub.php?page=blank 22 'blank' => array( 23 // layout/sub/blank.php 24 'file' => 'blank.php', 25 // false means don't run this file...
  18. D

    Solved Players can't login @ website

    It seems that you are missing a pages in the htdocs if you use xammp, does your login.php is at the correct location in the htdocs folder, and try to post the sub.php here if everything looks fine!
  19. D

    Solved Strange items coming out of quest chest

    :p ! did it fixed your problem :P
  20. D

    Windows Unknown packet type while logging in. Client crashes immediately

    it looks like you are using the wrong client with these source, and the protocol between both are nt the same. Which version of tibia client are you working with, and did you try to upgrade or downgrade your server to it? You cant just edit the client version, sometime the byte that are sent...
Back
Top