• 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!

Recent content by Siegh

  1. Siegh

    Lloegrys - Dungeon Crawler (ATS)

    In case you don't want to check on Discord, here is the website and login information on how to play the server: Website: 148.224.63.124 Ip to login: 148.224.63.124 To log in, you need either the vanilla 10.98 tibia client or any generic OTClient one. OTSME DL - data/tibia-clients/dat_and_spr
  2. Siegh

    What happened to servers without custom clients?

    I'm really counting on Discord to have all that displayed, I can't edit my first post on the thread here so... Anyway, I will add a reply with the website and ip information.
  3. Siegh

    What happened to servers without custom clients?

    I get and agree with your point, that will be done when I get to make an actual website and not a placeholder default one. I may just as well review how the information is displayed on the thread in order to facilitate entrance. But I really suggest you at least take a look on my media posted on...
  4. Siegh

    What happened to servers without custom clients?

    I had the wrong link on my signature, its fixed now. Everything about playing is on the Discord server, you can also talk to the many current active players there about it.
  5. Siegh

    Lua [TFS 1.2] Burn condition formula working weirdly

    function setBurnDamage(creature, target) local burn = Condition(CONDITION_FIRE, CONDITIONID_COMBAT) burn:setParameter(CONDITION_PARAM_DELAYED, true) burn:addDamage(10, 1000, -(((creature:getMagicLevel()*0.3)+(creature:getLevel()*3))*multiplier))...
  6. Siegh

    Lua [TFS 1.2] Burn condition formula working weirdly

    That won't have the damage scaling with the player values but make it fixed, which is not my intention.
  7. Siegh

    Lua [TFS 1.2] Burn condition formula working weirdly

    Hello! local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, 8) combat:setParameter(COMBAT_PARAM_EFFECT, 14) function onCastSpell(creature, variant) local burn = Condition(CONDITION_FIRE, CONDITIONID_COMBAT) burn:setParameter(CONDITION_PARAM_DELAYED, true)...
  8. Siegh

    What happened to servers without custom clients?

    Check mine, its a complete new roguelite experience playable in vanilla 10.98 client ^^
  9. Siegh

    Lloegrys - Dungeon Crawler (ATS)

    A big patch has been released lately, with the addiiton of the Second Ascent, its main roguelike content! Don't miss checking out on our discord server!
  10. Siegh

    Lua Checking for the closest creature? [TFS 1.2]

    Worked perfectly, thanks :)
  11. Siegh

    Lua Checking for the closest creature? [TFS 1.2]

    That's why I chose to use a non local variable since, on the next loop, I don't know how to check whether the last target is the same as the previous one. How can I do it in a more appropriate way?
  12. Siegh

    Lua Checking for the closest creature? [TFS 1.2]

    Well, it works but the randomCreature table is a global variable, meaning its not emptied after being used as far as I've tested. That causes future casts of the spell to consider past targets that are no longer closeby. What am I doing wrong here? local function chainEffect(target) if...
  13. Siegh

    Lua [TFS 1.2] Delete certain items from players depot

    That worked ou perfectly, thanks a lot!
  14. Siegh

    Lua [TFS 1.2] Delete certain items from players depot

    I have never had to run a query on the DB before, could you please exemplify how to search for and delete a specific item id please?
  15. Siegh

    Lua [TFS 1.2] Delete certain items from players depot

    Hello, again, I'm really asking for a lot lately. I had an issue today where certain items were acquired through unnoficial means and I'd like to remove a list of these items from my players' depots. Is there a way to do that?
Back
Top