// ==UserScript== // @name Voxiom.io ORE/BASE/DUNGEON XRAY! (WORKING 2023) DEV // @namespace http://tampermonkey.net/ // @version 2.0 // @description Simple yet versatile script for voxiom // @author You // @match https://voxiom.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=voxiom.io // @grant none // @license do whatever just give credit to me lol // @downloadURL none // ==/UserScript== //Hey there, cheater! // //This script is made by ExplodIng_Andrey on discord! //Want more epic scripts? //Join up! https://discord.gg/gcq4gDy6te //If you can, you can also buy the voxiom.io hacked client which has epic features like aimbot // //WARNINGS ABOUT THIS SCRIPT: //It won't work too great within first loaded chunks when you spawn in the server, make sure to travel out to new territory before digging down //Also it can't be toggled with ease, you will need to reload the page for it to take effect // //Enjoy! //Script configuration below ↓↓↓ var method = "new"; // possible values: "new" and "old" , if this is set to "old" rock will be visible but transparent //Script configuation above ↑↑↑ workers=[]; Worker = class extends Worker{ constructor () { super(...arguments); window.workers.push(this); } postMessage () { if(Object.values(arguments[0])[3] && method == "new") { arguments[0][Object.keys(arguments[0])[3]]=Uint8Array.from(Array.from(Object.values(arguments[0])[3]).join().replaceAll(",4",",0").split(",").map(function(e){return Number(e)})); } super.postMessage(...arguments); } } Blob = class extends Blob { constructor () { try { if(arguments[0][0].includes("Rock")) { var a = "':!!0x0,'t':!0x0,'o':{'i':{'x':-0x99,'y':-0x99},'u':{'x':-0x99,'y':-0x99},'m':{'x':-0x99,'y':-0x99},'p':{'x':-0x99,'y':-0x99},'l':{'x':-0x99,'y':-0x99},'h':{'x':-0x99,'y':-0x99}},"; arguments[0][0]=arguments[0][0].replaceAll("':!0x0,'t':!0x0,'o':{'i':{'x':0x1,'y':0x1},'u':{'x':0x1,'y':0x1},'m':{'x':0x1,'y':0x1},'p':{'x':0x1,'y':0x1},'l':{'x':0x1,'y':0x1},'h':{'x':0x1,'y':0x1}},", a); } } catch (e) { //no fuϲks given } super(...arguments); } }