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

  1. sharinn

    TFS A* Algorithm :D

    probably relogs near monsters should be enaught(fast multiple times) as far as i know
  2. sharinn

    TFS A* Algorithm :D

    This all changes breaks many thing :( https://github.com/otland/forgottenserver/issues/5009 not confirmed yet but from quite good source (guy who report this issue to me almost always reports issue that exist in tfs source)
  3. sharinn

    Solved !pz command - please help! :)

    local pzTime = player:getCondition(CONDITION_INFIGHT, CONDITIONID_DEFAULT) if pzTime then msg = msg .. "\n Fight Timer: " .. player:getCondition(CONDITION_INFIGHT, CONDITIONID_DEFAULT):getTicks() / 1000 .. " seconds" else msg = msg .. "\n Fight...
  4. sharinn

    compiling tfs new source

    https://chatgpt.com/share/68c76741-e17c-8010-8092-3d4a79eb4d37
  5. sharinn

    tfs 1.5 summons/fammiliars can heal the player

    function onCastSpell(creature, variant, isHotkey) local creatureMaster = creature:getMaster() if creatureMaster then doTargetCombatHealth(creature, creatureMaster, COMBAT_HEALING, 600, 1000) end return true end from old project (pre revscript)
  6. sharinn

    Count to 1000000!

    82
  7. sharinn

    BlackTek-Server Development Thread

    How these skills impact performance? Using a skill likely requires verifying whether the creature/item has that skill, which adds extra checks or calls, this somehow affect performance.
  8. sharinn

    make castle 8.60 script available

    first part: create a file called castle.lua second part: i don't get it time to get serious: there is no description of what this script is supposed to do, add a description and maybe someone will help somehow.
  9. sharinn

    OTClient Skill & Stamina Glitch in OTC Redemption (TFS 1.6 8.60)

    is terminal report any error? Maybe otc is using wrong config? otclient/src/client/protocolgameparse.cpp at 475bed4f96dbc9e6d415bdbbd24e84eef24fbdee · mehah/otclient (https://github.com/mehah/otclient/blob/475bed4f96dbc9e6d415bdbbd24e84eef24fbdee/src/client/protocolgameparse.cpp#L2249) something...
  10. sharinn

    Lua TFS 1.5 lua error

    i will change local storedTime = player:getStorageValue(exhaust) to local storedTime = player:getStorageValue(exhaust) or -1
  11. sharinn

    Lua TFS 1.5 lua error

    as far as i know(probably for 2y) TFS for storage can return value or nil, you must check if getStorageValue return value number or nil
  12. sharinn

    Solved having a mysql error i cannot figure out

    https://chatgpt.com/share/683c542a-54a4-8010-bce3-2639ad2d6c22
  13. sharinn

    RevScripts Looking for older Tibia Clients - Can't find 12.90 for example

    12.86 https://www.dropbox.com/scl/fo/4ypgxvtr2ce0asm6o6dkd/ABK7pd6XBXkrvSvoh51ZlL0?rlkey=mi267twh2ya922uu5e4mbc18o&st=44iik3ga&dl=0 12.91 Dropbox (https://www.dropbox.com/scl/fi/3azab1a7xdl7xn0knx9dn/tibia-client-12.91.zip?rlkey=ejwakrd97o46fjfmik37wobhf&st=bup3yyxb&dl=0) 13.10 Dropbox...
  14. sharinn

    Looking for the most Up-to-Date OTS Distribution with a Real Map

    If you want something up-to-date regarding RL, use Canary. You have to keep in mind that a large part of the systems is written in C++, which makes it really difficult to modify anything to work even slightly differently. There are a lot of magic values or hardcoded things specifically for RL ...
  15. sharinn

    Outfit window show everytime when i login [TFS 1.5]

    can you share player:toggleMount() cpp code?
Back
Top