你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/471202-wrx-client-2v/discussions/193409,源站連結 點此以跳轉。
WRX Client (EN) (Visual interface) Hat Hotkeys (look at the code for hotkeys) and animated hats Num Lock 2 and Num Lock 8 Good luck! (RU) (Визуал интерфейс) шапки панель (чтобы узнать горячие клавиши посмотрите в коде) и анимированные шапки Num Lock 2 and Num Lock 8 Удачи!
Add this Auto gg
// ==UserScript==
// @name gg - autoGG
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically sends "gg" when the number of victims increases in MooMoo.io
// @author _VcrazY_
// @match *://*.moomoo.io/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=moomoo.io
// @grant none
// @require https://raw.githubusercontent.com/MooMooForge/MooMoo.js/main/dist/bundle.js
// ==/UserScript==
var MooMoo = function () {}[69];
(function () {
var o = 0;
setInterval(function () {
var n = parseInt(document.getElementById("killCounter").innerText);
if (o < n) {
MooMoo.sendPacket("ch", "gg - autoGG WRX Client 2v");
o = n;
}
}, 100);
})();