您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Krunker Stuffed Up Example // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Skid Lamer // @match *://krunker.io/* // @run-at document-start // @grant none // @noframes // ==/UserScript== (function() { 'use strict'; let defined =object =>void 0!==object&&object; let wait = setInterval(_ => { let world = window.gg; // WTF krunker why is this now a window global? - you fucking idiots if (defined(world)) { if (defined(world.update)) { const update_orig = world.update; world.update = function() { let rv = update_orig.apply(this, arguments); for (let i=0; i < this.players.list.length; ++i) { const player = this.players.list[i]; if (player && player.active) { if (player.renderYou) {//you are the player if (player.armMeshes.length) { const mesh = player.armMeshes[0]; const material = mesh.material; material.alphaTest = 1; material.depthTest = false; material.fog = false; material.emissive.r = 1; //material.emissive.g = 1; material.emissive.b = 1; material.wireframe = true; } } else { //player.upperBody.renderOrder = 1; //player.lowerBody.renderOrder = 1; } } } return rv; } clearInterval(wait); } } }, 100); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址