• 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 Packet size limit game_store

    Yes. It would compress JSON store offer 3-10 times, so 65KB packet would fit probably ~500 KB of JSON data. It looks like Tibia 12+ feature, not OTCv8 feature, so it probably won't work in OTCv8. OTCv8 packets compression - for any tibia protocol - is...
  2. Gesior.pl

    OTClient OTCv8 Packet size limit game_store

    Ignore all changes from that commit. They change a lot of things. All you need is to edit (NETWORKMESSAGE_MAXSIZE value is different for different Tibia protocols ex. 8.0, 10.98, so if you use some 'downgrade' server, it may be different value than 24590 to make that downgrade compatible with...
  3. Gesior.pl

    OTClient OTCv8 Packet size limit game_store

    You can increase packet size to 65KB with simple server edit: https://github.com/OTCv8/forgottenserver/commit/2839d4d7a8ad3597eff6c786f4ceb9b1b4b4456b#diff-d59c4f2b28dd8c6d0ff82b05e0188d97a98401483ad487dfd67d665a01506f39L23 You can increase packet size to 4 GB with OTCv8 feature...
  4. Gesior.pl

    [WARNING] Custom OTC/OTCv8 Game Store hack

    Store script I get sends list of offers from server to client, client picks one offer and sends it back to server.. with itemid, count, name, category and premium points. Server does not verify any data send by client, just removes (adds for negative value) premium points and add item/outfit...
  5. Gesior.pl

    [WARNING] Custom OTC/OTCv8 Game Store hack

    It's not official Game Store module used in any official OTC. If your Game Store Lua code on server starts like that (store.lua): function onExtendedOpcode(cid, opcode, buffer) if opcode == OpCode.store then local json_status, json_data = pcall( function() return...
  6. Gesior.pl

    How to open .AEC?

    https://docs.opentibiabr.com/opentibiabr/downloads/tools/editors Points to https://www.dropbox.com/s/qonagdi48vwskc1/spider-client-converter.zip?dl=1 I would go to that topic and ask them, how did they open it.
  7. Gesior.pl

    YourOTServer BETA Discussion Thread

    It looks like the worst idea ever :( Someone goes to your site and post server IP, username and password to SSH, to make your site configure OTS and www? How can we know that your site does not install backdoor on server? We cannot. There are many similar services for other games (Minecraft...
  8. Gesior.pl

    anti-push tile action

    What engine? TFS 1.4+? canary? some old engine? Do you want to block pushing items, players or monsters? (which one) Do you want to block pushing FROM tile or TO tile? And by 'action', you probably mean 'movement' or creature event script that blocks pushing.
  9. Gesior.pl

    How to open .AEC?

    Where did you download assets in .aec format? What client version is it? I've got one in AppData\Local\Tibia\Ultima Client\assets\ with date 2024-10-20, so it's probably some 14.x client. Assets Editor does not open it, but Spider Client Converter opens it and exports .spr and .dat from it...
  10. Gesior.pl

    Compiling Compiling error tfs 1.4.2 FMT and STD

    Problem with using old versions of vcpkg C++ packages is that, they are sometimes removed from servers from which vcpkg tries to download them. So you need vcpkg.json to specify that you want to use old version (or use 'git checkout XXXX.XX' in vcpkg folder), but you may get errors during vcpkg...
  11. Gesior.pl

    C++ Get premium_points from database thgrough protocolgame network packet

    It's not allowed, when you 'read' packets. You can use any variables (player/account/database connection), when you 'send' packets, but you must use dispatcher thread task anyway ex. g_dispatcher.addTask. It's because packets from client parsing ex.: case 0xF2: // Premium points request...
  12. Gesior.pl

    RevScripts Looking for older Tibia Clients - Can't find 12.90 for example

    Tibia 11+ client uses 'appearances' file, not spr+dat. All 11+ client spr+dat are new tibia client files converted to 10.98 protocol (last with spr+dat). They were converted using Spider Client Converter (https://docs.opentibiabr.com/opentibiabr/downloads/tools/editors -> "Spider Client...
  13. Gesior.pl

    OTClient HELP! Problem with 255+ effects in OTC

    What server? What protocol version? Codes that handle GameMagicEffectU16 feature in OTCv8 and OTCR are the same. 1. Maybe you did not enable it in right place? modules/game_features/features.lua in OTCv8 2. Maybe you use login string in init.lua that overwrites features? ex .LocalTestServ =...
  14. Gesior.pl

    TFS 1.X+ Debug Oldclient in Spec Cast TFS 1.5

    On screen it says that it crashed on packet ID 181 (hex: 0xB5), which is "cancel walk". It does not make sense. Cast system you mentioned has a lot of problems reported in PR comments (server crashes, client crashes): https://github.com/otland/forgottenserver/pull/2007 It looks like it's based...
  15. Gesior.pl

    Debug Oldclient 8.6 (using base nekiro 1.5)

    Can you share you fixes or some hints what to fix for others with same problem? It would be the best, if you post this question and answers to my 3 questions listed below as new thread on Support board. So someone, who will search for cast system problems on Nekiro will find your thread. 1...
  16. Gesior.pl

    Compiling Compiling error tfs 1.4.2 FMT and STD

    If you want to use TFS 1.4.2 with some bug fixes from TFS 1.6+ and compilation like TFS 1.6 (vcpkg manifest etc.), you can use my branch 'compilation': https://github.com/gesior/forgottenserver-gesior/tree/compilation Compilation instruction is like...
  17. Gesior.pl

    Debug Oldclient 8.6 (using base nekiro 1.5)

    Only limit I may think of is 250 'known' creatures in Tibia Client cache. In OTC it's unlimited - it may still show error in OTC Terminal, if server sends some packets in wrong order, but for sure it won't crash. In Nekiro it's 10.76+ client code downgraded from 1300 limit to 250 limit of Tibia...
  18. Gesior.pl

    Get error when Login

    @Elac this should work. If there will be more errors, you will have to delete database and create new using your OTS database schema (also reinstall acc. maker) ex. https://raw.githubusercontent.com/nekiro/TFS-1.5-Downgrades/refs/heads/8.60/schema.sql
  19. Gesior.pl

    Get error when Login

    It looks like you are using TFS 1.2 (or 0.3 / 0.4) database schema with TFS 1.4 server. premium_ends_at column was added between TFS 1.2 and 1.4. It was added in 26th migration to TFS 1.x schema: TFS-1.5-Downgrades/data/migrations/26.lua at 8.0 · nekiro/TFS-1.5-Downgrades...
  20. Gesior.pl

    OpenTibia OTClient that unpack map.otbm to .png files - v4.0

    Probably not. This client requires items.otb, so you would need to somehow generate items.otb with item attributes and IDs as in Nostalrius server. 500x500 SQM (16k px x 16k px) takes around 1 GB RAM and generates ~60 MB PNG. I've described it here...
Back
Top