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

TFS 1.X+ Player_online mysql

dfs1

Member
Joined
Aug 27, 2011
Messages
82
Solutions
1
Reaction score
8
help, my console closes automatically every 10 minutes.
 

Attachments

Solution
Find script that sends this query. Looks like some in-game highscores, but this query is invalid. There is ASC which would sort results, but there is missing ORDER BY xxx with column name, which should be used in sorting.

On Windows you can use some IDE or Notepad++ to search in all files in data folder for:
Lua:
`players_online`
On Linux you can enter data folder in terminal and execute:
Code:
grep -R '`players_online`'
Find script that sends this query. Looks like some in-game highscores, but this query is invalid. There is ASC which would sort results, but there is missing ORDER BY xxx with column name, which should be used in sorting.

On Windows you can use some IDE or Notepad++ to search in all files in data folder for:
Lua:
`players_online`
On Linux you can enter data folder in terminal and execute:
Code:
grep -R '`players_online`'
 
Solution
Back
Top