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

Search results

  1. Svira

    [Poland][8.0] OldTibia S2 - F2P

    🌟 Thank you for your kind words! 🌟 We're thrilled to hear that you're excited about the upcoming launch! But you know what? It's not just about how it looks or how it sounds - it's about how it plays. And trust us, this is the perfect moment to find out. Prepare to dive into a world of...
  2. Svira

    [Poland][8.0] OldTibia S2 - F2P

    🎉 Welcome to the second season of the OldTibia server! 🎉 We're excited to announce that all reported bugs have been fixed, and on top of that, we've introduced many new systems and improvements to make your experience even better! Key changes: 💰 Removal of the fee for training positions for...
  3. Svira

    TFS 1.X+ [bug] buying items from eq

    In this solution I have to edit all npc.lua that deal with sales. Can it be converted to lib? I have over 220 items purchasing and it will be very time-consuming ;/
  4. Svira

    TFS 1.X+ [bug] buying items from eq

    Hello gentlemen! I have a problem. I noticed that after adding the system slot, my NPCs dealing in item trading started buying items from EQ, where to look and how to fix this problem? I found some old solutions with old svn, I need a fix for tfs 1.2 npc/lib, I've probably searched everything!
  5. Svira

    Lua Drop item inside named monsters

    Creaturescript: function onKill(creature, target) local targetMonster = target:getMonster() if not targetMonster then return true end local monsterName = targetMonster:getName() -- Definiowanie szans na zdobycie przedmiotów dla każdego potwora local...
  6. Svira

    how to host two server in one machine

    To achieve this, you need to configure each server to use different network ports and separate data directories. Here's a general CONCEPT (theory based on TFS 1.2, although I have never done this before) to execute: Port Configuration: By default, the TFS 1.2 server uses port 7171 for client...
  7. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    Another 2 errors: When a player dies, he loses the bonus and the storage is retained. (need edit on_death i know) When a player is offline and storage expires, HP and MP remain with the bonus after logging in until death. (there idk ;o)
  8. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    now is good? @Mateus Robeerto actions: local config = { boostDuration = 3600, -- Boost duration in seconds storageValue = 224411, -- Unique key to store boost expiration time hpSubId = 31, -- SubID for HP boost mpSubId = 32...
  9. Svira

    Feature Windows restarter with log saving function without external programs - only bash

    he doesn't really fit in in other places, but I know he's wanted, he might be saved and useful to the community.
  10. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    @Mateus Robeerto There is no crash anymore but: 1. storage "breaks down" 2. Hp/MP does not return to previous values. from client: afterlogin: 17:15 Your specific profession boost has expired. onlook: 17:15 You see yourself. You are an elite knight. Awaken: Awakened Vitality BUFF: Activated -...
  11. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    Testing...
  12. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    I'm using realots 7.7 but I have all the features from tfs 1.2. Now tell me, can I keep it all in actions or split it between actions and creaturescript?
  13. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    can you give me more advice? I have in my code: if not player then return true end now there are no more crashes but there is server lag and it throws all logged in players with error 10054 (Client) in the console there are no errors.
  14. Svira

    Feature Windows restarter with log saving function without external programs - only bash

    I saw that many people using Windows have problems with the auto restarter that monitors the tfs process, even if there is one on the forum, it does not save logs for Windows, which can be helpful in the event of various failures. Below is a restarter that starts 3 consoles: 1. Monitors the...
  15. Svira

    TFS 1.X+ HP/MP BUFF No error - Crash.

    Hello dear community, I am creating a code to increase HP and MP for 1 hour, but if the player uses the item and then remains logged out, a crash occurs after some time? how to prevent it? CODE: local BOOST_DURATION = 3600 -- w sekundach local STORAGE_VALUE = 224411 local BOOST_EVENT_NAME =...
  16. Svira

    Lua runes on invisible monsters

    add on top in onCastSpell: if target then if Tile(target:getPosition()):getTopCreature() then return doCombat(cid, combat, var) else cid:sendCancelMessage("You can only use this rune on creatures.")...
  17. Svira

    TFS 1.X+ [1.4.2] Daily Task problem.

    Try this, change task by date: -- SCRIPT -- Pobierz aktualną datę local currentDate = os.date("*t") -- Ustaw ziarno generatora liczb losowych na podstawie daty math.randomseed(currentDate.year * 1000 + currentDate.yday) -- Funkcja do losowania z listy zadań local function...
  18. Svira

    [Poland] [8.0] oldTibia [19.11 - 16:00 CET] FREE 2 PLAY

    🚀 OldTibia REMASTERED - Grand Opening in 5 Hours! Dear Tibians, Get ready for an epic adventure as OldTibia reopens its doors in the REMASTERED version! The main highlight? We've fixed all the bugs, and now, the premium content is entirely free! Starting today, you won't incur any charges for...
  19. Svira

    OTClient [OTCv8] Gold Coventer?

    Solution: local moneyIds = {3031, 3035} -- gold coin, platinium coin local itemConverter = 7410 macro(1000, "Exchange moneyy", function() local containers = g_game.getContainers() for index, container in pairs(containers) do if not container.lootContainer then -- ignore monster...
  20. Svira

    OTClient [OTCv8] Gold Coventer?

    Read carefully, in my case it is not done by right-clicking, you have to use item id 7410 on stack gp 3031. USE WITH...
Back
Top