04.11.2010, 19:10
uhhm put this
and
Код:
#define COLOR_GREEN 0x228B22FF
and
Код:
public OnPlayerConnect(playerid)
{
new string[256];
new playerName[24];
GetPlayerName(playerid,playerName,24);
format(string,sizeof(string),"Welcome to : %s",playerName);
SendClientMessage(playerid,COLOR_GREEN,string);
return 1;
}

