Skip to content

Instantly share code, notes, and snippets.

@oozzal
Created October 31, 2016 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oozzal/71773028acf55716c49b6d96af8ce97c to your computer and use it in GitHub Desktop.
Save oozzal/71773028acf55716c49b6d96af8ce97c to your computer and use it in GitHub Desktop.
Agario Change Skins Continuously
Array.prototype.random = function () {
return this[Math.floor((Math.random()*this.length))];
}
skins = ['poland', 'usa', 'china', 'russia', 'canada', 'australia', 'spain', 'brazil', 'germany', 'ukraine', 'france', 'sweden', 'chaplin', 'north korea', 'south korea', 'japan', 'united kingdom', 'earth', 'greece', 'latvia', 'lithuania', 'estonia', 'finland', 'norway', 'cia', 'maldivas', 'austria', 'nigeria', 'reddit', 'yaranaika', 'confederate', '9gag', 'indiana', '4chan', 'italy', 'ussr', 'bulgaria', 'tumblr', '2ch.hk', 'hong kong', 'portugal', 'jamaica', 'german empire', 'mexico', 'sanik', 'switzerland', 'croatia', 'chile', 'indonesia', 'bangladesh', 'thailand', 'iran', 'iraq', 'peru', 'moon', 'botswana', 'bosnia', 'netherlands', 'european union', 'taiwan', 'pakistan', 'hungary', 'satanist', 'qing dynasty', 'matriarchy', 'patriarchy', 'feminism', 'ireland', 'texas', 'facepunch', 'prodota', 'cambodia', 'steam', 'piccolo', 'ea', 'india', 'kc', 'denmark', 'quebec', 'ayy lmao', 'sealand', 'bait', 'tsarist russia', 'origin', 'vinesauce', 'stalin', 'belgium', 'luxembourg', 'stussy', 'prussia', '8ch', 'argentina', 'scotland', 'sir', 'romania', 'wojak', 'isis', 'doge', 'nasa', 'byzantium', 'imperial japan', 'french kingdom', 'somalia', 'turkey', 'mars', 'pokerface', '8', 'irs', 'receita federal', 'facebook', 'putin', 'merkel', 'tsipras', 'obama', 'kim jong-un', 'dilma', 'hollande', 'berlusconi', 'cameron', 'clinton', 'hillary', 'venezuela', 'blatter', 'chavez', 'cuba', 'fidel', 'palin', 'queen', 'boris', 'bush', 'trump']
var loop = setInterval(function() {
MC.setNick(skins.random());
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment