• 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. Sarah Wesker

    [TFS 1.5] Simple Aura System

    Fixed the bug of using the command many times to gain many auras.
  2. Sarah Wesker

    [TFS 1.4] Small Upgrade System (allowed wand and rods)

    that table is not for that. however you can do what you want by modifying this function: https://gist.github.com/MillhioreBT/869009fd87c92888b6c49cab48402d14#file-upgrading_system-lua-L400-L421 You can also add a check here if you don't want to modify the above function: if...
  3. Sarah Wesker

    GM Teleport by Map Click on TFS 1.4

    I don't think it's that hard, but I don't have a way to prove it. I'm not sure but probably with an opcode you can do something similar, without having to enable additional packages, just opcodes. HERE...
  4. Sarah Wesker

    GM Teleport by Map Click on TFS 1.4

    I don't know if OTC has this packet enabled for mini map clicks, if it doesn't there is no way to make it work server side. The client is the one in charge of extracting the position of the mini map and sending this information to the server, when the server receives the packet, it obtains the...
  5. Sarah Wesker

    [TFS 1.5] Simple Aura System

    While it's more efficient to handle this on the client, there's nothing wrong with doing it from the server. it could be many years before lastEventTimerId overflows, even with many online players. And that's assuming it never server shutdowns eventually.
  6. Sarah Wesker

    [TFS 1.5] Simple Aura System

    Hello everyone, I hope you're all doing well. Today, I'm here to share a very simple aura system for TFS 1.5 that I think you'll find interesting. This system has some basic but useful configurations that can add a new touch to your gameplay. One of the options available is the ability to add...
  7. Sarah Wesker

    [USA][8.60] MarlboroWars - April 1st 15:00 GMT-6

    The best war server currently without a doubt <3
  8. Sarah Wesker

    Lua /promote and /demote command for TFS1.5

    Just for those using TFS 1.5 I'll link the answer I gave to OP in my thread: https://otland.net/threads/free-scripting-service-tfs-1-5.281162/page-5#post-2719561
  9. Sarah Wesker

    RevScripts ❤ ℱ𝓇𝑒𝑒 𝒮𝒸𝓇𝒾𝓅𝓉𝒾𝓃𝑔 𝒮𝑒𝓇𝓋𝒾𝒸𝑒 𝒯ℱ𝒮 𝟷.𝟻+ ❤

    Check the answer again, it has already been modified, I have separated the two commands into different talkactions, it should work now. https://otland.net/threads/free-scripting-service-tfs-1-5.281162/page-5#post-2719561
  10. Sarah Wesker

    RevScripts ❤ ℱ𝓇𝑒𝑒 𝒮𝒸𝓇𝒾𝓅𝓉𝒾𝓃𝑔 𝒮𝑒𝓇𝓋𝒾𝒸𝑒 𝒯ℱ𝒮 𝟷.𝟻+ ❤

    If you are really using updated TFS Nekiro Downgrade it should work, I tried it and everything is fine. You said you have no mistakes... You didn't say if you had any message in the character... Here is the explanation of the command: Only players with groups that have access at 1 can use this...
  11. Sarah Wesker

    RevScripts ❤ ℱ𝓇𝑒𝑒 𝒮𝒸𝓇𝒾𝓅𝓉𝒾𝓃𝑔 𝒮𝑒𝓇𝓋𝒾𝒸𝑒 𝒯ℱ𝒮 𝟷.𝟻+ ❤

    data/scripts/promotedemote.lua local GROUP_GOD = 6 local talkAction = TalkAction("!demote") function talkAction.onSay(player, words, param, type) if player:getGroup():getId() ~= GROUP_GOD then return true end local target = Player(param) if not target then...
  12. Sarah Wesker

    [TFS 1.5] Sex System 2.0 🍑

    ahahahahaha, it definitely made me laugh even hahaha
  13. Sarah Wesker

    [TFS 1.5] Sex System 2.0 🍑

    Sex System 2.0 🍑 I already released a sex system some time ago, but it was using commands and it was a bit ugly. Here I bring you version 2, which uses modal windows, fully compatible with TFS-master. In addition to using modalwindows, sex will have benefits for both men and women. Here is a...
  14. Sarah Wesker

    The Forgotten Server 1.4

    TFS 1.5 is still in development, but we probably won't have to go through 1.6, 1.7... but we'll jump directly to 2.0 However, I cannot guarantee that it will be so. it is my opinion
  15. Sarah Wesker

    🍬 Simple Quest Chest System 🍬

    You are not using TFS master. you can do what @Addams suggested, or just merge this PR
  16. Sarah Wesker

    RevScripts Mechanic Bosses Quests

    Here is what you are looking for 😉 data/scripts/duke_krule.lua local config = { transformChance = 90, -- Percent transformIntervals = {20000, 40000}, -- Milliseconds transformOutfits = {49, 286}, -- LookTypes damageIntervals = {5000, 10000}, -- Milliseconds damageAmountRange...
  17. Sarah Wesker

    🍬 Simple Quest Chest System 🍬

    Available for Engine: TFS-master data/scripts/little_quest_chest.lua --[[ Little Quest Chests Create By: 𝓜𝓲𝓵𝓵𝓱𝓲𝓸𝓻𝓮 𝓑𝓣 TFS Version: 1.5 ]]-- local storageBase = 9000000 local actionId = 65535 local action = Action() function action.onUse(player, chest, fromPos, target, toPos...
  18. Sarah Wesker

    Lua Double casting ue

    local combatsByMgLvl = 135 local function extraCombat(creatureId) local creature = Creature(creatureId) if creature then combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_ASSASSIN) combat:execute(creature, Variant(creature:getPosition())) end end local spell =...
  19. Sarah Wesker

    RevScripts Exp eggs is bug

    The code you posted seems to be fine, the problem you have must be in other scripts where you make use of these functions.
  20. Sarah Wesker

    Lua Double casting ue

    you can use 2 combats, or change it before using it function spell.onCastSpell(creature, variant) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_FIREAREA) if combat:execute(creature, variant) then addEvent(function(creatureId) local creature = Creature(creatureId)...
Back
Top