26.06.2012, 19:40
I believe you want something like this:-
Hope this helps?
Regards,
FalconX
pawn Код:
public OnPlayerText(playerid, text[])
{
new szChatString[ 150 ];
format( szChatString, sizeof( szChatString ), "(%d) %s: %s", playerid, PlayerName( playerid ), text );
SendClientMessageToAll( GetPlayerColor( playerid ), szChatString );
return 0;
}
stock PlayerName( playerid )
{
new pName[ MAX_PLAYER_NAME ];
GetPlayerName( playerid, pName, sizeof( pName ) );
return pName;
}
Regards,
FalconX