• 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

    Lua Cant separate stat & amount

    local statsSplit = item:getStats()[1]:split(";") local type = statsSplit[1] local amount = statsSplit[2] you could try something like this edit: fixed typo
  2. R

    sqm which adds effect to the player when passing by

    local magicEffect = CONST_ME_POFF local delay = 5 -- seconds local actionIds = {45001, 45002} -- set these to whatever you put in movements.xml local creatures = {} local function sendEffect(cid, effect, delay) if not isCreature(cid) then -- if creature no longer exists, will end the...
  3. R

    What "killed" RL Tibia for YOU?

    Not to defend Cipsoft, but don't most (if not all) servers (including Nostalther) charge money to change a characters name? which is also just a SQL query lol
  4. R

    TFS 1.X+ SQL error ?

    Google is your friend! You have to increase interactive_timeout in the mysql config Taken form: https://serverfault.com/questions/375136/what-is-the-difference-between-wait-timeout-and-interactive-timeout https://askubuntu.com/questions/892858/how-do-i-set-wait-timeout-to-unlimited-in-mysql
  5. R

    boss drop

    Put the config and the math.random variables inside the function, that way math.random gets called every time the function gets called. Wont work either
  6. R

    [TFS 1.2] Metin Stone Event

    have yall tried GlobalEvent - [1.3] Metin Stone Event - Full auto (https://otland.net/threads/1-3-metin-stone-event-full-auto.265028/) ?
  7. R

    TFS 1.X+ What exactly is server saving?

    If I understood your question correctly, I think what confuses you is the fact that players get saved when they logout as well.. but if a crash happens and the server hasn't been saved yet a player could lose items, levels, etc.
  8. R

    My 8.60 CipSoft Tibia project discussion

    Aww what happened?
  9. R

    Lua Help with syntax

    if creatureDirection == DIRECTION_SOUTH then if playerWeapon and table.contains(weapons, playerWeapon:getId()) and playerShield and table.contains(shields, playerShield:getId()) then creaturePos.x = creaturePos.x creaturePos.y = creaturePos.y +1...
  10. R

    Solved Paintball Event Automatic Start ?

    I updated my last post.
  11. R

    Solved Paintball Event Automatic Start ?

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Paintball event" version="1.0" author="Bogart" contact="otland.net" enabled="yes"> <description> </description> <config name="config"><![CDATA[ t = { main = { tfs_version = "0.3"...
  12. R

    Scammed by Aurelion

    This might apply Does the GDPR cover reviewer blacklists, and if so, how? (https://academia.stackexchange.com/a/138570) :
  13. R

    Scammed by Aurelion

    We used to have this thread Official OtLand paypal blacklist (https://otland.net/threads/official-otland-paypal-blacklist.110333/) but it's closed now. (although it was mostly for OT servers chargebacks)
  14. R

    Dead Message Request

    So you don't get the message?
  15. R

    Dead Message Request

    what?
  16. R

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    You have to run that query manually, its a trigger that will automatically run if rank_id is changed on the players table.
  17. R

    Coders need help

    https://kbroman.org/github_tutorial/pages/init.html Assuming you have git installed, using the terminal/cmd/whatever its called on windows will make it a little harder at the beginning but worth it.
  18. R

    DB in one host and server in another.

    I agree with the post above, have the game engine + DB in one server and the website in the other if you want to have those separate. Also as a side note, get away from godaddy as soon as you can, they suck.
  19. R

    I'm hopping back into mapping and i need a quick link

    Could it be this thread? Useful mapping stuff (https://otland.net/threads/useful-mapping-stuff.32744/) Link no longer works though and (I recommend you don't click it since it takes you to sketchy sites) and it seems nobody re-uploaded the map, but at least you might be able to recall if that...
Back
Top