您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
better than other limax hax
// ==UserScript== // @name limaxHax vBetter // @namespace http://tampermonkey.net/ // @version 0.7 // @description better than other limax hax // @author You // @match *://limax.io/* // @grant none // ==/UserScript== (function() { 'use strict'; window.alpha=50; //disable loading ads script function objHider(o){this.getObject=function(){return o;}} window.getScript=new objHider({}).getObject(); //on load window.addEventListener('load',function(){ //disable ads when start is clicked //change ad player to start window.initAipPreroll=document.getElementById("play").onclick=function(){start();}; //define empty ad funcs and make built in skin hack detector do nothing window.skin_hack=window.cgAdControlOff=window.cgAdControlOn=function(){}; //override handshake function window.oldHandshake=handshake; handshake=function(a){ var newA=a; newA[1].bonus_max=999; oldHandshake(newA); console.log(a,newA); }; //change opacity of your player window.customAlpha=50; setInterval(()=>{ players_alpha[true_id]=window.customAlpha; alpha=window.customAlpha/100; },0); setInterval(()=>window.customAlpha=Math.floor(51*Math.random()+50),1000); },false); })();