Mivel nem ismerem a forráskódod, ezért csak egy példával tudok szolgálni, amit átalakíthatsz.
Megjegyzés: Nem volt tesztelve!
public OnPlayerText( playerid, text[ ] ) {
static pName[ MAX_PLAYER_NAME ];
static Result[ 128 ];
GetPlayerName( playerid, pName, sizeof pName );
for( new index = 0; index < strlen( pName ); ++index ) {
if( pName[ index ] == \'_\' ) pName[ index ] = \' \';
}
format( Result, sizeof Result, \"%s mondja: %s\", pName, text );
SendClientMessageToAll( COLOR_YELLOW, Result );
return 0;
}
ZeRo