Auto respawn

Auto spawner karnage

目前為 2017-01-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Auto respawn
// @namespace    http://tampermonkey.net/
// @version      1.5
// @description  Auto spawner karnage
// @author       meatman2tasty
// @match        http://karnage.io/
// @grant        none
// ==/UserScript==

function respawn() {
    setTimeout(respawn, 50);
    if (inWindow) {
         enterGame ('player');
    }
}
respawn();

var element = document.getElementById("mainMenuContainer");
element.parentNode.removeChild(element);

MOUSE_DOWN = 1;