OWOP Random Color

LSD xd

  1. // ==UserScript==
  2. // @name OWOP Random Color
  3. // @namespace *.ourworldofpixels.com/*
  4. // @version 0.2.0
  5. // @description LSD xd
  6. // @author Armağan
  7. // @match *.ourworldofpixels.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var interval = window.prompt("interval? (MS)", "50")
  12. OWOP.chat.local("--------------\nRefresh the page to stop Random Colors.\n--------------");
  13.  
  14. setInterval(function(){
  15.  
  16. var R = Math.floor((Math.random() * 255) + 1)
  17. var G = Math.floor((Math.random() * 255) + 1)
  18. var B = Math.floor((Math.random() * 255) + 1)
  19.  
  20. WorldOfPixels.player.selectedColor = [R, G, B]
  21.  
  22. },interval);