14.11.2009, 09:40
Does anyone know where i can get this tiny script, when a player connects to the server it adds +1 and sends a message to him/her saying "People ever connected to server %.".
new jplayas;
OnPlayerConnect(playerid)
{
jplayas++;
new string[128];
format(string, sizeof(string), "%i Players ever connected to this server.", jplayas);
SendClientMessage(playerid, COLOR_GREEN, string);
return 1;
}
Originally Posted by DeathOnaStick
pawn Код:
|