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

    Windows RME MAP EDITOR PRINT MAP IN PNG?

    Nah, its impossible to open 1000 mb image windows has limits.
  2. S

    Windows RME MAP EDITOR PRINT MAP IN PNG?

    You can open minimap on full window and press print screen then simply just merge few print screens, shouldnt be more work than looking for a specific program for this.
  3. S

    Solved [Gesior2012][database query]

    Oh my gosh, so database query can just select and i need to write a script for converting it into value? raf Thank you! It is working.
  4. S

    Solved [Gesior2012][database query]

    I was trying to make query to see value of paw and fur storage so i could show how many points of paw and fur i have. Paw and fur is key 2500 always and i need to see value of this storage. '.$pawandfur[0].' $id = $player->getCustomField("id"); $pawandfur =...
  5. S

    Compiling changes for 10.80

    I've used this: protocollogin.cpp Replace this: if (g_config.getBoolean(ConfigManager::FREE_PREMIUM)) { output->add<uint16_t>(0xFFFF); //client displays free premium } else { output->add<uint16_t>(account.premiumDays); ..With this: if (version >= 1080) {...
  6. S

    Feature Reward Chest & Boss Reward [TFS 1.2]

    We need someone really good in c++ to make loot splitting to all fight participants instead of rolling loot to every player who made hit.
  7. S

    Issue with logg-in on my 8.6 server.

    Find this line in config.lua and rename my.visible.ip to your ip from http://whatismyipaddress.com ip = "my.visible.ip" localhost and 127.0.0.1 is ip adress of your own computer(only you can see it), everyone has it. If your friend will write localhost or 127.0.0.1 he will see his own computer...
  8. S

    Server start up error

    Your login/password in TFS/config.lua to database doesn't match to your current database login/password.
  9. S

    [Gesior 2012 1.0.1] Latestnews.php

    i mean change: $query = $SQL->query("SELECT * FROM `players` ORDER BY `experience` DESC")->fetch(); to: $query = $SQL->query("SELECT * FROM `players` WHERE `group_id`=1 ORDER BY `experience` DESC")->fetch(); why i can not edit my post? -_-
  10. S

    [Gesior 2012 1.0.1] Latestnews.php

    change: $players = $SQL->query('SELECT COUNT(*) FROM `players` WHERE `id`>0;')->fetch(); to: $query = $SQL->query("SELECT * FROM `players` WHERE `group_id`=1 ORDER BY `experience` DESC")->fetch();
  11. S

    [Gesior Acc] Last joined, Free Houses and other!

    Fatal error: Call to a member function fetch() on boolean in E:\xampp\htdocs\pages\latestnews.php on line 33 :(
  12. S

    Feature Reward Chest & Boss Reward [TFS 1.2]

    I think you must remove legendary items like feru hat from loot if you are using reward chest system. Then you will need to add script <event type="kill" with feru, someone who get most damage will get hat. Plus you will need to lower drop chance of all items from feru since it roll all items...
  13. S

    Windows How to run OTs 10.78+

    10 min = player login, player logout under 10 mins after login
  14. S

    Lua Destroy item on move

    Im not good in c++, can't help you with something that you don't have, sorry. It's eot for me, try to add Mock's function https://otland.net/threads/creaturescript-onmoveitem-moveitem-frompos-position-cid.96742/
  15. S

    Solved [TFS 1.2] Shift count negative or too big

    Show enums.h file.
  16. S

    Can not start my server? TFS 1.0

    TFS version has nothing to do with connection to database i run it with both versions. I can do it even on same time 2 servers 8.6 and 10.77. Fine if you want engine with many bugs and not solved crashes you will work on it 1 year and then change it to higher version when you realize that you...
  17. S

    Lua Destroy item on move

    function onMoveItem(cid, item, count, toContainer, fromContainer, fromPos, toPos) print("Script started.") if getPlayerVocation(cid) == 0 then print("Vocation = 0. OK") if item.itemid == 2596 then print("item.itemid == 2596. OK") doRemoveItem(item.uid...
  18. S

    Can not start my server? TFS 1.0

    #up You shouldnt change ports. Just go to skype options > advanced > connection > UNcheck "use ports 80 and 443 for incoming connections msg me on skype so ill help you. shadow4405069 I do not agree with this. Xampp is very secure if you have last version and know how to use it. Basically you...
  19. S

    Can not start my server? TFS 1.0

    I had too many problems with uniform, xampp has better options, but its only my opinion. Now i have time 12:00 at 23:00 ill be home and help you with teamviewer if you won't solve problem. So you should do this: 1. you must have not running apache and mysql 1a. reinstall xampp (after reinstall...
Back
Top