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

AAC Who Is Online Website Problem

Mister Budex

BudexOT.com
Joined
Jun 22, 2016
Messages
1,547
Solutions
18
Reaction score
378
I'm using tfs 0.4, Znote AAC , and my current problem is in-game there is no-one playing , and on website it shows few players as online, What should be matter? I tried refreshing .php file but didnt worked. Here are some images
- on Website : Screenshot
- in-Game : Screenshot
 
Try to clean the players_online or something like that table in the database, seems like a bug somehow.
Right, This morning tried to find that in mine database but i dont even have players_online , probably that should be problem, EDITED - I added players_online table but still dont shows who is online..
 
Last edited:
Right, This morning tried to find that in mine database but i dont even have players_online , probably that should be problem
No, the servers database might be diffrently built, check the players table and view the online players and look for some row saying "online" or something like that and change it from 1, to 0.
 
Works ! , Thanks :D

No, the servers database might be diffrently built, check the players table and view the online players and look for some row saying "online" or something like that and change it from 1, to 0.
After i re-install my database it still aint working , i tried again to change from 1 to 0 and it works , but after restart ot or website it shows same like ago :(

bump

BUMP
 
Last edited by a moderator:
You could restore the value to zero when starting the server, something like this might do the trick:
Lua:
function onStartup(interval)
    db.query("UPDATE `players` SET `players`.`online` = 0;")
    return true
end
 
Back
Top