Gems iPhone Bot

Gems

このスクリプトは単体で利用できません。右のようなメタデータを含むスクリプトから、ライブラリとして読み込まれます: // @require https://update.greasyfork.org/scripts/562007/1731037/Gems%20iPhone%20Bot.js

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

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

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

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

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

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

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

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

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

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

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

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

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

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Gems iPhone Bot
// @match        *://https://tronpick.io/gems.php*
// @grant        none
// ==/UserScript==

(function () {
  alert("✅ Gems Bot geladen");

  let running = false;
  let bet = 0.0001;

  function delay(ms){ return new Promise(r=>setTimeout(r,ms)); }

  async function loop(){
    while(running){
      const i=document.getElementById("bet_amount");
      if(i){
        i.value=bet.toFixed(8);
        i.dispatchEvent(new Event("input",{bubbles:true}));
      }

      document.querySelector("#start_game_gems")?.click();
      await delay(3000);

      document.querySelector("#ce00")?.click();
      await delay(3000);

      if(document.querySelector("#stop_game_gems")){
        document.querySelector("#stop_game_gems").click();
        bet=0.0001;
      }else{
        bet*=1.2;
      }

      await delay(2000);
    }
  }

  const b=document.createElement("button");
  b.textContent="▶ START BOT";
  b.style="position:fixed;bottom:20px;right:20px;z-index:99999;padding:14px;background:black;color:white";
  b.onclick=()=>{
    running=!running;
    b.textContent=running?"⏹ STOP BOT":"▶ START BOT";
    if(running) loop();
  };
  document.body.appendChild(b);
})();