16.07.2018, 06:22
Quote:
Yes you can.
Код:
SendExtendedMessageToAll(color, const string[]); Код:
stock SendExtendedMessageToAll(color, const string[]) { if(strlen(string) > 120) { new msg[120]; format(msg, sizeof(msg), "%s", string); // 0 to 120 SendClientMessageToAll(color, msg); format(msg, sizeof(msg), "{FFFFFF}...%s", string[120]); // 120 to the end SendClientMessageToAll(color, msg); return 1; } else { SendClientMessageToAll(color, string); return 1; } } |