// ==UserScript== // @name DolphinsFTW speed pellet // @namespace http://tampermonkey.net/ // @version 2.4 // @description DOLPHINS // @author You // @match http://agarioforums.io // @match http://agarioforums.io/split/ // @match http://agar.io/ // @match http://agar.io // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... //delete from here to next point to remove fast feed })();(function() { var amount = 20; var duration = 1; //ms var overwriting = function(evt) { if (evt.keyCode === 81) { //The current key is Q for fast feed. to change that change the keycode. you can search up all the keycodes online for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 87}); window.onkeyup({keyCode: 87}); }, i * duration); } } }; //delete until here from first comment to remove fast feed //Delete from here to next comment to remove tricksplit splitting window.addEventListener('keydown', overwriting); })(); (function() { var amount = 6; var duration = 50; //ms var overwriting = function(evt) { if (evt.keyCode === 82) { // KEY_R for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 32}); window.onkeyup({keyCode: 32}); }, i * duration); } } }; window.addEventListener('keydown', overwriting); })(); // until here for trick splitting //Delete from here to delete the alert box // //until here //delete all this to remove mouse features $( function() { var feeddown = $.Event("keydown", { keyCode: 87}); //delete this row to remove just fast feed var feedup = $.Event("keyup", { keyCode: 87}); //delete this row to remove just fast feed var splitdown = $.Event("keydown", { keyCode: 32});// delete this row for just removal of mouse split var splitup = $.Event("keyup", { keyCode: 32});// delete this row for just removal of mouse split $(document).bind('mousedown', function(e) { if( (e.which == 3) ){ $("body").trigger(feeddown); //delete this row to remove just fast feed $("body").trigger(feedup); //delete this row to remove just fast feed } else if( (e.which == 1) ){ $("body").trigger(splitdown);// delete this row for just removal of mouse split $("body").trigger(splitup);// delete this row for just removal of mouse split } }).bind('contextmenu', function(e){ e.preventDefault(); }); } )(); //all the way till here //