cube per second counter

cube per second counter for synergism

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         cube per second counter
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  cube per second counter for synergism
// @author       Galaus
// @match        https://v1011testing.vercel.app/
// @include      https://v1011testing.vercel.app/
// @grant        none
// ==/UserScript==


var previousCubes = 0
var cubesGained = 0
var cubesPerSecond = 0
    setInterval(()=>{
    if(previousCubes < player.wowCubes){
        cubesGained += player.wowCubes - previousCubes
    cubesPerSecond = cubesGained / player.ascensionCounter
     console.log("cubes gained in total " + cubesGained);
     console.log("cubes gained per second " + cubesPerSecond);
    }
    previousCubes = player.wowCubes
    cubesPerSecond = cubesGained / player.ascensionCounter
    },50)



document.getElementById("ascendbtn").addEventListener("click", function(){
    previousCubes = player.wowCubes
    cubesGained = 100/100 * calculateCubeMultiplier() * 250
    cubesPerSecond = 0
});