DolphinsFTW speed pellet

For instructions look after the Userscript

目前為 2016-05-20 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        DolphinsFTW speed pellet
// @namespace    http://tampermonkey.net/
// @version      2.8
// @description  For instructions look after the Userscript
// @author       You
// @match        http://agarioforums.io
// @match        http://agarioforums.io/split/
// @match        http://agar.io/
// @match        http://agar.io
// @match        c0nsume.me
// @grant        none
// ==/UserScript==
Consider signing up to Agarioforums.net for fun times, a custom server and dedicated and hard working staff. Keys. Q for fast mass W. R for splitting 16 times, (when your teaming or are tricksplitting). You can also split with left click now and shoot some mass with right click :D.You can stop this alert box from coming by looking into the code, insturctions are provided.at the end you can add in ur name with special character after entering your name once to copy paste the spcial characters :D.
(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
//<![CDATA[
setTimeout( function ( ) { alert( "[DFTW] ?oℒife go into coding to change this into your name with special characters or easy cop and paste while I work on automatticly adding in your name" ); }, 10000 );
//]]>
//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