// ==UserScript== // @name H0T3 D0G3 HACK AGARLIST // @namespace http://tampermonkey.net/ // @version 1.3.5 // @description Add skin changing // @author ÂNGELO // @match http://alis.io/ // @grant none // @downloadURL none // ==/UserScript== var skinChanger = false; var i = 0 var skinSpeed = 100; var skinList = ["http://i.imgur.com/Hf5okn6.png", "http://i.imgur.com/DokHtL5.png", "http://i.imgur.com/EIIdCA6.png", "http://i.imgur.com/5f8PDee.png", "http://i.imgur.com/PKBkVCa.png", "http://i.imgur.com/bZWygIa.png", "http://i.imgur.com/LVPiqbl.png", "http://i.imgur.com/80qtiJs.png", "http://i.imgur.com/80qtiJs.png", "http://i.imgur.com/RXv3mOU.png", "http://i.imgur.com/ZFw8I8H.png", "http://i.imgur.com/U3Q0rnd.png", "http://i.imgur.com/DKIpJZJ.png", "http://i.imgur.com/jN1ZwZ6.png", "http://i.imgur.com/drMAcCh.png", "http://i.imgur.com/zdcFxNA.png", "http://i.imgur.com/i7UQe8h.png", "http://i.imgur.com/35Hg4KO.jpg", "http://i.imgur.com/0rd1ez7.jpg", "http://i.imgur.com/qeJsYx7.png", "http://i.imgur.com/tPV1Ofc.png", "http://i.imgur.com/z3Tk7MJ.png", "http://i.imgur.com/dEggQ2K.png", "http://i.imgur.com/s3pCy3J.jpg", "http://i.imgur.com/dUMSkwe.png", "http://i.imgur.com/4rnaj02.png", "http://i.imgur.com/bKMJOqd.png", "http://i.imgur.com/hieOiwb.jpg", "http://i.imgur.com/mE6Abw8.png", ]; window.addEventListener('keydown', keydown); function keydown(e) { if(e.keyCode === 67 && !($("#input_box2").is(":focus"))) { skinChanger = !skinChanger; } if(e.keyCode === 27) { skinChanger = false; } } //$('.content').append(''); setInterval(function(){ if(skinChanger) { document.getElementById('skin_url').value = skinList[i]; i++; if(i === skinList.length) {i = 0;} setNick(document.getElementById('nick').value); } },skinSpeed);