Resource Value Saver

Store resource values from the ticker for calculation in other scripts

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Resource Value Saver
// @namespace    http://www.knightsradiant.pw
// @version      0.11
// @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.6.0.min.js
// @license      GPL-3.0-or-later
// @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));
})();