30.08.2009, 17:08
Quote:
Originally Posted by DeltaAirlines12
Can someone please make me a simple FS that says
like if someones name is Joe, The when they join the server, it sends a message to all the players saying "Joe Has Joined The Server!" Thanks. |
{
new pName[MAX_PLAYER_NAME];
new string[48];
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), "%s has joined the server.", pName);
SendClientMessageToAll(0xAAAAAAAA, string);
return 1;
}