• 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

    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...
  2. 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?
  3. 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...
  4. 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...
  5. 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)...
  6. 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...
  7. Lava Titan

    TFS 1.X+ Map Loading Time

    Hey guys, how are you? <3 So I've been testing stuff in my server for a while and it starts to be boring when I have to wait all this time every restart.. Because as you can see it's not even big, it's quite small tbh but still takes this long to load... Is there any way to make the map load...
  8. Lava Titan

    TFS 1.X+ Automatic Looktype Changer

    heey <3 ok so, I'm working on making monsters for my server and obviously I don't know how every monster look-type looks like, normally I change all look-types by hand like /newtype 1 /newtype 2 /newtype 3 /newtype 4 so I thought, why not make a script that changes these automatically, my...
  9. Lava Titan

    TFS 1.X+ Pushing Delay & Pushing related stuff

    Hey, in what file can I find the code to edit pushing delay and pushing related stuff like player gets message when pushes other player, etc... I'm using - Using TFS 1.3x for client 8.6: [8.60] Latest forgottenserver 1.3. Clean downport
  10. Lava Titan

    TFS 1.X+ Auto-Attack Stops while shooting runes/moving items, etc

    - Hey there, I was testing some stuff on my server and I noticed that while I shoot runes like SD or move items my character stops attacking with bow/wand, after I stop shooting or moving items it starts attacking again, like one action overrides the other; - Any clues on what's wrong? - Using...
  11. Lava Titan

    Lua check item pos/stackpos? TFS 1.3x

    Hello, I'm trying to disable the player from using an item unless he has it on the inventory, the first method that comes to my mind is checking for item position but I can't find out how to do that in multiple ways like, checking if item is in depot, check if item is in ground, check if item is...
  12. Lava Titan

    Is it possible to sell maps on otland? Like roshamuul 8.6..

    Hey guys, recently I've noticed that real maps 8.6 will be cooler if they have new areas like roshamuul and oramond.. I've spent the last 5 days turning roshamuul from 10.98 to 8.6 and I wanna sell it because corona made me lose my job '-' but I'm not sure if I'm able to do it here at otland...
  13. Lava Titan

    Compiling Libs error when compiling TFS 0.3.6 v8.2

    Hey there, I'm trying to compile > this < rev of TFS 0.3.6 but I keep getting library errors because they are outdated, so far I've tried searching for multiple compiling tutorials for this rev to find if any of them has the libraries but couldn't find anything helpful, I've also tried to...
  14. Lava Titan

    Lua onLook, how to get target cid?

    Hello, so I'm trying to make something that when you look at yourself or another player it will show they're health and mana stats, it works fine if I look at myself or another player but if I try to look at anything else I get boolean error in console because of line: local health =...
  15. Lava Titan

    Lua TFS(0.4) - local config issue

    Hello, I'm trying to create a dynamic upgrading script, and I'm having an issue related to config, the script works fine if all the up-grader ID's are different but if I want one item to upgrade 2 different items it messes up which item I'm talking about, so I wonder if someone has any idea how...
  16. Lava Titan

    Lua stop addEvent if position changes

    Hi, I'm having an issue in stopping addEvent if I move: local function countdown(number, position, fromPosition, thingPos, msgx) local count = number for time = 1, number do if getThingPos(cid).x == 998 and getThingPos(cid).y == 995 and getThingPos(cid).z == 5 then...
  17. Lava Titan

    Lua TFS(0.4) - onRemoveItem

    Hi, based on other script, I'm creating this one to avoid players moving some items and I'm having some issues like: 1. If you throw an item that's not on the list and it's not stackable on the tile you also can't move that item.. 2. If the item is on the list but it's stackable you can still...
  18. Lava Titan

    Lua TFS(0.4) - How to track item count?

    Hello, I'm working on this small script to avoid players throwing junk or lose thrown items by mistake in some places but I'm having an issue in how to track the amount of items thrown.. I'm not sure if there's another way to do this but this is what I came up with xd Example: If some1 throws...
  19. Lava Titan

    Lua Lua Issue (math related)

    So I got this very old TFS 0.4 MOD that works perfectely but I'm trying to make it work with math.random instead of text questions and answers.. Example: [1] = {question = "How much is "..number1.." + "..number2.."?", answer = ""..number1+number2..""} instead of [1] = {question = "How much...
  20. Lava Titan

    Tibia Remeres Tibia Client 8.60(old)

    Good afternoon, I came back recently and I'm working on a 8.60 project, while doing that, I've been having some troubles, one of them being getting my Remere's to work with 8.60, so after some research I found someone who provided the download link, I'm not sure if there's an easier way to find...
Back
Top