您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sends the signal for correct answer no matter what answer is picked (Correct Answer, Wrong Answer, No Answer) and automatically ends the game once 32 to 35 vollies have been made.
// ==UserScript== // @name World Language Games - Automation for "Ping-Pong" (Completely Natural) // @license MIT // @namespace https://github.com/engelthehyp/Automation-for-World-Language-Games // @version 2.1 // @description Sends the signal for correct answer no matter what answer is picked (Correct Answer, Wrong Answer, No Answer) and automatically ends the game once 32 to 35 vollies have been made. // @author https://www.github.com/engelthehyp // @match *://wlangames.net/PingPong.php* // @icon https://www.google.com/s2/favicons?domain=wlangames.net // @grant none // @run-at document-start // ==/UserScript== (function () { 'use strict'; const rightAnswer = window.WrongAnswer - 1; const wrongAnswer = window.WrongAnswer; const turnsToTake = getRandomInt(32, 35); window.CheckAnswer = function () { const turnsTaken = document.getElementById('Guesses').innerHTML; return parseInt(turnsTaken) < turnsToTake ? rightAnswer : wrongAnswer; }; function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min + 1)) + min; } })();