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

    reports how read it and where?

    what?
  2. R

    Tower Defense Event

    Looks like it works!
  3. R

    TFS 1.X+ I added an account manager

    Probably something like this in iologindata.cpp in the function loginserverAuthentication result = db.storeQuery(fmt::format( "SELECT `name` FROM `players` WHERE `account_id` = {:d} AND `deletion` = 0 ORDER BY `name` ASC", account.id)); if (result) { do {...
  4. R

    [TFS 1.3] [Globalevent] Random boss in room

    local configRoom = { centerRoom = Position(100, 100, 7), fromPos = Position(100, 100, 7), toPos = Position(100, 100, 7), rangeX = 20, rangeY = 20 } local configBosses = { [1] = { bossName = "The Many", summon = { name = "Hydra"...
  5. R

    TFS 1.X+ No privileges for GOD actions

    You need to go to the Accounts table in the database, there you will find that you can change the account.type to 3. Forget about account_id that was a mistake the previous posters made. You're looking for account.type
  6. R

    Lua !Target talkaction

    probably better to add the following bellow line #9 if not creature then return false end
  7. R

    How to make Thais dog not leave his spawn area?

    this answer is terrible, just create a character with the dog stats, outfit and name and hire someone to login as the dog
  8. R

    Whi World Innovation Fund

    First & second proposals: Bullet Points /jk But basically you mean: People propose features People vote on the proposals People who develop the feature get paid by the funding or am I wrong?
  9. R

    What's the reason you can't set storage to -1?

    it sounds like you're trying to go around something that's easily fixable by just getting a default status but for some reason it triggers you
  10. R

    TFS 1.X+ Reward System problem

    https://otland.net/threads/help-with-boss-reward-chest.276976/#post-2664209
  11. R

    What's the reason you can't set storage to -1?

    Couldn't you just do a default value as -1 for your queries? SELECT p.name, COALESCE(ps.value, -1) FROM Players AS p LEFT JOIN Player_storage AS ps ON p.player_id = ps.player_id ORDER BY ps.value DESC LIMIT 10 (not sure about the table names or field names)
  12. R

    TFS 1.X+ Cannot connect with host computer

    Just to confirm for people who may see this in the future, I had this issue yesterday and fixed by having the following. (seems like OP tried this and didn't work, but there are no specific details to his configs) In my config.lua I had my domain ip = "rombadr.hopto.org" in my...
  13. R

    Lua Lua Dump Result

    wat Where does the dump come from? What are you trying to achieve?
  14. R

    PHP Statements

    Wrap it around a try catch and print the the error try{ code... } catch(Exception $e){ print_r($e); exit; // stop the code from running }
  15. R

    Ubuntu website host

    lamp?
  16. R

    does anyone ever enjoy skilling? please get rid of it in ot servers.

    We should all start at level 3k, wanna fight cyclops at level 8? can't because you will die. wanna hunt dragons at level 15? can't because you will die. Why not just start at level 3k so we can all go around killing all monsters and soloing all quests? /s It's all part of the grind, if you...
  17. R

    How to make Thais dog not leave his spawn area?

    Im assuming this happens to all monsters, or is it just that dog?
  18. R

    Scrolls error TFS 1.3

    -- Xikini's edit. if (scroll == 13 or scroll == 14) and (player:hasAchievement("Marid Ally") or player:hasAchievement("Efreet Ally")) then player:sendTextMessage(MESSAGE_STATUS_SMALL, "You have already chosen whom will be your ally. You cannot change your decision.") return...
Back
Top