Advertisement
aKant

Untitled

Apr 6th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. LOST READ THIS: https://developers.google.com/web/tools/chrome-devtools/console/
  2.  
  3. CREATED BY CODEFAG.
  4. /*
  5.     colors
  6.     white: 0
  7.     lightgray: 1
  8.     gray: 2
  9.     black: 3
  10.     pink: 4
  11.     red: 5
  12.     orange: 6
  13.     brown: 7
  14.     yellow: 8
  15.     lime: 9
  16.     green: 10
  17.     light blue: 11
  18.     navy blue: 12
  19.     blue: 13
  20.     pink: 14
  21.     purple: 15
  22. */
  23. ///THIS IS WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  24. ///THIS IS WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  25. ///THIS IS WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  26. ///THIS IS WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  27. ///THIS IS WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  28.     var imageData = [ //CREATE A ARRAY OF THE COLORS LISTED ABOVE.
  29.         [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 ],
  30.         [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 ],
  31.         [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 ],
  32.         [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 ]
  33.     ];
  34.  
  35.     var x = 367; //STARTING POSITION X
  36.     var y = 958; //STARTING POSITION Y
  37.  
  38.  
  39. ///THIS IS NOT  WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  40. ///THIS IS NOT  WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  41. ///THIS IS NOT  WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  42. ///THIS IS NOT  WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  43. ///THIS IS NOT  WHERE YOU MAKE THE SCRIPT INTO ANYTHING
  44. var taskQueue = [];
  45. var taskIndex = 0;
  46.     for(var rowIndex = 0; rowIndex < imageData.length; rowIndex++){
  47.        var row = imageData[rowIndex];
  48.        for(var columnIndex = 0; columnIndex < row.length; columnIndex++){
  49.                     taskQueue.push(
  50.                         (function(a, b, c) { return function() {
  51.                         var array = new ArrayBuffer(5);
  52.                         var dv = new DataView(array);
  53.                            dv.setUint16(0, x + b);
  54.                            dv.setUint16(2, y + a);
  55.                            dv.setUint8(4, c);
  56.                         out = array;
  57.                         console.log(a, b, c);
  58.                         connection.send(array);} }(rowIndex, columnIndex, row[columnIndex])));
  59.         }
  60.     }
  61.  
  62.     setInterval(function(){
  63.         if(taskQueue.length > 0){
  64.             var task = taskQueue[taskIndex];
  65.             if(typeof task == "function"){
  66.                 task();
  67.             }
  68.             taskIndex++;
  69.             if(taskIndex > taskQueue.length){
  70.                 taskIndex = 0;
  71.             }
  72.         }
  73.     }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement