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

Search results

  1. Snavy

    Lua onStepIn Problem

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

    Lua Snavy & Levi - Free Scripting Service - TFS 1.3

    https://otland.net/forums/support.16/
  3. 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) {...
  4. 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?
  5. Snavy

    Linux RME 3.7 with 12.5 items for linux mint

    What error did you get?
  6. Snavy

    TFS 1.X+ gdb error - server crashing

    🤔 Execute this and show the output git rev-parse --short HEAD
  7. 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...
  8. Snavy

    Lua Teleport Storages Pos

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

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    Test it and let us know
  10. Snavy

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    Show the xml change increasemagicpercent to magicpointspercent
  11. Snavy

    C++ TFS 1.2 Blue robe fix ? increasemagicpercent fix

    What is the error?
  12. Snavy

    [OTX 2] ERROR ACCOUNT MANAGER SPAMMING MESSAGE

    which engine do you use
  13. Snavy

    gesior retpagseguro.php

  14. Snavy

    MoveEvent Snake Event TFS 1.3 ~ Revscript ~ EventCallback

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

    TFS 1.X+ gdb error - server crashing

    what was your tfs version? post your Game::internalMoveCreature method (L 803).
  16. 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
  17. Snavy

    Lua Adding timer on roshamuul bones

    change local lastUsedStorage = player:setStorageValue(config.boneUseStorage) to local lastUsedStorage = player:getStorageValue(config.boneUseStorage)
  18. 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 =...
  19. Snavy

    Action [1.3] Bomberman 💣💥

    How to play - to place bombs use !bomb command Setup Preview Code (UPDATED 14 Apr 2021 - 15:56 - GMT+2) data/scripts/bomberman.lua Support If you have problems with the code, create a new thread on the support board.
Back
Top