Change weapon in air

try to take over the world!

目前為 2019-01-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Change weapon in air
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.erepublik.com/en
// @grant        none
// ==/UserScript==

var $ = jQuery;

(function() {
    var weaponLink = $("li.q10 img").attr("src");
    if (weaponLink != "/images/icons/industry/2/q10.png")
    {
        $(".weapon_link")[0].click();
    }
})();