Advertisement
Dayrion

Untitled

Jun 3rd, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.41 KB | None | 0 0
  1.     if(strlen(chat_text) < 72) // 1/2
  2.     {
  3.         SendClientMessageToAll(-1, chat_text);
  4.     }
  5.     else if(strlen(chat_text) > 72) // +1/2
  6.     {
  7.         new chat_line[2][73];
  8.         strmid(chat_line[0], chat_text, 0, 72, 72);
  9.         SendClientMessageToAll(-1, chat_line[0]);
  10.         strmid(chat_line[1], chat_text, 73, 144, 72);
  11.         SendClientMessageToAll(-1, chat_line[1]);
  12.         strdel(chat_text, 0, 144);
  13.         return false;
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement