Set Dice

Inject script untuk manipulasi hasil akhir roll dadu berdasarkan API

目前為 2025-08-01 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.sleazyfork.org/scripts/544272/1633702/Set%20Dice.js

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Set Dice
// @version      1.1
// @description  Inject script untuk manipulasi hasil akhir roll dadu berdasarkan API
// @author       Zyetaa
// @match        *://*/*
// @grant        none
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function () {
    'use strict';
  
    const originalRandom = Math.random;
    let apiResponse = null;
    let isScriptActive = false;
  
    async function fetchApiData() {
      try {
        const response = await fetch('https://kaptenxxi2-blublublublu.hf.space/set?__sign=eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2ODI2YWMwMjk3NTQ0YmNiMjI5ZTEyMGIiLCJ1c2VyIjoiS2FwdGVuWHhpMiIsInNlc3Npb25JZCI6IjY4N2VkMjQ4OTcwMTU2ODU2ZTg4ZDNjZSJ9LCJpYXQiOjE3NTQwMzE3NTksInN1YiI6Ii9zcGFjZXMvS2FwdGVuWHhpMi9ibHVibHVibHVibHUiLCJleHAiOjE3NTQxMTgxNTksImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.hupQLCW4CWjJKTOmBdT3ZQT1U9J5RGibE7UWSkIIfyhw_gHe8sloFemfQCDemsaIxpJouqBsYml1bPVvuzFTBg&key=cuanku');
        const data = await response.json();
        apiResponse = data;
        console.log('API Response:', apiResponse);
      } catch (error) {
        console.error('Error fetching API data:', error);
      }
    }
  
    setInterval(fetchApiData, 1000);
    fetchApiData();
  
    function generateFixedTotal(total, len = 9) {
        const maxTotal = len * 6;
        total = Math.min(total, maxTotal);
      
        const out = Array(len).fill(1);
        const freq = { 1: len };
        let sisa = total - len;
        let attempt = 0, maxAttempt = 20000;
      
        while (sisa > 0 && attempt < maxAttempt) {
          attempt++;
          const i = Math.floor(originalRandom() * len);
          const curr = out[i];
          if (curr >= 6) continue;
      
          const next = curr + 1;
          const countNext = freq[next] || 0;
      
          // Batasi maksimal kemunculan angka (kecuali terpaksa)
          const maxRepeat = Math.floor(len / 2); // misalnya: 4
          if (countNext >= maxRepeat) continue;
      
          // Prioritaskan angka yang jarang muncul
          const score = 1 / (1 + countNext);
          if (originalRandom() > score) continue;
      
          out[i] = next;
          freq[curr] = (freq[curr] || 0) - 1;
          freq[next] = (freq[next] || 0) + 1;
          sisa--;
        }
      
        if (attempt >= maxAttempt) {
          console.warn("Distribusi kurang optimal. Sisa:", sisa);
        }
      
        return out;
      }
      
  
    let i = 0, p = [];
  
    function set(tipe) {
      let total;
      if (tipe === "k") {
        total = Math.floor(originalRandom() * (31 - 20 + 1)) + 20;
      } else if (tipe === "b") {
        total = Math.floor(originalRandom() * (42 - 32 + 1)) + 32;
      } else {
        total = 30;
      }
  
      p = generateFixedTotal(total);
      i = 0;
      console.log("Total:", total);
      console.log("Generated array:", p);
      isScriptActive = true;
  
      Math.random = () => (p[i++ % p.length] - 0.0001) / 6;
  
      setTimeout(() => {
        isScriptActive = false;
        Math.random = originalRandom;
      }, 1000);
    }
  
    // Tunggu hingga tombol tersedia di DOM
    const interval = setInterval(() => {
      const btn = document.querySelector('[jsname="puTT7d"]');
      if (btn) {
        clearInterval(interval);
        btn.addEventListener('click', () => {
          if (apiResponse && apiResponse.value) {
            set(apiResponse.value);
          } else {
            set("k");
          }
        });
      }
    }, 500);
  })();