• 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

    [otservbr] Latest item images (15.10+) for website

    Updated to 15.10 for canary There are 269 new images added since 14.11. If you are using TFS or other OTS that still uses items.otb on server, you should use 13.20 items with items.otb IDs: [otservbr] Latest item images (13.10+) for website...
  2. Gesior.pl

    Latest outfit images (15.20+) for website

    I already generated my version of 15.10 .spr and .dat 2 days ago: https://downloads.ots.me/data/tibia-clients/dat_and_spr/15.10.2daede.zip I generated 15.10.2daede, Nottinghster 15.10.77ba00, IDK which version is newer. I hope they did not add new outfits in 1 day :) I also generated new...
  3. Gesior.pl

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

    (Unknown scriptfile) is anonymous function or function called by addEvent. You already know that it's called by Game::playerPurchaseItem, so check, what can be executed by it from C++, that may call some function without name or addEvent. It takes over 100 ms per call, so only things I can...
  4. Gesior.pl

    otservers: Crafting the Ultimate Open Tibia Experience

    @4Kazelot "ping" related ideas: do you check "OTS status" answer time as 'ping' (it would also report server lag, as it's executed in 'dispatcher' thread of TFS) or 'ping' server with ICMP packet? ICMP does not work, as most of servers are behind OTCv8 proxy servers and they use different VPS...
  5. Gesior.pl

    Complaint It does not show any warning/error, when file upload fails

    It's not perfect, but muuuch better. I can upload 20+ MB without error, and now it always shows that file is too big on uploaded file. Only problem left is that I can "upload" 57 MB - it shows progress bar and takes time to upload - and at end of upload it shows "The uploaded file is too...
  6. Gesior.pl

    OVH VPS

    I think it should be on Jobs (https://otland.net/forums/jobs.61/) board. Discord: gesior.pl I have 100% automated tools for Linux Ubuntu 22.04 and 24.04 setup for OVH (2-15 minutes depending on VPS CPU speed). They setup database (MariaDB) and www (nginx). This part is free, as it takes me...
  7. Gesior.pl

    Lunera: Tibia-like Singleplayer game released on Steam

    Someone should buy it and extract Tibia.dat, Tibia.spr and map .otbm from game files :) In times when OTS engines supported SQLite databases (2010?), there were multiple offers of "single player games" on polish eBay (allegro.pl) for 1-10$. It was OTS + OTC/Tibia Client with IP changed to...
  8. Gesior.pl

    TFS 1.X+ Attack attribute on shields

    On OTS it's not 'attacking', it's 'using weapon'. When you attack with basic attack, it goes to weapons.cpp and calculates damage for weapon you wear (by type: club, axe, sword, distance or wand), not check all equipped items 'attack'. There are 3 functions that calculate weapon damage in TFS...
  9. Gesior.pl

    OTClient How do ots open the full map in the client?

    You must use OTClient. You press CTRL+SHIFT+M to open/close Minimap on full screen (at least in OTCv8: otcv8-dev/modules/game_minimap/minimap.lua at master · OTCv8/otcv8-dev (https://github.com/OTCv8/otcv8-dev/blob/master/modules/game_minimap/minimap.lua#L27)). To get full map of OTS in...
  10. Gesior.pl

    Is it easy to open a server for myself and give myself TC?

    There is 1 problem: TFS does not have in-game store, so you cannot buy items from it. You can always create 'GOD' character (account type = 6, player group_id = 6 in database) and create any item with command /i ID or /i item name (less precise, as there are many with same name). Newest TFS is...
  11. Gesior.pl

    graphics in the store

    Do you mean that "Sphere" and "Light" shake or there is a problem with reset of animation on "Terrarium Snake" in half of animation (it's probably .gif problem)? Are that custom items (ex. imported from 12+ Tibia) or default 10.98 items? OTCv8 'game_shop' module uses default UIItem widget to...
  12. Gesior.pl

    TFS 1.X+ How to set attack speed for rings and amulets in TFS 1.4.2?

    Attack speed code in player.cpp only checks weapon attack speed, other items attack speed is ignored: uint32_t Player::getAttackSpeed() const { const Item* weapon = getWeapon(true); if (!weapon || weapon->getAttackSpeed() == 0) { return vocation->getAttackSpeed(); }...
  13. Gesior.pl

    Linux Debian how to generate better crash dump file?

    What engine do you use? Can you link github of clean version of that engine, so we can check what kind of build process it uses (cmake, ./configure etc.)? Can you post example crash report? So we could know, which kind of build you are using now.
  14. Gesior.pl

    Complaint It does not show any warning/error, when file upload fails

    I tried to attach 1.2 MB .zip in post, but it failed, because it's too big file. File upload box and name are visible and there is no error/warning anywhere on site, so I assumed that it's uploaded. Without Network console, I would not know, why my file disappears, when I press 'Save' in post.
  15. Gesior.pl

    Looking for tfs install paid service

    He allowed me to release his TFS 0.4 src with fixes. Now it compiles on Debian 12 without any errors reported during compilation. In attached .zip are 2 folders: old_src and fixed_src. If you have problems with TFS 0.4 compilation, you can compare these folders to find what I changed in files...
  16. Gesior.pl

    Looking for tfs install paid service

    Looks like Jobs thread, not Support: https://otland.net/forums/jobs.61/ TFS 0.4 and Nekiro downgrade (TFS 1.3) are not compatible. You cannot use data from one server with another server binary file. Gesior2012 is not updated anymore. Especially TFS 0.4 version, maybe I will release new TFS...
  17. Gesior.pl

    Lua [TFS 1.4.2] Spawn Issue

    Yes. If you want fast spawns, make all spawns smaller (the best: 1 monster per spawn). You can set spawnRate to some super high value like 50 - it won't spawn more monsters than there are defined in map file (spawns.xml / RME). Then it will be able to spawn most of killed monsters at once, but...
  18. Gesior.pl

    Compiling Compiling RME cant open otbm

    I added this PR feat: vcpkg manifest implementation by MUN1Z · Pull Request #28 · OTAcademy/RME (https://github.com/OTAcademy/RME/pull/28) to GitHub - fridaii/RME-ZONES: OTAcademy fork of Remere's Map Editor repository. (https://github.com/fridaii/RME-ZONES) and now it compiles using vcpkg, so...
  19. Gesior.pl

    How to generate OTS map for WWW on Linux server

    There is a tool that generates OTS map for www: https://otland.net/threads/otclient-that-unpack-map-otbm-to-png-files-v4-0.271255/ It's distributed as .exe for Windows or source code to compile on Linux, but to run it on Linux, you need graphics interface (GUI). If you have slow PC or slow...
  20. Gesior.pl

    Linux How to connect to GUI app running in Linux terminal

    When you try to run GUI app (ex. OTClient) in Linux terminal (VPS/dedic), you get errors about 'no display found' and it fails to start. To fix this problem, you can use X11 protocol to connect from Windows/Linux to server and stream this app window. In this tutorial I will setup it on VPS...
Back
Top