ChooseWeapons

Live good life!

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         ChooseWeapons
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Live good life!
// @author       anonym
// @match        https://alpha.e-sim.org/battle.html?id=*
// @grant        none
// ==/UserScript==

(function() {
    const chooseWeapons = () => {
        const listWeapons = document.getElementById('selectable6');
        const q0Weapons = listWeapons.firstElementChild;
        const q5Weapons = listWeapons.lastElementChild;
        const weaponQuality = document.getElementById('weaponQuality');
            q0Weapons.classList.remove('ui-selected');
            q5Weapons.classList.add('ui-selected');
            weaponQuality.value = 5;
    };

let script = document.createElement('script');
	script.textContent = '(' + chooseWeapons + ')(jQuery, window);';
	document.body.appendChild(script);
})();