10.05.2011, 20:03
pawn Код:
public OnPlayerText(...)
{
new IP[16];
new string[512];
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid,pname,sizeof(pname));
GetPlayerIp(playerid,IP,sizeof(IP));
format(string,sizeof(string),"%s[%d][%d] says: %s",pname,IP,playerid,text);
SendClientMessageToAll(COLOR_WHITE,string);
return 0;
}
Quote:
If You need to see in chat like this take this code:
put it under OnPlayerText: like this pawn Код:
|
That's really really..hmm