Fast Fire

SpaceBar to shoot/Hold for full clip

当前为 2016-07-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         Fast Fire
// @namespace    http://tampermonkey.net/
// @version      1.01
// @description  SpaceBar to shoot/Hold for full clip
// @author       Unknown
// @match        http://vertix.io/
// @grant        none
// ==/UserScript==

$("#cvs").keydown(function(c){32==c.which&&shootBullet(player)});