SA-MP Forums Archive
N° of registered players online - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: N° of registered players online (/showthread.php?tid=294913)



N° of registered players online - Face9000 - 03.11.2011

Hello guys,i've this function that i use in my registration system:

pawn Код:
if(!dini_Exists(udb_encode(playername)))
        {
(The account is registered).

And i need to show how many registered players are online,like:

There are XX registered players online.

Thanks!!


Re: N° of registered players online - Face9000 - 04.11.2011

Noone?


Re: N° of registered players online - wups - 04.11.2011

Loop through all players, and check if their file exists.


Re: N° of registered players online - EvgeN 1137 - 04.11.2011

PHP код:
new playerscount 0;
for(new 
0MAX_PLAYERSi++)
{
if(!
IsPlayerConnected(playerid)) continue;
new 
name[MAX_PLAYER_NAME]; GetPlayerName(playeridname24);
if(!
dini_Exists(udb_encode(playername))) continue;
playerscount++;




Re: N° of registered players online - Face9000 - 04.11.2011

Thanks,it works