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

    Tibia 7.7 Server Decompiled

    on Windows you can very easily run this under WSL2
  2. atomyst

    Tibia 7.7 Map Editor for Original CipSoft .sec Files (PyQt5) - Pre-Alpha

    Isn't better to just use 7.72 client but change the sprites, modify the client to look like 7.4/7.5? (tibianic-dll) 7.72 has nice features like OpenGL, DX9 etc.
  3. atomyst

    Where does one start if they want to make a 7.4 server in 2026? (+ commonly used functions)

    The decompiled files are the real cipsoft game server files that leaked. Everything is else is just an attempt to mimic the true experience so it can't be perfect
  4. atomyst

    Where does one start if they want to make a 7.4 server in 2026? (+ commonly used functions)

    Well, if you're not familiar with programming modyfing tibia-game (original decompiled 7.72 server) can be a problem for you cause very little is in configuration files but only that can provide you with a authentic old school base. Adding tasking systems, crafting systems, rarity systems...
  5. atomyst

    Where does one start if they want to make a 7.4 server in 2026? (+ commonly used functions)

    I think downgrading Tibia 7.7 Server Decompiled (https://otland.net/threads/tibia-7-7-server-decompiled.296811/) would be my choice + modyfing original 7.5 map
  6. atomyst

    Tibia 7.7 Server Decompiled

    I created a fork of this repo that I'll be keeping in sync with the OG :) https://github.com/atomstty/tibia-game The changes I added are some configuration options added to .tibia like experience or skill rates, death penalty https://github.com/atomstty/tibia-game/blob/master/CHANGES.md I...
  7. atomyst

    Tibia 7.7 Server Decompiled

    Should be fixed now
  8. atomyst

    Tibia 7.7 Server Decompiled

    I've modified the tibianic-dll to be able to connect to this (local) server (altered the RSA), I've made it possible to build this on linux as well https://github.com/michaldarda/tibianic-dll If you want something more lightweight - here is only WSAD modified for 7.72 client (also compilable...
  9. atomyst

    Feature [DLL] Simple WSAD in C++

    If you want to do this for 7.72 Here are the addresses CONNECTION_STATUS_ADDRESS = 0x0071C588 PUSH_LETTER_FUNCTION_ADDRESS = 0x00447E60 PUSH_LETTER_CALL_ADDRESS = 0x004AB834...
  10. atomyst

    Tibia 7.7 Server Decompiled

    Hey @fusion32 great work! I was trying to do that and was looking for something like this but it was way beyond my skills :) You've inspired me - some time ago I was working on rewriting some of the leaked files things like query manager and login server in Rust, wrote some useful scripts as...
  11. atomyst

    Script and tutorial to automate install of "Leaked" 7.70 server

    Sure it was GitHub - nekiro/dockerized-realots (https://github.com/nekiro/dockerized-realots) by @Nekiro I think 🙂 i’ll add it to the repository read me later as well This contains things like phpmyadmin, I was developing this mostly for myself and I don’t mind interacting with mysql on the...
  12. atomyst

    Is there a IP changer for Ubuntu 24?

    @QuickLearner I wrote a python script that does IP Change. I've used it only on 7.70 Client but should work also on the 8.6 #!/usr/bin/env python3 # Read the binary file import os import sys print(sys.argv) if len(sys.argv) != 3: print("Usage: ./ip_changer <path_to_executable> <new_ip>")...
  13. atomyst

    Script and tutorial to automate install of "Leaked" 7.70 server

    I've been working on dockerization of all this and I think I've managed to make it work :) This is not as polished as scripts that @SilverFern created but I was able to run this server in minutes on both Linux and Windows machines. Everything described in the repository's README...
  14. atomyst

    Script and tutorial to automate install of "Leaked" 7.70 server

    @SilverFern I've created this python script that does Ip change Usage: ./ip_changer Tibia.exe 192.168.1.65 #!/usr/bin/env python3 # Read the binary file import os import sys print(sys.argv) if len(sys.argv) != 3: print("Usage: ./ip_changer <path_to_executable> <new_ip>")...
Back
Top