25.09.2012, 13:52
Exemplo:
pawn Code:
public OnPlayerText(playerid, text[])
{
new VBNome[MAX_PLAYER_NAME], VBString[128];
GetPlayerName(playerid, VBNome, MAX_PLAYER_NAME);
VBNome[strfind(VBNome, "_")] = ' ';
format(VBString, 128, "%s diz : %s", VBNome, text);
SendClientMessageToAll(-1, VBString);
return false;
}