SpaceBar to shoot/Hold for full clip
当前为
// ==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)});