• 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

    C++ basic, simple tibia bot - where should i start?

    Check out the original tibia-programming forum: Forums (https://tpforums.org/forum/) It's quite dead (really, really dead), so don't expect anyone to answer if you post there, but it's full of excellent information. Some helpful links: TibiaAPI (C# library): ianobermiller/tibiaapi...
  2. jo3bingham

    Tibia 11 - 13 Problem with cheat engine on Windows

    OP is asking about a memory scanner, not a packet sniffer. Two totally different things. If this is not the issue @Lupek, what version of Cheat Engine are you using? For some reason, version 6.2 keeps popping up in my head. Give it a shot, it's still available to download on the official site.
  3. jo3bingham

    Searching working bot on actual REAL TIBIA

    Yeah, that's not true. There are quite a few bots available for the current RL client. Public ones are just pixel-reading bots, while private ones are more sophisticated. Botting is frowned upon here, so don't get your hopes up. However, I was able to find a few with a quick google search so...
  4. jo3bingham

    Weird problem executing theforgottenserver

    What you'll need to do is start a debugging session from Visual Studio. In Visual Studio go to Build->Configuration Manager... and change the Active solution configuration to Debug then Build the solution. Next you'll want to copy your data pack, config.lua, and all other necessary files to the...
  5. 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...
  6. 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...
  7. 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)
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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.
  16. 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...
  17. 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...
  18. jo3bingham

    Tibia 11+ Downgrade tool

    Very nice. Now I want to make mine faster. :D
  19. 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...
  20. 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.
Back
Top