Resource Value Saver

Store resource values from the ticker for calculation in other scripts

目前為 2021-06-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Resource Value Saver
// @namespace    http://www.knightsradiant.pw
// @version      0.1
// @description  Store resource values from the ticker for calculation in other scripts
// @author       Talus
// @match        https://politicsandwar.com/index.php?id=26*
// @require https://code.jquery.com/jquery-3.4.1.min.js
// @grant        none
// ==/UserScript==

(function(){
    var tickerSelectPath = '#rightcolumn > p.alert.alert-warning > marquee';
    var resourceRE = /Food: \$(?<food>[\d,]+) Steel: \$(?<steel>[\d,]+) Aluminum: \$(?<aluminum>[\d,]+) Munitions: \$(?<munitions>[\d,]+) Gasoline: \$(?<gasoline>[\d,]+) Coal: \$(?<coal>[\d,]+) Oil: \$(?<oil>[\d,]+) Uranium: \$(?<uranium>[\d,]+) Iron: \$(?<iron>[\d,]+) Bauxite: \$(?<bauxite>[\d,]+) Lead: \$(?<lead>[\d,]+) Credits: \$(?<credits>[\d,]+)/;
    var $ = window.jQuery;
    var tickerText = $(tickerSelectPath).text();
    var resourceValues = tickerText.match(resourceRE).groups;
    for (const property in resourceValues) {
        resourceValues[property] = resourceValues[property].replaceAll(',','');
    }
    localStorage.setItem('resourceValues', JSON.stringify(resourceValues));
})();