• 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. aalqaq2

    SIMPLE ALL IN ONE: From nothing to a fully working dedicated server on Ubuntu

    Any idea how I can access the log files directly? I'm trying to parse them to get the missing files from an old TFS setup so I can add them. Kinda hard without direct access to the files though. 1675645765 Actually, I ran a journalctl > /home/otsmanager/log and was able to get what I needed. :)
  2. aalqaq2

    Lua [TFS 1.3] Free Scripting Service 📝

    How would I make this system with only an addition/removal of the mount bonus? Independent of the player outfit?
  3. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    Thanks for all of your help! I appreciate it!
  4. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    I actually did change it to cItems and both clear and initialize it. Lol This doesn't work for i = 1, #cItems do backpack:addItem(cItems[cid][i][1], cItems[cid][i][2]) end This does: backpack:addItem(cItems[cid][1][1], cItems[cid][1][2]) backpack:addItem(cItems[cid][2][1]...
  5. aalqaq2

    TFS 1.X+ Retro outfits

    Your distribution needs to support them to be able to "just add them". You have to have a Sprite Editor to put them in or an updated items.otb file which contains the outfits.
  6. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    I guess the custom Items are not being saved now? The NPC interaction is working fine, but the player is not given any of the items from the NPC interaction. I've tried moving the release focus to the end as you suggested and that didn't change anything. I'm sure it's an easy fix too. I'm just...
  7. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    I think I got it! Can you take a look? I just want to make sure I haven't made any obvious mistakes. I also want to release it to the public after I completely fail-safe it. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  8. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    I think I'm following... If I declare a table local items = {} I should be able to add the items like this? if msgcontains(msg, "sorcerer") then npcHandler:say("YOU WILL BE GIVEN A WAND OF VORTEX. WOULD YOU LIKE TO CHOOSE A SECONDARY {WEAPON}?", cid) if...
  9. aalqaq2

    TFS 1.X+ Oracle with Vocation Items and Player Choice

    Hey guys, What is the best way to save player choices into an array and add the items later? I want to give the players the ability to choose a secondary weapon and choose between a spellbook or shield when they enter the mainland. I thought about using a secondary table and local a =...
  10. aalqaq2

    TFS 1.X+ Disable Spells in specific area

    I'll give it a shot. Thanks!
  11. aalqaq2

    TFS 1.X+ Disable Spells in specific area

    Is it possible to prevent spells /a spell from being used in a specific area (During World Event)? I was looking at Itutorial's Monster Wave Event and wanted to prevent players from being able to cast an AoE spell which will give them an unfair advantage.
  12. aalqaq2

    TFS 1.X+ Trainers

    Why not create a healing tile and register it as a globalevent every x seconds? That's what I did on my server. I can post a script later if you'd like
  13. aalqaq2

    Merge ORTS with latest TFS

    Turns out it's actually helpful to register the creatureevents in your login.lua. For anyone else: Import actions Import creature events Register creatureevents in login.lua Import storages Import movements
  14. aalqaq2

    Merge ORTS with latest TFS

    Hello, I've been trying to get the ORTS data pack to work with the latest TFS version. The repo has not been updated in over 4 years. I checked some of the other links with similar titles and most are outdated as well. Brief Backstory: I had a server running towards the end of 2017 that...
  15. aalqaq2

    What "killed" RL Tibia for YOU?

    Are you the Evil Puncker from Trimera? If so, that's pretty cool. I used to watch you run around Edron and Venore with others like Relic and other FS members. Good times.... Nothing really killed Tibia for me, I just ran out of time to play. Real life priorities take precedence over Tibia. If I...
  16. aalqaq2

    Loot still not working

    Update: I restarted from scratch and everything is working fine now. Still not sure what the problem was but this can be closed. Thanks for your help everyone!
  17. aalqaq2

    TFS 1.X+ Spawn::AddMonster error

    Very nice. The map import showed me where the invalid sprites were. Thanks a lot!
  18. aalqaq2

    TFS 1.X+ Spawn::AddMonster error

    I'm not sure where this warning is coming from. I've checked the XML file for both Monster and Spawn.xml. I also referenced this solution and other similar posts but it doesn't provide much context. Any leads would be appreciated. Jan 01 15:08:02 vps-c6071215 tfs[125600]: [Warning -...
  19. aalqaq2

    SIMPLE ALL IN ONE: From nothing to a fully working dedicated server on Ubuntu

    You have to reinstall your OS through your hosting service.
  20. aalqaq2

    SIMPLE ALL IN ONE: From nothing to a fully working dedicated server on Ubuntu

    From your admin account, type: adduser otsmanager sudo Then your info should work. @willianbobela
Back
Top