Vault & Bookie Values

Each click on the input box will cycle through values picked by you (edit the code)

Verze ze dne 11. 06. 2023. Zobrazit nejnovější verzi.

Autor
XeiDaMoKa
Hodnocení
0 0 0
Verze
1.3.2
Vytvořeno
11. 06. 2023
Aktualizováno
11. 06. 2023
Size
1,3 KB
Licence
neuvedeno
Spustit na

// ==UserScript==
// @name Vault & Bookie Values
// @description Each click on the input box will cycle through values picked by you (edit the code)
// @author XeiDaMoKa [2373510]
// @version 1.3.2
// @match https://www.torn.com/properties.php
// @match https://www.torn.com/page.php?sid=bookie
// @homepageURL xeidamoka.com/torn/scripts
// @supportURL https://github.com/XeiDaMoKa/Torn-Scripts/issues
// @namespace https://greasyfork.org/users/907370
// ==/UserScript==

/* global $ */

(function() {
'use strict';

const input_values = {
'properties': ['100,000', '500,000', '1,051,000', '5,000,000', '10,000,000', '25,000,000', '50,000,000', '100,000,000'],
'bookie': ['10,000', '100,000', '1,000,000', '10,000,000', '100,000,000']
};

let i = {
'properties': 0,
'bookie': 0
};

const page_type = window.location.href.includes('properties') ? 'properties' : 'bookie';

$(document).on('click', 'input', function() {
if ($(this).hasClass('input-money')) {
$(this).val(input_values[page_type][i[page_type]]).trigger('input');
i[page_type] = (i[page_type] + 1) % input_values[page_type].length;
} else if ($(this).hasClass('torn-btn')) {
i[page_type] = 0;
}
});
})();