// ==UserScript== // @name Auto-buy Spear for raiding in ZOMBS.IO! // @namespace raiding but much more ez // @version 1 // @description Press [#] to auto buy spear // @author Vengeance & REMZAS个 // @match http://zombs.io/ // @grant none // @downloadURL none // ==/UserScript== addEventListener('keydown', function(e){ // when key is pressed if(e.key == "g"){ // If the key being held down is 'g' Game.currentGame.network.sendRpc({ name: "BuyItem", itemName: "Spear", tier: 4}); // Buys item Game.currentGame.network.sendRpc({ name: "EquipItem", itemName: "Spear", tier: 4}); // Holds item } }) // : D