05.01.2014, 22:19
Here you go!
pawn Код:
public OnPlayerText(playerid, text[])
{
new _string[ 145 ], GetName[ MAX_PLAYER_NAME ];
GetPlayerName( playerid, GetName, MAX_PLAYER_NAME );
format( _string, sizeof( _string ), "%s(%i): %s", GetName, playerid, text );
return false; //false to avoid sending double text messages.
}