Advertisement
headzoo

Untitled

Jun 12th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $api.on("send", function(e, data) {
  2.     var colors  = ['#FF0000','#f26522','#fff200','#00a651','#28abe2','#2e3192','#6868ff'];
  3.     var newstr  = '';
  4.     var counter = 0;
  5.     var chars   = data.msg.split('');
  6.     for (var x in data.msg.split('')) {
  7.         if (chars[x]!=' ') {
  8.             newstr = newstr + '[' + colors[counter] + ']' + chars[x] + '[/#]';
  9.             counter++;
  10.         } else {
  11.             newstr = newstr + ' ';
  12.         }
  13.         if (counter >= colors.length) {
  14.             counter = 0;
  15.         }
  16.     }
  17.  
  18.     data.msg = newstr;
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement