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

    AAC MyACC make the website picture stay on scrolling?

    add this to the stylesheet rule responsible for background image: background-attachment: fixed; background-size: 100%;
  2. Snavy

    Lua onStepIn Problem

    looks like you're missing then here elseif item.itemid == 19744 to: elseif item.itemid == 19744 then
  3. Snavy

    Lua Snavy & Levi - Free Scripting Service - TFS 1.3

    https://otland.net/forums/support.16/
  4. Snavy

    TFS 1.X+ gdb error - server crashing

    I'm unable to find out what the problem is by reading the crash report. 1. Monster goes idle. 2. Idle status is updated to true. 3. damageMap.clear() called. from this point on I am unable to come up with the reason of crash. void Creature::onIdleStatus() { if (getHealth() > 0) {...
  5. Snavy

    TFS 1.X+ gdb error - server crashing

    Can't know how old it is :S But the 2nd crash might've been fixed on a later date than the version you currently have. Why are you not using the latest TFS?
  6. Snavy

    Linux RME 3.7 with 12.5 items for linux mint

    What error did you get?
  7. Snavy

    TFS 1.X+ gdb error - server crashing

    🤔 Execute this and show the output git rev-parse --short HEAD
  8. Snavy

    C++ auto loot corpse item remove

    Since there is no such method getAutoLootItem in the official TFS repository. I am assuming this is a modification from somewhere. Because you haven't given any reference to the origin of this modification, people are unable to test this and reproduce your problem. If you wish for a better...
  9. Snavy

    Lua Teleport Storages Pos

    change if player:getStorageValue(storage) == -1 then to if creature:getStorageValue(storage) == -1 then
  10. Snavy

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    Test it and let us know
  11. Snavy

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    Show the xml change increasemagicpercent to magicpointspercent
  12. Snavy

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    What is the error?
  13. Snavy

    [OTX 2] ERROR ACCOUNT MANAGER SPAMMING MESSAGE

    which engine do you use
  14. Snavy

    gesior retpagseguro.php

  15. Snavy

    MoveEvent Snake Event TFS 1.3 ~ Revscript ~ EventCallback

    This version seems more fun :D well done
  16. Snavy

    TFS 1.X+ gdb error - server crashing

    what was your tfs version? post your Game::internalMoveCreature method (L 803).
  17. Snavy

    TFS 1.X+ gdb error - server crashing

    I'm unable to properly interpret the previous one. However the following might be a hint. article = <error reading variable: Cannot create a lazy string with address 0x0, and a non-zero length.> Is there an item with this id? type = 21845
  18. Snavy

    Lua Adding timer on roshamuul bones

    change local lastUsedStorage = player:setStorageValue(config.boneUseStorage) to local lastUsedStorage = player:getStorageValue(config.boneUseStorage)
  19. Snavy

    Lua Adding timer on roshamuul bones

    Do you wanna add exhaustion to clicking the bones? local config = { boneUseStorage = 141567, boneUseDelay = 10 * 60 -- 10min } local function secondsToReadable(s) local hours = math.floor(s / 3600) local minutes = math.floor(math.mod(s, 3600)/60) local seconds =...
Back
Top