• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Connection problems even all ports are opened

jornthomas

New Member
Joined
Dec 16, 2013
Messages
14
Reaction score
1
Hello everyone!

I have decided to check out the OT system again after some years, it has really changed alot over the time! (Awesome)

I just configured my computer and ran the server TFS 0.3.6 (8.2?)

I can connect to the server just fine with my local IP adress (ofcourse)
I have opened all the ports in my router (ofcourse)
I went to vapus.net to check the status, and get this:

1.png
Port 80 (You can run a website)

1.png
Port 7171 (People can see their character list)

1.png
Port 7172 (People can join your server)

You can run a server. Everything checks out fine!

When my friends are using my global adress and try to connect, they can see their character list, but cannot connect to the game.. :S

Can someone see any problems here? Or have any information that can point me in the right way?

Thanks!

Here is my Config.lua:
Code:
-- The Forgotten Server Config


    -- Connection config
    worldId = 0
    ip = "127.0.0.1"
    bindOnlyConfiguredIpAddress = false
    loginPort = 7171
    gamePort = 7172
    adminPort = 7171
    statusPort = 7171
    loginTries = 10
    retryTimeout = 5 * 1000
    loginTimeout = 60 * 1000
    maxPlayers = 1000
    motd = "Welcome to the Forgotten Server 8.60!"
    displayOnOrOffAtCharlist = false
    onePlayerOnlinePerAccount = true
    allowClones = false
    serverName = "Forgotten 8.60"
    loginMessage = "Welcome to the Forgotten Server 8.60!"
    statusTimeout = 5 * 60 * 1000
    replaceKickOnLogin = true
    forceSlowConnectionsToDisconnect = false
    loginOnlyWithLoginServer = false
    premiumPlayerSkipWaitList = false

    -- Database
    -- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
    -- To disable sqlKeepAlive such as mysqlReadTimeout use 0 value.
    sqlType = "mysql"
    sqlHost = "localhost"
    sqlPort = 3306
    sqlUser = "myuser"
    sqlPass = "mypassword"
    sqlDatabase = "theforgottenserver"
    sqlFile = "forgottenserver.s3db"
    sqlKeepAlive = 0
    mysqlReadTimeout = 10
    mysqlWriteTimeout = 10
    encryptionType = "plain"

   
    -- Logs
    -- NOTE: This kind of logging does not work in GUI version.
    -- For such, please compile the software with __GUI_LOGS__ flag.
    adminLogsEnabled = false
    displayPlayersLogging = true
    prefixChannelLogs = ""
    runFile = ""
    outLogName = ""
    errorLogName = ""
    truncateLogsOnStartup = false
 
Tried them both. Just upgraded the sw / fw on my router, doublechecked all the ports, and firewall settings.
Should try to restart and re-run the server and take a look. Hopefully that will solve the issue :)
 
1. Remove All -- comments in config lua for secure..
2. Go to no-ip.org -> Sign in / Sign up --> Create Host --> Download the client..
3. Run "DUC40" (no-ip client)...
4. Be sure that you've allowed "Tibia" in your firewall..
5. paste the ip of server -- ( lolipop.zapto.org ) -- in config lua instead of your local-ip (127.0.0.1) ..
 
Back
Top