Vault & Bookie Values

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

As of 2023-06-12. See the latest version.

نووسەر
XeiDaMoKa
Ratings
0 0 0
وەشان
2.2
Created
2023-06-11
Updated
2023-06-12
Size
1.32 KB
مۆڵەت
نییە
Applies to

// ==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 2.2
// @match https://www.torn.com/properties.php
// @match https://www.torn.com/page.php?sid=bookie
// @homepageURL https://www.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;
}
});
})();