KFeederMacro

Agar.io

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name	   	 KFeederMacro
// @version      v1.01
// @description  Agar.io
// @match        http://agar.io/
// @match        http://agarprivate.ml/
// @match        http://167.114.29.68/party/
// @grant        none
// @namespace https://greasyfork.org/users/54604
// ==/UserScript==

//Press E will fire up to 50 'w's
$(document).on('keydown',function(e){
	if(e.keyCode == 69){
		for(var i = 0; i<50; i++){
			$("body").trigger($.Event("keydown", { keyCode: 87})); 
			$("body").trigger($.Event("keyup", { keyCode: 87})); 
		}
	}
});