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

    [11.50+] An Easier Way To Teleport

    The first packet the client sends to the game server is partly RSA-encrypted, and the RSA-encrypted portion contains the XTEA key that will be needed to decrypt subsequent packets. Those packets are XTEA encrypted starting at the 7th byte until the end. I took the easy way out by modifying the...
  2. jo3bingham

    TFS 0.X Does the RAM increase while the server is online?

    Every time a player logs in, or a monster is created, or an item is created (among other things) memory from your RAM has to be allocated to hold them. If you're not properly deallocating memory for these objects when they are no longer needed then that memory cannot be freed back to the pool...
  3. jo3bingham

    vcpkg libmariadb

    There is currently a patch in review that worked for me: [libmariadb] Fix patch by JackBoosY · Pull Request #10043 · microsoft/vcpkg (https://github.com/microsoft/vcpkg/pull/10043)
  4. jo3bingham

    [11.50+] An Easier Way To Teleport

    Prologue I want to preface this post by making a few statements: I am, more-or-less, out of the OT development circuit. What I mean to say is, while I'm not actively working on a server, or actively engaging in the community, I still visit the forums and try to help those who seek out my...
  5. jo3bingham

    Dawnport tutorial

    First, you'll want to follow the first four steps in this post to extract the resource file: https://otland.net/threads/tibia-11-pic-editing.259720/ The tutorial recording is located in a different subdirectory depending on the client version you're targeting, but the file name should be the...
  6. jo3bingham

    Dawnport tutorial

    I’m currently away from home, so this is all to the best of my memory... When you log in, the login server marks each character with a value (istutorial, I believe) that tells the client whether or not to start the tutorial. The tutorial is literally a recording of server->client packets, and...
  7. jo3bingham

    TFS 1.X+ theforgottenserver items.otb

    1) I'm assuming OTItemEditor: https://github.com/opentibia/item-editor 2) According to the OTItemEditor source, ItemTypeAttrSpriteHash is the MD5 hash of the item's sprites...
  8. jo3bingham

    Another OT Item editor (otb, dat, spr) in TypeScript

    It uses Google's protobuf format. You can use something like Protod (sysdream/Protod (https://github.com/sysdream/Protod)) to extract the .proto metadata from the client executable. It hasn't changed in a while, but I can't remember off the top of my head the last time it did. Google doesn't...
  9. jo3bingham

    How to generate a dump file TFS 1.x file with visual studio or windows?

    There's plenty of tutorials online, here's one for example: Tip: Automatically create a crash dump file on error - Meziantou's blog (https://www.meziantou.net/tip-automatically-create-a-crash-dump-file-on-error.htm) I would also suggest configuring your release builds to generate symbols (.pdb...
  10. jo3bingham

    Error player configuration on client 12

    First I'll go through what the issue is, then I'll give an easy way to solve it. If you go to the Tibia 11 characterdata directory (on Windows you will find this at %LocalAppData%\Tibia\packages\Tibia\characterdata\), you will see that every subdirectory is a numerical value that corresponds to...
  11. jo3bingham

    Where can I download 8.0 Tibia Client?

    You can confirm by checking the hash of the file, in this case they are the same.
  12. jo3bingham

    Where can I download 8.0 Tibia Client?

    @Tibia Leaves I didn't realize Google hid it from others, as I can see it when logged in to my drive. I'll PM you with another way to download it. Yes. I've had this downloaded and installed on my computer for years without any issues. What I meant is that, the 6 vendors that say it's a trojan...
  13. jo3bingham

    Where can I download 8.0 Tibia Client?

    I have the 8.0 client installer on my shared Google Drive, and, while it has been "flagged" on there by Google, I can still download it and their virus scan lets it through. Also, uploading it to VirusTotal shows 6/65 AV vendors marking it as bad, but, as someone who is a software engineer in...
  14. jo3bingham

    Tibia 11+ Downgrade tool

    Very nice. Now I want to make mine faster. :D
  15. jo3bingham

    Tibia 11+ Downgrade tool

    I was wondering how long it was going to take someone to release something like this. A few things to note: You should go ahead and release the source, preferably on a version control site (i.e. GitHub). I say this because you mention it requires .NET Framework which implies it's probably...
  16. jo3bingham

    Cipsoft map editor

    Those images are timestamped 2011 (2 years after Windows 7 was released), so not surprising. The image in the OP is Windows 10.
  17. jo3bingham

    Lua attempt to get length of local 'players' (a boolean value)

    You should always return the same type from your functions. My suggestion is that if db.getResult() returns LUA_ERROR, then you should log that error: function getCsPlayers() local players = {} local result = db.getResult("SELECT `player_id` FROM `cs`") if result:getID() ==...
  18. jo3bingham

    Some questions about how Tibia works

    It would be easy to do with OTClient, or one of the other various clients being made, but not so much with the official client (seeing as though most cheat programs were made to target the official client). To do so you would need to learn the layout of the clients GUI in memory and be able to...
  19. jo3bingham

    Some questions about how Tibia works

    The server sends an area of 18x14 tiles, but the client only displays 15x11 tiles. There's one extra row above the game window, two extra rows below the game window, one extra column to the left, and two extra columns to the right.
  20. jo3bingham

    TFS 1.X+ TFS 1.2 Compiling 8.60

    Here's the commit in TFS where Mark fixed this: Fix build error · otland/forgottenserver@7193a67 (https://github.com/otland/forgottenserver/commit/7193a670c6b5b7cff472e1946e5b1e7ca7e1051b)
Back
Top