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

Recent content by Sarah Wesker

  1. Sarah Wesker

    C++ Is it possible to convert all items from Asynchronous to Synchronous at same time?

    I don't know if the object builder allows you to do this task, however you could use a lua/python/ect... script to analyze the .dat file and change all items to Synchronous or if you have the ability to build GitHub - punkice3407/ObjectBuilder (https://github.com/punkice3407/ObjectBuilder) you...
  2. Sarah Wesker

    RevScripts Spell: convert to RevScript

    local removeTime = 1.0 -- tiempo para remover las criaturas local arr = { {1, 0, 1}, {0, 2, 0}, {1, 0, 1}, } local function removeCreatures(creatureId) local creature = Creature(creatureId) if creature then creature:remove() end end function...
  3. Sarah Wesker

    Uwerta of Legends - tibia/moba project

    It looks beautiful, I hope to see a video of the gameplay, I was left curious to know
  4. Sarah Wesker

    Current TFS 13.10. What client?

    My friend EvilPuncker sent me the 13.10 client, I don't know where he found it, but if you want you can go to my discord server and download it, it is the official cipsoft client modified for localhost
  5. Sarah Wesker

    RevScripts Event Callback for Canary 3.1.2 please

    Canary already has EventCallback just different Here you have the information: Canary EventCallback
  6. Sarah Wesker

    [TFS 1.5+ / Canary] 🧟 Zombie Event 🧟

    It's already updated. just download it again By the way, if you don't want everyone to win, then add infinite time and wait for the players to die and only one player remains. Don't forget to give the resource stars, that encourages me to continue...
  7. Sarah Wesker

    [TFS 1.5+ / Canary] 🧟 Zombie Event 🧟 1.0

    🧟 Zombie Event 🧟 Engine: TFS 1.5 / Canary Here I will leave the classic zombie event, I have created it with a lot of love and I tried to make it work for canary users as well, so please leave your feedback and if you find any errors, do not hesitate to report it For a quick test you just...
  8. Sarah Wesker

    [TFS 1.5+ / Canary] 🧟 Zombie Event 🧟

    Sarah Wesker submitted a new resource: [TFS 1.5+ / Canary] 🧟 Zombie Event 🧟 - Zombie event created by 𝓜𝓲𝓵𝓵𝓱𝓲𝓸𝓻𝓮 𝓑𝓣 Read more about this resource...
  9. Sarah Wesker

    [TFS 1.5] ❤ TradeTimes System ❤

    in the description there is enough information for all your questions, if you are considering using the script please take a few extra seconds to read the description before complaining and assuming that the script is wrong or bad
  10. Sarah Wesker

    AAC How to create landing page for mobile browser?

    I think the only option you have is to calculate the resolution size of the device using javascript, if it is less than a threshold it could mean that he is using his mobile and then you can choose to redirect him to another page Maybe there is some other dirty trick, but I don't know.
  11. Sarah Wesker

    RevScripts custom outfit bonus

    UPDATED: RevScripts - custom outfit bonus (https://otland.net/threads/custom-outfit-bonus.288898/#post-2752027)
  12. Sarah Wesker

    RevScripts custom outfit bonus

    local config = { outfitId = 264, regenerationHP = 1000, regenerationMP = 1000, regenerationInterval = 3000, skillDistance = 5, skillSword = 5, skillAxe = 5, skillClub = 5, magicLevel = 5 } function addPlayerOutfitXXXBonus(player) if not...
  13. Sarah Wesker

    Gatekeeping

    I believe that everyone should do whatever they want, period. If it's wrong for someone, okay, and if it's right for someone, okay too. After all, we're not affecting other people's lives. We're here in the forum because we want to be, no one is forcing us to be here. So, guys, keep doing your...
  14. Sarah Wesker

    Lua How to access ”item” object across events?

    Anyway, here I leave a modification of the script that is much safer and should not cause errors in 99.9% of the cases local rewardBagItemId = 1950 local config = { modalWindow = { id = 1001, -- needs to be unique number? title = "Reward Bag", message = "Choose a...
  15. Sarah Wesker

    How to use md file (markdown file)?

    Markdown is a lightweight markup language designed to format and structure texts in a simple and readable way. If you use TFS you have to know that these types of files are not used for anything specific beyond representing information in the repository. Example:
Back
Top