Autoswap right click /shoot once /not toggle

right click to fire secondary once

2017-03-14 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name         Autoswap right click /shoot once /not toggle
// @namespace    http://tampermonkey.net/
// @version      1.04
// @description  right click to fire secondary once
// @author       meatman2tasty
// @match        http://karnage.io/*
// @grant        none
// ==/UserScript==

$("#gameHudContainer").mousedown(function(ev){
      if(ev.which == 3 || player.alive || inWindow)
      {
          setTimeout(incWeapon(1),10);
      }
});
长期地址
遇到问题?请前往 GitHub 提 Issues。