"Player X has just logged in"
#1

How can i make that when a Guy logged in, that a Message in the Chat come like "Player X has just logged in"?
Reply
#2

https://www.******.be/#hl=en&safe=of...w=1920&bih=979
Reply
#3

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;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)