SA-MP Forums Archive
Count online players - 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: Count online players (/showthread.php?tid=314001)



Count online players - milanosie - 28.01.2012

Hello, is there a function that I can use in a string to count the amount of online players?

like

blabla just joined, He is player ( NUMBER OF PLAYERS HERE ) online


Re: Count online players - MasterJoker - 28.01.2012

theres one you can download over here

Simple Filterscript

it includes player counting system


Re: Count online players - [XST]O_x - 28.01.2012

pawn Code:
new count = 0,
    string[64],
    name[24];

public OnPlayerConnect(playerid)
{
    count++;
    GetPlayerName(playerid,name,24);
    format(string,sizeof(string),"%s has joined! He is player number %d",name,count);
    SendClientMessageToAll(-1,string);
    return 1;
}
public OnPlayerDisconnect(playerid)
{
    count--;
    return 1;
}



Re: Count online players - milanosie - 28.01.2012

thanks anyway, but made my own