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

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    Ok. So there is no critical issues in tvp just not accurate written formulas, some map bugs, wrong naming in items. I can accept that. The server freeze/crashes was from lua scripts not from cpp code. I just did not gets why you advertise it as a garbage with hundreds of critical bugs. I can...
  2. G

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    So this critical issues was with lua addevents which you create? I searched in all addevents in tvp 772 and all addevents are written properly. You are always saying that tvp is bugged and not useable, but you did not point any of this bugs so far. I goes through all available tfs engines with...
  3. G

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    I do not expect you to release your code, but if you know this bugs already you could point them in the list and we could fix them togwther. Its hard to repair bugs whem we do not know what shoild be repaired. Your server had to be really successful if you had 300 active players. Congrats. I...
  4. G

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    So this 7.4 version is considered newer/better then 772? I do not know why you guys decided to develop this 74 version on github instead of 772 - which for example already have this functionality of disabling local database in gamedata\players. Some options like overspawn are usefull from this...
  5. G

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    Hi, I have few questions about this versions of TVP sources leaked here. One is a stable for 772 and second is develop for 74. Is that 74 version also developed by ezzz? The version which I bought is the 772 stable but I see that a lot of source files were changed in this 74 version. I'm not...
  6. G

    Challange-response between server and Tibianic-dll client

    This is tibianic and server piece of code which restrict users to use your version of the client. Any other client like otclient, classic Tibia client with ip changed - will not work. It will return the message that client is outdated.
  7. G

    C++ Client 772 with extended spr/dat support

    Problem is now solved. Thanks to @kor for detailed instruction.
  8. G

    C++ Client 772 with extended spr/dat support

    Hello, I would like to know if that is possible, to allow 772 client to use extended spr/dat files saved in Object Builder? I found that instruction: https://otland.net/threads/need-help-to-client-cipsoft-8-70-extended.291924/ It suggests, that it could be done from hex editing the client - but...
  9. G

    OpenTibia Convert 7.4 dat/spr to work on for example 7.72

    Hi, I share here my version of Object builder compiled with three new/edited features, which should help you with merging 7.4 dat/spr with 772 dat/spr. First change is: -"New" button is adding new item right after the selected item on the list (originally it was adding new item at the end of the...
  10. G

    Mapper [7.72] Paid work to create 5 dungeons maps

    Hello, I'm looking for skilled mapper to create (atm) 5 dungeons based on sprites available in tibia 7.72. Each dungeon created = seperate payment - to secure me and you. If you will be creative - i can pay extra for your work/time - and we can work in the future on similar small tasks. It...
  11. G

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    upgraded reflect system. Now it checks the shooteffect and hiteffect from every attack and returns it with correct animations: core.lua: -- Reflect damage back to attacker (with matching projectile and effect) if attacker and attacker ~= creature and attacker:isCreature()...
  12. G

    [Germany] [7.4-7.7] [NA/EU Proxies] Tibia Reborn - Launch 27/2 19.00 CET

    Good job with creating this features in tibianic dll. You can easly change spr, dat dll file names with hex editor and edit the exe properties using resource hacker. It would look more pro :) I hope more players will join the server very soon.
  13. G

    Challange-response between server and Tibianic-dll client

    I analyze few servers which use tibianic-dll and I see that they have this security even before characters list appear. So I believe it can be rewriten to protocollogin.cpp - I will try to do it later and will post an update if I make it with success. 1771722718 The new approach, similar to...
  14. G

    AAC MyAAC 1.8.8 - theme-atomio - player outfit always on top

    Thanks ! There was existing one in style.css actually: nav .container > div > ul > li:hover > ul, and I edited it to nav .container > div > ul > li:hover > ul { z-index: 1; } And now it works fine !
  15. G

    Challange-response between server and Tibianic-dll client

    Gover submitted a new resource: Challance-response between server and Tibianic-dll client - tibianic-dll, challance-response I'm not sure if thats a good place to post this. If not please move it to correct place on the forum. Read more about this resource...
  16. G

    Challange-response between server and Tibianic-dll client

    Hi, I would like to share my approach to forcing players to use my version of game client. Since we have tibianic-dll we can actually do that, and prevent players from using otclient's etc. I'm not a skilled programmer, so it can have some bugs. It would be nice to hear your opinions on doing...
  17. G

    AAC MyAAC 1.8.8 - theme-atomio - player outfit always on top

    Hello! I'm struggling with a plugin theme-atomio available for MyAAC website. The issue is that when I enable displaying outfit feature then this outfit is displayed at top. The drop down menu is below this image, so when a player move a mouce to quests string - the menu disappears. I was trying...
  18. G

    AAC MyAAC 1.8.8 - Character name capitalize first letter in each word

    Thanks a lot - it really clear things up :) I tried to change: if (!admin() && !empty($character_name)) { $character_name = ucwords(strtolower($character_name)); } to if (!admin() && !empty($character_name)) { $character_name = ucfirst(strtolower($character_name)); } And now...
  19. G

    MyAAC 1.8.8 - hide admin panel

    Hello, Maybe someone have better idea to hide the /admin panel on MyAAC website - i would be more then happy to hear your opinions. I was thinking that giving an access to login page for admin panel for users is a way to let them try to break the server. I could change the /admin to something...
  20. G

    AAC MyAAC 1.8.8 - Character name capitalize first letter in each word

    Hello, Another question about MyAAC in latest version. I saw that creating a character from admin account is working properly. I can easly create character with name for example: "Knight of Nothing". But with normal account - system automatically capitalize first letter and convert my name...
Back
Top