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

    AAC Znote missing table Points

    I'm not sure how it works... But here is the SQL code to add a new entry for points; ALTER TABLE `accounts` ADD COLUMN `points` INT(11) DEFAULT '0' NOT NULL;
  2. slavi

    Lua onKill players on party sharing xp to get task counted

    As stated by ~LordFire, you should iterate over members in the party if it exists. This code only works on TFS 1.X local players local party = player:getParty() if party ~= nil then players = party:getMembers() -- all members of the party players[#players + 1] = party:getLeader() --...
  3. slavi

    website

    Please use a proper title to describe your issue.
  4. slavi

    OTU - OpenTibiaUnity - A new TibiaClient based on Unity3D engine

    Please check the wiki on how to build spritesheets https://slavi.gitbook.io/opentibiaunity/v/1.0b/getting-started/preparing-stylesheets
  5. slavi

    npc trade modules and outfit modules

    This is related to the client version itself. You should use 8.0+ protocol version. PS: Otclient's default outfit window style doesn't look like this. So you wouldn't get any benefit unless you would design it yourself! Sincerely, Slavi
  6. slavi

    OTU - OpenTibiaUnity - A new TibiaClient based on Unity3D engine

    Heya there :) I'd like to announce the very first beta release of the client. You can obtain it here slavidodo/OpenTibia-Unity (https://github.com/slavidodo/OpenTibia-Unity/releases/tag/1.21-beta) If you want to compile it yourself, please check the wiki Introduction...
  7. slavi

    change color imagem otc

    Button styles are located in data/styles/10-buttons.otui For the map panel, I'm not sure what color you mean exactly, but you should check your panels (located in data/images/ui/panel_xxx.png)
  8. slavi

    Lua Imbuements System to 8.60 [0.4]

    Yes, you converted this to daytime.. 12:25:50. To solve this, you need to use a custom attribute on the item to calculate the timeleft and update the description with that time. PS: the fault in your code is here: local hours = 60 * 60 local time = 20 * hours local humantime =...
  9. slavi

    TFS 1.X+ Tfs 1.3 Pets are through walls

    Please describe your problem well as per rules, and provide enough sources about your implementation of the "Pets". Since this is not implemented in TFS where nobody can actually know how you implemented it, there is no way anybody can help you...
  10. slavi

    OTClient How to check login on otclient

    Please describe the problem well and provide more information about that tool if possible. Check the rules of support board here, Rule #1, #5 https://otland.net/threads/rules-for-the-support-board.217087/ What do you want to do exactly with character names? And what do you mean by 'stats'?
  11. slavi

    Duplicated ID

    If you want to have two bolts looking the same, then edit items.otb and add another item with the same client id. Other than that, it's not possible to have two weapon scripts on the same item id.
  12. slavi

    Duplicated ID

    Firstly, whenever you are posting a support thread, you should include the server version (TFS), besides your title doesn't describe the problem at all. Please check the rules here, #1, #5 https://otland.net/threads/rules-for-the-support-board.217087/ Secondly, The error says you have a...
  13. slavi

    How to deal with common errors while compiling!

    Reserved for future use!
  14. slavi

    How to deal with common errors while compiling!

    Hey there, As the title describes, this tutorial aims to give you a background about a programming topic, which is compiling. This tutorial is targeted to people with none to beginner knowledge in programming. We'll be using visual studio. The reason behind posting this, is that most people...
  15. slavi

    how to connect using tibia 12?

    Please check Support Rules. Your post doesn't match Rule #1. https://otland.net/threads/rules-for-the-support-board.217087/
  16. slavi

    TFS 0.X How to add dash in sources?

    I'm not sure if that's possible since the walking duration is calculated precisely on both sides (server & client). What makes people walk slowly sometimes than usual is the duration each key repeat has to wait.. (Which is 250 millis).. If there is a way to do it, then it would be...
  17. slavi

    I need help with door access.

    Please post your TFS version as per rules. https://otland.net/threads/rules-for-the-support-board.217087/
  18. slavi

    HOW TO GET HOST AND WHATS THE MAIN STEPS TO SET MY OTSERVER ONLINE.

    Please post more information about your server. This information includes: TFS version & Client version. For more information on how to write a post please check the rules here. https://otland.net/threads/rules-for-the-support-board.217087/ -- Back to your topic; First things first, you...
  19. slavi

    OTU - OpenTibiaUnity - A new TibiaClient based on Unity3D engine

    In the next upcoming updates (considered road-map but not restricted to any specific date): 1. Items editor based on the protobuf handled by the client. The main reason to have this is that it sucks hard to update items.otb every time you'd want to update attributes of items that were possibly...
  20. slavi

    Compiling [Linux] "undefined reference" after 100%

    Hello, undefined reference is a linker issue that means the library files weren't loaded correctly. And in your case, it means that "lua5.1.so" isn't linked. Please refer to this thread for more information...
Back
Top