// ==UserScript== // @name OWOP Random Color // @namespace *.ourworldofpixels.com/* // @version 0.1 // @description LSD xd // @author Armağan // @match *.ourworldofpixels.com/* // @grant none // @downloadURL none // ==/UserScript== OWOP.chat.local("--------------\nRefresh the page to stop Random Colors.\n--------------"); setInterval(function(){ var R = Math.floor((Math.random() * 255) + 1) var G = Math.floor((Math.random() * 255) + 1) var B = Math.floor((Math.random() * 255) + 1) WorldOfPixels.player.selectedColor = [R, G, B] },50);