Shootem.io Bots

Bots for shootem.io that follow everything you do.

目前為 2024-07-05 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Shootem.io Bots
// @namespace    https://leaked.wiki/
// @version      0.1
// @description  Bots for shootem.io that follow everything you do.
// @author       Sango
// @match        https://shootem.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const NUMBER_OF_BOTS = 19; // Number of mirrored WebSocket connections

    // Find the WebSocket object
    let originalWebSocket = window.WebSocket;
    // Override WebSocket constructor
    window.WebSocket = function(url, protocols) {
        // Create a new WebSocket instance
        let ws = new originalWebSocket(url, protocols);

        // Array to store mirrored WebSocket instances
        let mirrorWebSockets = [];

        // Create mirrored WebSocket instances
        for (let i = 0; i < NUMBER_OF_BOTS; i++) {
            mirrorWebSockets.push(new originalWebSocket(url));
        }

        // Function to log and mirror messages
        function logAndMirrorMessage(type, data) {
            mirrorWebSockets.forEach(mirrorWs => {
                mirrorWs.send(data);
            });

            // Decode if it's binary data
            if (data instanceof ArrayBuffer || ArrayBuffer.isView(data)) {
                let decoder = new TextDecoder('utf-8');
                //console.log('Decoded:', decoder.decode(data));
            }
        }

        // Intercept received messages
        ws.addEventListener('message', function(event) {
            logAndMirrorMessage('Received', event.data);
            // You can do further processing or logging here
        });

        // Intercept sent messages
        let originalSend = ws.send;
        ws.send = function(data) {
            logAndMirrorMessage('Sent', data);
            originalSend.apply(ws, arguments);
        };

        // Return the WebSocket instance
        return ws;
    };
})();