[R]How to get online players count - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [R]How to get online players count (
/showthread.php?tid=136750)
[R]How to get online players count -
xfire - 26.03.2010
Hi
how to get online player count
Ex:
500/150 Player online.
Re: [R]How to get online players count -
Whitetiger - 26.03.2010
Code:
GetPlayersOnServer() {
new count;
for(new x=0; x< MAX_PLAYERS; x++) { //x = MAX_PLAYERS
if(IsPlayerConnected(x))) {
count++;
}
}
return count;
}
Then call that function whenever you need to know how many players are on the server.
Re: [R]How to get online players count -
xfire - 26.03.2010
thanks a lot