• 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!

OTClient Finally managed to build mehah/otclient and TFS1.6 running. How to start game?

Leetcoder

New Member
Joined
Mar 28, 2025
Messages
3
Reaction score
0
Hey, I was a Tibia player back in 2005ish for a few years. Now I'm trying to play around with it as a dev. I finally managed to get mehah/otclient and TFS 1.6 to build on my Windows using Visual Studio.

I couldn't find any instructions on how to actually connect to the servers, whether it's TFS or canary or maybe even some other live servers. For now, I just want to be able to connect to my own local TFS.

I got a version of Tibia 10.9 to run with TFS (precompiled binary), so now I'm trying to use the same SQL server (should work I think?) and use mehah/otclient with TFS, though TFS seems to require 13.10 so that's what I did below.

Am I missing some spr/dat files? Where should I put it? Also, is the port correct? I've seen some people use 443, and 80 also. Any resources on this would be very helpful. Thanks.


1743204058059.webp

1743204023524.webp
 
Download assets: Tibia13.10.12892.zip
  • Copy all files of assets folder and place them in OTClient Redemption data/things/version. Replace 'version' for client 13 version. Example: data/things/1310.

  • On OTClient Redemption init.lua, change:

    LUA:
    Servers_init = {
        ["your-domain-or-ip/login.php"] = {
            ["port"] = 80,
            ["protocol"] = 1310,
            ["httpLogin"] = true
        },
    }

  • If you're using HTTPS, use port 443 and httpLogin false
  • If you're using HTTP, use port 80 and httpLogin true
 
Thank you so much for pointing to those files. I am now running into another problem with login. My init.lua has
Code:
--[[
Servers_init = {
    ["[URL]http://127.0.0.1/login.php[/URL]"] = {
        ["port"] = 80,
        ["protocol"] = 1310,
        ["httpLogin"] = true
    },
    ["ip.net"] = {
        ["port"] = 7171,
        ["protocol"] = 860,
        ["httpLogin"] = false
    },
}
]]
I am using TFS 1.7. The log is saying it's using port 8080, so I also tried changing the port above from 80 to 8080 but it doesn't work.
Starting HTTP server on 127.0.0.1:8080 with 1 threads.
Loaded all modules, server starting up...
Forgotten Server Online!

1743616583973.webp1743616624294.webp
 
ah shit I was using an old Gesior AAC from 2012. Are there docs on this stuff? Now that I'm using slawken/aac (by bringing those files into xampp/htdocs, now mySQL is running into issues. Is XAMPP still being used or is that also some outdated software?
 
Back
Top