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

Solved Change pedestal refresh time of Unnamed AAC

Xampy

PHP | SQL | LUA | C++
Joined
Jun 22, 2008
Messages
1,109
Reaction score
17
Hello all!

I have a dude. How can I change the pedestal time to see how many players are online? (on Gesior's Unnamed AAC)

I mean that, for example, if I have 120 players online , on the pedestal maybe shows me that my server has 117 for example (it must take more time than whoisonline.php to reload info).

How can I change that? I changed checkInterval on htdocs/config/serverinfo but nothing.

Help, thanks!
 
Last edited:
PHP:
$players_online_data = $SQL->query('SELECT * FROM players WHERE online = 1);
$number_of_players_online = 0;
foreach($players_online_data as $players) {
	$number_of_players_online++;
}

$main_content .= $number_of_players_online;

'Should' work, didn't tested.
 
Back
Top