29.05.2013, 18:15
Код:
SendCustomPlayerMessage(playerid, color, text[]); { if(strlen(text) > 84) { new tekst1[85], tekst2[85]; strmid(tekst2, text, 84, 168); strmid(tekst1, text, 0, 84); format(string, 168, "%s...", tekst1); SendClientMessage(playerid, color, string); format(string, 168, "...%s", tekst2); SendClientMessage(playerid, color, string); } else SendClientMessage(playerid, color, text); }
Someone maybe can help?