Skip to content

Instantly share code, notes, and snippets.

@BySayko
BySayko / bot.user.js
Last active February 12, 2017 14:54
bot.user.js BoomBap
Number.prototype.mod = function(n) {
return ((this % n) + n) % n;
};
Array.prototype.peek = function() {
return this[this.length - 1];
};
$.get('https://raw.githubusercontent.com/Apostolique/Agar.io-bot/master/bot.user.js?1', function(data) {
@BySayko
BySayko / launcher.user.js
Created July 5, 2015 17:51
launcher.user.js BoomBap
// ==UserScript==
// @name Launcher
// @namespace BoomBAP Radyo
// @include http://agar.io/
// @version 2.86
// @grant none
// @author www.boombap.com
// ==/UserScript==
Number.prototype.mod = function(n) {