16.11.2012, 17:12
pawn Код:
public OnPlayerConnect(playerid)
{
new name[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(string, sizeof(string), "%s has connected to the server!", name);
SendClientMessageToAll(-1, string);
return 1;
}