19.05.2014, 07:35
When I login /rcon and chat, it shows up [Admin]Brandon: blah blah.
But it shows up in white. Any way to change that to red?
But it shows up in white. Any way to change that to red?
pawn Код:
public OnPlayerText(playerid, text[])
{
if(IsPlayerAdmin(playerid))
{
new pName[MAX_PLAYER_NAME], String[128];
GetPlayerName(playerid, pName, 24);
format(String, sizeof(String), "[Admin]%s: %s", pName, text);
SendClientMessageToAll(-1,String);
return 0;
}
return 1;
}