Click R to respawn in Agma.io.
נכון ליום
// ==UserScript==
// @name Agma.io - Respawn on R
// @namespace http://gronlokke.github.io/
// @version 0.1.0
// @description Click R to respawn in Agma.io.
// @author Gronlokke
// @match http://agma.io/*
// ==/UserScript==
/* jshint ignore:start */
window.onload = function() {
var respawn = document.getElementsByClassName("rspwnBtn")[0];
var play = document.getElementById("playBtn");
window.onkeydown = function(e) {
if (e.keyCode == 82) { // You can replace this with another button, just check the key code on keycode.info.
respawn.click();
play.click();
}
}
}
/* jshint ignore:end */