Torn Race Creating

Autofills the race form and moves the start button for easier custom race creation.

当前为 2025-09-22 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Torn Race Creating
// @version      1.0
// @description  Autofills the race form and moves the start button for easier custom race creation.
// @author       K1rbs
// @match        *www.torn.com/loader.php?sid=racing*
// @grant        GM_addStyle
// @namespace    https://greasyfork.org/de/users/1517997
// ==/UserScript==

(function() {
    'use strict';

    // === CONFIGURATION ===
    const numberOfLaps = "1"; // Change this value to set the number of laps.
    const maxDrivers = "2"; // Change this value to set the number of maximum drivers.
    const trackName = "Speedway"; // Change to the desired track name.
    const raceName = "1 Lap Speedway"; // Change to the desired race name.
    // =====================

    GM_addStyle(`
        /* Hide the original separator line from the button's old position */
        .cont-black > form > .sep {
            display: none !important;
        }

        /* Adjust the title bar to act as a container for the button */
        .title-black.top-round {
            padding: 2px 8px !important;
            display: flex !important;
            justify-content: flex-start !important;
            align-items: center !important;
            height: 40px;
        }
    `);

    $('body').ajaxComplete(function(e, xhr, settings) {
        if (settings.url.includes("section=createCustomRace")) {
            setTimeout(function() {
                const buttonContainer = $('.custom-btn-wrap');
                const titleContainer = $('.title-black.top-round');
                const submitButton = buttonContainer.find('input[type="submit"]');

                if (buttonContainer.length && titleContainer.length) {
                    titleContainer.empty().append(buttonContainer);
                    submitButton.attr('form', 'createCustomRace');
                }
                $('#racename').val(raceName).trigger('change');
                $('.laps-wrap > .input-wrap > input').val(numberOfLaps).trigger('change');
                $('.drivers-max-wrap div.input-wrap input').val(maxDrivers).trigger('change');
                $('#select-racing-track').selectmenu();
                $('#select-racing-track-menu > li:contains(' + trackName + ')').mouseup();

            }, 200);
        }
    });
})();