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

    Linux Segment fault, bt full code, where to look? TFS 1.3

    I'm not sure, but maybe you are using player:getStorageValue in a player that doesn't exist anymore in memory (I mean, using it in an addEvent that the player is already offline, something like this?)
  2. drakylucas

    Solved New Tibia Client

    Original fork of tfs does not support tibia 12, however, you can use otservbr distro (based on TFS)
  3. drakylucas

    How does the npc see ml?

    Wow... This is the best answer from all support threads I've ever seen. You taught him how to understand what's going on and where to find the answers! Very good job Znote! I guess I haven't seen answers like this even on stackoverflow xd
  4. drakylucas

    C++ skills limit

    From server side, I think you should edit player.h file changing some uint16_t to uint32_t... Example: https://github.com/otland/forgottenserver/blob/master/src/player.h#L103 https://github.com/otland/forgottenserver/blob/master/src/player.h#L616...
  5. drakylucas

    Medivia and their updates

    I personally played medivia very long time ago. I stopped playing way before the new sprites/towns came (>5 years) and, surprisingly, my account and my characters still exist! This is the most important thing for me in a game. I like to play a game that I can return later without restarting from...
  6. drakylucas

    GlobalEvent Send text and effect to the Top Level ~ TFS 1.3 Revscripts

    @oen432 actually, if you do this way, it will work for current top level online only. If top level is offline, another player will have this effect.
  7. drakylucas

    [Store System] Call to developers

    TFS stopped in time because there aren't any fully open-source updated client to go along TFS. I guess TFS developers will implement current protocols when OTClient or Unity client also support those changes. Note that Otcv8 is not open source, so even if it can connect to Tibia 12 (I'm not...
  8. drakylucas

    Valheim

    I've started playing. Killed the first boss only so far. It's kinda hard to have time to play (I work and I live with my girlfriend, so I need to divide my spare time), but I enjoyed playing it with my friend.
  9. drakylucas

    Valheim

    Has anyone here played Valheim?
  10. drakylucas

    How can we discourage botting?

    Party hunts giving more exp is a way to benefit real players instead of botters. You might also increase general experience from all server based in how many active parties hunting are there, so people will ask for party hunts even more. Random timeout from magic walls also help, as they'll...
  11. drakylucas

    What needs to be modified to create a new ring?

    In your items.xml, search for the equipped life ring (ID 2205) All attributes you mentioned can be seen there. To create a new item, you need to add a new ID in items.xml and edit items.otb. Also, edit movements.xml as mentioned above (equip and deequip) (just find id 2205,copy and paste)
  12. drakylucas

    [12x] - OTG BR-Global

    Hi What is the difference between this project and otservbr repo? Also, Readme page is broken (error 404). Regards
  13. drakylucas

    I'm back

    Welcome back :)
  14. drakylucas

    Lua Summon last for 30 seconds TFS 1.3 (summon by action)

    I think you should check if summon still exists inside the addEvent, otherwise you'll be using creature:remove in a non-existant creature (maybe crash server? Null pointer)
  15. drakylucas

    Tibia Multiverse

    Bro you are watching Sword Art Online too much. Open tibia doesn't work like aincrad seed.
  16. drakylucas

    Lua [TFS 1.3] Being able to "select" a player through a talkaction param.

    Remove line 24 (else) and line 25 (print(player)) 1613509578 If you need that it works even with player offline, then it's not possible (unless doing sql queries). There is an open issue for this Working on offline player from lua · Issue #3298 · otland/forgottenserver...
  17. drakylucas

    Mapper Levi999x Free Mapping Service

    Hi :) Maybe a revamp of rookgaard (old one, 8.6) but using sprites from 10.98? (just the city, otherwise it will be too much I guess) (you can find original rookgaard map in this forum, I'm on phone now so it's a bit hard to find, sorry)
  18. drakylucas

    Lua weird behavior on lua table size.

    The interesting thing is: print(table1[0]) shows "xx" so lua knows that there is something on index 0, but it doesn't count on counting table elements (#table1 returns 0)
  19. drakylucas

    Lua weird behavior on lua table size.

    Hi all, I don't know if it should be in support, or discussion why does lua have this weird behavior? local table0 = {} local table1 = { [0] = "xx", } local table2 = { [1] = "xx", } local table3 = { [0] = "xx", [1] = "yy", } local table4 = { [0] = "xx", [1] = "yy", [2] = "yy", } local...
  20. drakylucas

    PHP Running mysql/my-acc/forgottenserver.exe using Docker / docker-compose

    Hi all, good afternoon, how are you doing? I'm a totally newbie in Containers/docker. Can someone please explain step by step to put mysql, website and the TFS running through containers? without having to compile the server, I imagine this file structure: folders: otserver...
Back
Top