#gotshittodo

Pings when Torn chain timer hits a specific time

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         #gotshittodo
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Pings when Torn chain timer hits a specific time
// @author       You
// @match        https://www.torn.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // === Settings ===
    const DEFAULT_ALARM_TIME = "0:30"; // default alarm time
    const PING_SOUND_URL = "https://www.soundjay.com/misc/sounds/bell-ringing-05.mp3"; // ping sound

    const CHECK_INTERVAL = 1000; // check every 1 second
    let alarmTime = DEFAULT_ALARM_TIME;
    let hasAlerted = false;

    // === Audio Element ===
    const audio = new Audio();
    audio.preload = "auto";

    function playPing() {
        audio.src = PING_SOUND_URL;
        audio.currentTime = 0;
        audio.play().catch(err => console.log("🔇 Audio blocked until user interaction:", err));
    }

    function normalizeTime(str) {
        if (!str) return null;
        str = str.trim();
        const [m, s] = str.split(":").map(Number);
        return `${m}:${s.toString().padStart(2, "0")}`;
    }

    function checkChainTimer() {
        // Find chain timer element
        const timerElement = document.querySelector("p[class^='bar-timeleft']");
        if (!timerElement) {
            hasAlerted = false;
            return;
        }

        const timeText = normalizeTime(timerElement.textContent);
        const alarmNormalized = normalizeTime(alarmTime);

        if (timeText && timeText === alarmNormalized && !hasAlerted) {
            console.log(`🔔 Chain ping at ${timeText}!`);
            playPing();
            hasAlerted = true;
        }

        if (timeText !== alarmNormalized) {
            hasAlerted = false;
        }
    }

    setInterval(checkChainTimer, CHECK_INTERVAL);

    // === UI Panel ===
    function createUI() {
        const saved = localStorage.getItem("chainPingTime");
        if (saved) {
            alarmTime = saved;
        }

        const panel = document.createElement("div");
        panel.id = "chainPingPanel";
        panel.innerHTML = `
            <div style="background:#333;color:#fff;padding:12px;border-radius:6px;
                        font-size:13px;position:fixed;top:80px;right:20px;z-index:9999;
                        box-shadow:0 2px 8px rgba(0,0,0,0.3);width:200px;font-family:Arial;">
                <b>🔔 Chain Ping</b><br><br>
                Alert at: <input type="text" id="pingTime" value="${alarmTime}"
                    style="width:60px;padding:2px;margin-left:5px;" placeholder="m:ss"><br><br>
                <button id="savePing" style="width:100%;padding:6px;background:#007acc;color:white;border:none;border-radius:3px;cursor:pointer;">Save Time</button>
                <button id="testPing" style="width:100%;padding:6px;background:#28a745;color:white;border:none;border-radius:3px;cursor:pointer;margin-top:5px;">Test Ping</button>
            </div>
        `;
        document.body.appendChild(panel);

        document.getElementById("savePing").addEventListener("click", () => {
            const newTime = document.getElementById("pingTime").value;
            if (normalizeTime(newTime)) {
                alarmTime = newTime;
                localStorage.setItem("chainPingTime", alarmTime);
                alert(`✅ Ping set for ${alarmTime}`);
            } else {
                alert("❌ Invalid time format. Use m:ss (e.g., 0:30)");
            }
        });

        document.getElementById("testPing").addEventListener("click", () => {
            playPing();
        });
    }

    // Wait for page to load before creating UI
    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', createUI);
    } else {
        createUI();
    }

})();