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

    OTC 1.0 Comparison

    You're absolutely right, it's scary what can already be done in terms of graphics via AI, and in the coming years, I can only imagine the kind of possibilities and advances that will be done in this field, it's possible that it will make digital artists, as we know them today, completely...
  2. Shadowsong

    OTC 1.0 Comparison

    I told you in my reply how I would approach this in your place. I will share with you how I feel about this topic: I tried already to work on such a project (replace all tibia sprites), and it's an astonishing amount of work, especially if you want them to look anywhere decent. If you try to...
  3. Shadowsong

    OTC 1.0 Comparison

    I think there is no perfect solution to your problem, you will eventually have to settle for a less-than-ideal situation. Either give access only to people you trust, or release publicly knowing that it will be used in the way you described almost certainly. But that's the nature of releasing...
  4. Shadowsong

    OTC 1.0 Comparison

    I read the previous threads on Otland related to this topic, but I am not reading other forums, so I may not know the full story, but I grasped what I could from the situation as it was presented here. Maybe in retrospect, it would be better not to write hot-headed about something, as it can...
  5. Shadowsong

    OTC 1.0 Comparison

    In light of Reckful's death, these words resonate pretty hard on the internet the last few days especially. We've even had an unfortunate case of a death here on OTLand of a guy who arguably had mental health issues which might have contributed greatly to this factor, and shitty behavior online...
  6. Shadowsong

    OTclient not saving settings

    Generally the client_options module manages this stuff across the board. Could be that something is wrong with it, can you check the client terminal and see if there are any errors?
  7. Shadowsong

    Ramdan Kareem!

    On the topic of Ramadan - my country conveniently stopped most quarantine measures one day prior to ramadan and an upcoming holiday, people are already walking around without protection or distancing, shaking hands and sharing food, there will probably be gatherings in mosques and whatnot, with...
  8. Shadowsong

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    Hi Shockie, there is no website as of right now, the server is not out yet. If you wish to follow our development and engage with the community, you're welcome to join our discord, we post there regularly and ask for player feedback for things in development.
  9. Shadowsong

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    Dude you are probably among the top 5 OG players from like 10 years ago, of course I remember you. In fact, the custom house you had me build for you still exists on the map, whenever I open the map and scroll past that part, I'm like "oh... bob's house, wonder if he will come to claim it". Come...
  10. Shadowsong

    Otclient modules

    You can do it through the Lua code of that module. Whenever the Lua script initializes the widget, save it in a variable, then call :setPosition(position) method on the variable to change the position. Position is expected to be a table like {x = 0, y= 0}, where the coordinates refer to actual...
  11. Shadowsong

    [Configuration] How to make a working Quest Log

    Yeah, pretty much that's the idea. 👍 It could become a quite heavy loop if you really have a ton of quests to add at the start, so I preferred to only unlock a few "Starter Quests" for the player upon first login, and then new quests for other zones are unlocked as they wander into them and so...
  12. Shadowsong

    [Configuration] How to make a working Quest Log

    Could be made in sources to work that way for those who know how to do it. I personally went a different route a while ago, where most quests on value "0" have that approach (describe the quest and what to do to continue pursuing it) and then set the player's storages to 0 for the quests I want...
  13. Shadowsong

    [Configuration] How to make a working Quest Log

    On line 19 of your script you are trying to use a variable called player which is has no value. I don't know what you changed, but you messed something up :p Also you are using a script written 9 years ago on a much newer engine probably, can't expect copy/paste to work either.
  14. Shadowsong

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    Sure - Discord: Join the Necronia Discord Server! (https://discord.gg/xEYH8Mr) Yeah, all characters will be wiped.
  15. Shadowsong

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    In case you aren't on our discord, this is the latest news post we published. The team is working on new stuff and will probably make another one soon as well!
  16. Shadowsong

    [list] CIPSoft lazy solutions

    Maybe they don't have a sprite where these two different terrains collide (technically, 3 terrains), so they employ this 'creative' solution :p I do the same thing sometimes lul The only standout here is that those bushes are nowhere else to be seen, except on those edges, which is an obvious...
  17. Shadowsong

    Medivia - discussion and announcement of a new world Unity

    Medivia has aged like a fine wine, from another bland offshoot into an indisputably terrific amalgamation of oldschool vibes and fresh custom content developed for those who like the general mechanics of older Tibia, the likes of whose quality this community will rarely see again. It feels like...
  18. Shadowsong

    Trying to receive a storage value from Tfs > Otclient

    Try to change this packet:addByte(self:getStorageValue(20020)) to this: packet:addString(tostring(self:getStorageValue(20020))) If that doesn't work, you can try also changing this function receiveStorageFromServer(protocol, opcode, buffer) print(buffer) end to function...
  19. Shadowsong

    Trying to receive a storage value from Tfs > Otclient

    Yeah, you're there. In your data folder, there's a lib folder. All the libs you can find inside here are global functions that you can use throughout all your other scripts. You can add new stuff which you intend to use throughout your server scripts to these libraries, For example, you can...
  20. Shadowsong

    Trying to receive a storage value from Tfs > Otclient

    Yes you're right. You have to imagine every scenario in which you'd want to update the player's client with a new value for this skill. For skills, this will usually be: As soon as player logs in. Every time the skill value is increased (e.g. player advances by a level in this skill) Every time...
Back
Top