• 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. Lava Titan

    [TFS 1.3] (RevScriptSys) - Kill Monster Create Portal

    nah, all you need to edit is in the config of this file
  2. Lava Titan

    Action [1.3] Bomberman 💣💥

    can this be played by multiplayer?
  3. Lava Titan

    Lua TFS 1.3 - NPC that uses multiple currency

    Hey guys, I'm nowhere close to understand how NPC syntax works so I'm trying to find a script for TFS 1.3 (8.6 downgrade by Nekiro) thats basicaly a NPC that sells items but not only for money, it can sell items in normal NPC trade window for different type of currencies, like event coins, task...
  4. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    thank you very much Sarah, works perfectly 😁
  5. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    damn Sarah, you shortned it so much xD i tried to change it but tempPos is returning nil '-' local teleportPos = getEmptyTileBetween(Position(3143, 1984, 14), Position(3623, 2488, 14), 33333, Position(1000, 1000, 6)) p:teleportTo(teleportPos) function getEmptyTileBetween(fromPos, toPos...
  6. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    kinda, yeah, this will work thank you very much ❤️ even tho I wanted to fix this function so I could use it in other scripts in the future 😇 if possible xD function getEmptyTileBetween(pos1, pos2, aid) -- getEmptyTileBetween(config.firstPos, config.lastPos) local posA = pos1 local...
  7. Lava Titan

    Lua Clickable item if you have a certain storage value

    local config = { needStorageKey = 77756, -- storage key required to open the chest? needStorageValue = 1, -- storage value required to open the chest? giveStorageKey = 50033, -- storage key given after chest opened? giveStorageValue = 1, -- storage value given after chest opened...
  8. Lava Titan

    Lua Clickable item if you have a certain storage value

    Yeah that's what I said in my last post... xD local config = { needStorageKey = 77756, -- storage key required to open the chest? needStorageValue = 1, -- storage value required to open the chest? giveStorageKey = 50033, -- storage key given after chest opened? giveStorageValue...
  9. Lava Titan

    Lua Clickable item if you have a certain storage value

    create file "basin.lua" on data/scripts/ and add this on the file: local config = { needStorageKey = 77756, -- storage key required to open the chest? needStorageValue = 1, -- storage value required to open the chest? giveStorageKey = 50033, -- storage key given after chest...
  10. Lava Titan

    Lua Clickable item if you have a certain storage value

    local config = { storageKey = 50033, -- storage key required to open the chest? storageValue = 1, -- storage value required to open the chest? itemId = 2160, -- give this item itemCount = 5 -- give this amount } function onUse(player, item, fromPosition, target, toPosition...
  11. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    this is what I'm trying to do xD trying to create a new function that checks for empty tiles in area and teleports creature there, if no empty tiles then returns fromPosition global.lua (the function keeps teleporting me to temple even that there are alot of free tiles without players)...
  12. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    yeah that's it I think, but still can't figure out how to print how many tiles are there with that aid in that area or how to teleport someone there like: local p = player if not p then return p:teleportTo(fromPosition) end ----[ AREA ]---- local posA = Position(3375...
  13. Lava Titan

    TFS 1.X+ [tfs 1.3] How to get all tiles with aid between 2 distances?

    Hey, any idea on how can I check for all tiles with certain aid between 2 distances?
  14. Lava Titan

    [TFS 1.3] (RevScriptSys) - Kill Monster Create Portal

    Hey guys, I was searching for this script and the last one I found was created 2 years ago by J.Dre and it wasn't working for me and some other people that I saw on comments, so I fixed the script and added a small countdown feature. for those who don't know where to add RevScripts this is the...
  15. Lava Titan

    TFS 1.X+ (TFS 1.3) How does MonsterType:addLoot() work?

    I tried multiple ways to make this work but I can't seem to get how the function works MonsterType(Rat):addLoot() MonsterType(Rat):addLoot(2160) MonsterType(Rat):addLoot(2160, 1) MonsterType(Rat):addLoot(ItemType(2160, 1)) But it's always returning nil, how is the function supposed to...
  16. Lava Titan

    TFS 1.X+ RevScriptSys hasLoot

    Hey there <3 How can I check if an item inside a table is inside another table? like: for i = 1, #loot do if loot[i].itemId has rareLoot then target:getPosition():sendMagicEffect(CONST_ME_TUTORIALARROW)...
  17. Lava Titan

    Special Storage System (key as a string)

    But this file checks all data for setStorages or you add storages there manually to keep track of them and just use variables in data scripts?
  18. Lava Titan

    Special Storage System (key as a string)

    do u have to create the file and add manually the storages? I don't have that file (using TFS 1.3)
  19. Lava Titan

    TFS 1.X+ Quick Question about Text Storage

    Hello everyone! I have a quick question about text storage, so, few years ago I was working on a project I can't remember what REPO was used but I could use text as a storage key, now I'm using TFS 1.3 (8.6) by Nekiro, I updated my database to accept VARCHAR(255) instead of INT(11) on storage...
Back
Top