12.08.2012, 18:30
Hello, please tell me how to solve this problem. I set it so text written by admins is a specific color on my servers and when they type something long the second row is white.
Here's a picture so you can better understand what I'm saying:
The script:
Here's a picture so you can better understand what I'm saying:
The script:
pawn Код:
if(PlayerInfo[playerid][Level] >= 1)
{
new messagetext[1024];
format(messagetext, 1024, "{ff0000}(ID:%d): {00ff00}%s", playerid, text);
SendPlayerMessageToAll(playerid, messagetext);
return 0;
}