06.02.2015, 15:41
How would i go about adding to my script about when people join/leave it sends an text in chat?
public OnPlayerConnect(playerid)
{
new string[128], name[24];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "Player %s connected.", name);
SendClientMessageToAll(-1, string);
}