Voxiom.IO Aimbot, ESP & X-Ray

Let's you see players and items behind walls in voxiom.io. Comes with an aimbot that locks aim at nearest enemy and auto fires at them. Also shows ores and names of the items that are far far away.

当前为 2024-05-04 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Voxiom.IO Aimbot, ESP & X-Ray
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  Let's you see players and items behind walls in voxiom.io. Comes with an aimbot that locks aim at nearest enemy and auto fires at them. Also shows ores and names of the items that are far far away.
// @author       HITLER
// @match        *://voxiom.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=voxiom.io
// @grant        none
// @run-at       document-start
// @require      https://unpkg.com/[email protected]/build/three.min.js
// @require      https://cdn.jsdelivr.net/npm/[email protected]
// ==/UserScript==

const THREE = window.THREE;

Object.defineProperty( window, 'THREE', {
get() {

return undefined;

}
} );

const settings = {
showPlayers: true, 
showPlayerNames: false,
showItems: true, 
showItemNames: false, 
showBlocks: false,
showLines: true, 
showOres: false,
worldWireframe: false, 
aimbotEnabled: true, 
aimbotOnRightMouse: true,
aimBehindWalls: false, 
aimHeight: 0.93,
autoFire: true, 
aimAtEveryone: false, 
createdBy: 'HITLER',
editAimbotBlacklist() {

const currList = Object.keys( aimbotBlacklist ).join( ', ' );
const string = prompt( 'Enter usernames of players for whom aimbot should be disabled.\nSeparated by single comma:', currList );

if ( string !== null ) {

aimbotBlacklist = {};
string.split( ',' )
.map( name => name.trim().toLowerCase() )
.filter( name => name.length > 0 )
.forEach( name => ( aimbotBlacklist[ name ] = true ) );

updateBlacklistBtn();

}

}, 
showHelp() {

dialogEl.style.display = dialogEl.style.display === '' ? 'none' : '';

}
};

let aimbotBlacklist = {
};

function updateBlacklistBtn() {

let name = 'Edit Aimbot Blacklist';

const n = Object.keys( aimbotBlacklist ).length;
if ( n > 0 ) name = `${name} (${n} user${n === 1 ? '' : 's'})`;

controllers.editAimbotBlacklist.name( name );

}

const gui = new lil.GUI();
const controllers = {};
for ( const key in settings ) {

controllers[ key ] = gui.add( settings, key ).name( fromCamel( key ) ).listen();

}

controllers.aimHeight.min( 0 ).max( 1.5 );
controllers.createdBy.disable();
addDescription( controllers.aimAtEveryone, 'Enable this to make aimbot work in Survival mode.' );
updateBlacklistBtn();

function addDescription( controller, text ) {

const div = document.createElement( 'div' );
div.className = 'my-lil-gui-desc';
div.innerText = text;
controller.domElement.querySelector( '.name' ).appendChild( div ); 

}