• 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. Gesior.pl

    OTClient OTCV8 - MiniMap

    What tool do you use to export it? Map editor or what? You must use OTC to generate .otmm (open tibia mini map): https://halp.skalski.pro/2020/06/05/otclient-generate-full-minimap-for-your-server/ You can use my 64-bit OTC to load big .otbm map...
  2. Gesior.pl

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    I mean that you can copy 4-6 files (scheduler/tasks = 4 files, stats = 2 files) from my TFS 1.4+ to TFS 1.2 and it should compile without errors. IDK which commit did optimizations in TFS 1.4+, but for sure there are some ex.: https://github.com/otland/forgottenserver/pull/3326 They are TFS 1.2...
  3. Gesior.pl

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    TFS 1.4 scheduler/dispatcher code has some important optimization (it uses a lot less CPU) and is 100% compatible with TFS 1.2 scheduler/dispatcher code. You can just use whole tasks.cpp, tasks.h, scheduler.cpp, scheduler.h files from my commit in TFS 1.2.
  4. Gesior.pl

    Alpha Proxy Guide (kondrah/otclient multi-path proxy)

    I missed in previous post that you are using TFS login.php on 8080 port, not MyAAC login.php to login. You do not have login.php on server. TFS handles requests to login.php on port 8080 in C++, which I modified in my PR to return 127.0.0.1: OTCv8 proxy + HAProxy by gesior · Pull Request #4860 ·...
  5. Gesior.pl

    Alpha Proxy Guide (kondrah/otclient multi-path proxy)

    Yes. login.php must return OTS IP 127.0.0.1 and it will make OTC use proxy system defined in init.lua (list of proxy IPs and ports) of OTC to connect to OTS. I know that there are some changes in 14.00+ protocol in RL tibia client, that broke 'OTC proxy for RL Tibia Client'. IDK, if these...
  6. Gesior.pl

    Active/upcoming Otclient.

    This in data/XML/events.xml should be replaced with (month/day/year format): startdate="1/27/2026" enddate="12/30/2027" MyAAC login.php will automatically generate JSON from the Canary .xml configuration file. It may require few minutes to update in client (and of course client restart), as...
  7. Gesior.pl

    Active/upcoming Otclient.

    Most of date manipulation libraries interpret 27th month of 2026 as 3rd month of 2028, so end time is after start time: https://3v4l.org/ITbJK#v8.4.17
  8. Gesior.pl

    OTClient 7.72 client vanilla

    There are also rehosts on server with faster network: .zip/.exe (installator): OTS.ME Downloads (https://downloads-oracle.ots.me/?dir=data/tibia-clients/windows) .spr and .dat for OTClient: OTS.ME Downloads (https://downloads-oracle.ots.me/?dir=data/tibia-clients/dat_and_spr) Most of clients up...
  9. Gesior.pl

    NPC Generator — Visual Blueprint Editor with Inspector, Groups, and Bookmarks

    I worked on similar website tool 10-15 years ago, but when it get to NPCs that give mission after completing previous mission and I add around 10 missions, config of NPC (visual) became harded to read, than Lua code (if clean coded).
  10. Gesior.pl

    How to get FREE VPS from Oracle Cloud

    They ran out of these ARM 4 core free VPSes years ago. I had mine for around 3 years, but then someone hacker it (I shared it with multiple people). I tried to delete machine and create new, but there are no servers available after I deleted my machine. There are still 1 core 1 GB VPSes for...
  11. Gesior.pl

    What is the purpose of the Dockerfile?

    I think that OTS/TFS is not developed for this kind of Docker containers. It will probably return wrong IP of server, when you visit characters list (character lists contains IP of server and port, to which client connects, when you select character - it can be other IP than in config.lua, there...
  12. Gesior.pl

    What is the purpose of the Dockerfile?

    I don't know anyone who use Docker to run OTS on production. OTS app has shutdown processes that can be very easily closed wrong by Docker process management and result in data (players progress/house items) loss - I run TVP server in Docker on Windows and it often lose houses data during...
  13. Gesior.pl

    OTClient Saved position of containers

    Problem is probably in ProtocolGame::sendEmptyContainer. It sends some bytes that tries to replicate adding container to player. Bytes you copied from this commit ( df20cb58c5064dbe4cd607485b232598f961649d ) are for Tibia 12.72 ( forgottenserver/src/definitions.h at...
  14. Gesior.pl

    [USA] [CUSTOM] Tibia-MU Browser Game

    Right mouse click on monster makes my character attack it - and it's marked on screen. If I open 'Battle' menu and mark monster, I do not attack it - no damage/effects on monster. It's marked as 'attacked', but server does not calculate 'damage'. Also 'walking' with arrows/mouse click in that...
  15. Gesior.pl

    OTClient otclient auto updater

    I think that problem may be that you did not change app name and your files 'collide' with some other OTS that also did not change it: https://github.com/OTCv8/otclientv8/blob/master/init.lua#L2 APP_NAME tells updater where to save updated files in %APPDATA%. Also, as @zygfryd64 said. If your...
  16. Gesior.pl

    TFS 1.X+ [TFS 1.5] 8.60 LootRate Is kinda weird.

    Post your orshabaal.xml and what loot do you expect? Do you have problem with loot in monster corpse or loot message send by server? Loot is random. Kill 100 monsters and compare total loot from them.
  17. Gesior.pl

    Lua TFS 0.3.6 PROBLEM WITH SCRIPT TASK SYSTEM

    To make it readable, post both modules as attachments to your post. Maybe then we will be able to fix it's content and post fixed files. If you decide to post both modules, tell us which works and which does not.
  18. Gesior.pl

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    I just noticed, that there is a GitHub repo related to this thread. I worked on files from this thread/some Discord guy and it looks like they are a bit different (some src/connection.cpp changes). I will make PRs (7.4 & 7.72) with C++ changes tomorrow, so my code changes will be 100% compatible...
  19. Gesior.pl

    TVP 7.4 Develop & TVP 7.7 Stable Full Distribution

    It would be really hard to collect all required C++ libraries to compile this server on Windows without vcpkg. With vcpkg, it would auto install all required C++ libraries, but then you would need to update some C++ files to work with new versions of C++ libraries. Someone asked me about it on...
  20. Gesior.pl

    OpenTibia Items and outfits images generator for website 0.1.6

    A little update for people who tried to generate custom Tibia Client 12+ images and failed. This tool works only with .dat and .spr, so only up to 10.98. There is SpiderClientConverter ( GitHub - Arch-Mina/ClientConverter (https://github.com/Arch-Mina/ClientConverter/tree/master) ) tool that...
Back
Top