Bonk.io XP Farmer

A Script that helps you to get free xp by using /xpin <second> in Bonk.io |

// ==UserScript==
// @name         Bonk.io XP Farmer
// @namespace    https://bonk.io/
// @version      1.0
// @author       Torch_7
// @description  A Script that helps you to get free xp by using /xpin <second> in Bonk.io | 
// @match        https://bonk.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function BonkCommandsScriptInjector(f){
        if(window.location == window.parent.location){
            if(document.readyState == "complete"){ f(); }
            else{ document.addEventListener('readystatechange', function(){ setTimeout(f, 1500); }); }
        }
    }

    BonkCommandsScriptInjector(function(){
        var scope = window;
        scope.Gwindow = document.getElementById("maingameframe").contentWindow;
        scope.Gdocument = document.getElementById("maingameframe").contentDocument;

        if (typeof scope.displayInChat !== 'function') {
            scope.displayInChat = function(msg) {
                console.log("Chat Message:", msg);
            };
        }

        if (!scope.Gwindow.WebSocket) return;

        let wsInstance = null;
        let originalSend = scope.Gwindow.WebSocket.prototype.send;
        scope.Gwindow.WebSocket.prototype.send = function(data) {
            if (typeof data === "string" && data.includes("42[38]")) {
                console.log("Sent: 42[38]");
            }
            if (!wsInstance) wsInstance = this;
            return originalSend.apply(this, arguments);
        };

        let xpInterval = null;
        function startAutoXP(seconds) {
            if (xpInterval) clearInterval(xpInterval);
            if (seconds > 0) {
                xpInterval = setInterval(() => {
                    if (wsInstance && wsInstance.readyState === WebSocket.OPEN) {
                        wsInstance.send("42[38]");
                        scope.displayInChat(" +100xp ");
                        console.log("Auto XP Sent");
                    }
                }, seconds * 1000);
                scope.displayInChat(`✅ XP Auto-Click Enabled | You will receive XP every ${seconds} seconds.`);
            } else {
                scope.displayInChat("❌ XP Auto-Click Disabled.");
            }
        }

        // NEW: Chat Command /xpin <seconds>
        let chatBox = scope.Gdocument.getElementById("ingamechatinputtext");
        if (chatBox) {
            chatBox.addEventListener("keydown", function(event) {
                if (event.key === "Enter") {
                    let message = chatBox.value.trim();
                    let match = message.match(/^\/xpin\s*(\d+)?$/);
                    if (match) {
                        let duration = match[1] ? parseInt(match[1], 10) : 0;
                        startAutoXP(duration);
                    }
                }
            });
        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址