19.12.2013, 14:41
Quote:
It will send a client message that looks like this: "[MSG] This is a message", where the "[]" are blue and the "MSG" is white, and the "This is a message" will be green (or whatever color you use in the function)
|
pawn Код:
stock SendSystemMessage(playerid, color, message[])
{
new string[144];
format(string, sizeof(string), "[{FFFFFF}MSG{2B78FF}] {%06x}%s", color >>> 8, message);
SendClientMessage(playerid, 0x2B78FFFF, string);
}