02.09.2009, 13:28
Hello to all! How to make ID infront of My name in chat ?!!
format(string,sizeof string,"I am ID %d.",playerid);
SendClientMessageToAll(color,string);
public OnPlayerText(playerid,text[])
{
new string[134];
format(string, sizeof(string), "(%i) %s", playerid, text);
SendPlayerMessageToAll(playerid, string);
return 0;
}