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

    Does only OTCLIENT can handle transparent sprite or its OB problem?

    I believe that Tibia does not support an alpha channel. It uses the kind of transparency that was common in the 90s where a single color is marked as transparent. Those more knowledgable than I can confirm.
  2. S

    Database design: Why is each skill level and tries listed in separate columns in the player table?

    That had been my initial thought as well, but looking at the code there is already more than one query being made on player login, and this change would only require one extra query. So I was curious if there was another reason.
  3. S

    Database design: Why is each skill level and tries listed in separate columns in the player table?

    Just curious about this because normally, I would expect those to be in a separate table with a reference to the player table and the skill type, but I am no expert, and want to know if there is a reason for that. It would seem to me that having it in a separate table would ease the ability to...
  4. S

    I pay $ whoever solves my problem! Illegal value ERROR!

    Are you getting the error on the server or the client?
  5. S

    Somebody is hacking my database

    I'm sure it is available for linux, but on windows I use MySqlWorkbench which is a native app rather than php based.
  6. S

    What method(s) do YOU use to turn a plot idea into a quest?

    Sure thing. Pretty, cliche stuff, but here goes. A wizard asks the player(s) to retrieve a MacGuffin in order to stop a demon from resurrecting. Another group opposes the player(s) because, for generations, they have been protecting the MacGuffin because it actually corrupts anyone who uses...
  7. S

    What method(s) do YOU use to turn a plot idea into a quest?

    I want to preface my question with a little background. I am not trying to make a MMO. My goal is to make a virtual playground that me and my kids can play around in. I enjoyed Tibia a long time ago, and showing my daughter the map that comes bundled with TFS 1.2, she seems to be enjoying it. To...
  8. S

    what font is this?

    If you are interested in a 100% free font that is very similar, try Optimus Princeps Font | dafont.com (https://www.dafont.com/optimusprinceps.font)
  9. S

    Any NodeJS AAC?

    Just out of curiosity, all of the AACs I have seen are PHP based, I was wondering if there were any that were built on NodeJS. Node seems like it has a better mechanism (NPM) for installing extensions and fulfilling requirements while setting up new software than PHP does (granted, I have only...
  10. S

    Need a hand with this script (TFS 1.2)

    I am just getting started with Lua and scripting Tibia, but changing this player:addItem(11198, 1) to player:addItem(11198, math.random(1, 5)) Should do it, I think. Assuming using math.random(lower, upper) returns whole numbers. If it doesn't you will need to round that.
  11. S

    Action IDs and Item IDs

    I can't find this explicitly, but looking at the Lua scripts, it seems like and action id does not need to be unique across all items ids, but it does need to be unique across a single item id, and what the server does is when a player tries to use an item id, it checks to see if there is a...
  12. S

    Using blender to create sprites...

    That is not necessarily true, the 8-bit and 16-bit eras had plenty of non-isometric games and very few of them went beyond 16x16 or at most 16x24.
  13. S

    Question about quests

    Not knowing how the structure of everything is, I am going out on a limb here, but I would assume this would accomplish my goal: Add a flag to an item Check an item when it is being moved out of inventory. If it is flagged, check to see where it is being moved and cancel the move if the...
  14. S

    Question about quests

    That is exactly what I want. Thanks. Is that feature supported for all versions? Or do I need to pick a specific version of the server to use that? You are correct. I had not thought about houses, or other people's houses.
  15. S

    Question about quests

    I'm not saying keep track of it at all times. What I'm saying is that I have a chest that gives the key. Before the chest gives the key, it simply checks the player's inventory and their depot. If the key exists in their inventory, it gives nothing. If the key exists in their depot, it removes...
  16. S

    Question about quests

    So in real Tibia, things like the Fanfare quest give you an item once. Is there a way to do something similar, but it always gives you the item, or, if duplicating the item is a concern, only gives you the item if you don't have it in your inventory, and if it you have it in your depot, it gives...
  17. S

    Using blender to create sprites...

    I suppose that makes sense. In order to use any other resolution, you would have to start completely from scratch. Started retopology today. For those of you that don't work with 3D, that is the process of taking a sculpt (on the left) and going over it with new polygons so that you get the...
  18. S

    Using blender to create sprites...

    Thanks. That brings up a question I have. Having not actually played Tibia in years, are sprites still based on 32x32 for most and 64x64 for the big ones, or have they increased the resolution at all, or, more germane to my work, what size sprites does OpenTibiaClient support?
  19. S

    Using blender to create sprites...

    Got sidetracked by a different project, but that one is finished so I picked this one back up. I think I have settled on the digitigrade legs.
  20. S

    Using blender to create sprites...

    Progress for today
Back
Top