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.

< Feedback on Voxiom.IO Aimbot, ESP & X-Ray

Câu hỏi/Bình luận

§
Posted: 02-01-2024
let aimbotEnabled = true;
let isDown = false;

window.addEventListener('mousedown', function(event) {
    if (event.button === 2) {
        isDown = true;
    }
});

window.addEventListener('mouseup', function(event) {
    if (event.button === 2) {
        isDown = false;
    }
});


          if ( aimbotEnabled && isDown && entity.isEnemy ) {

                const entPos = entity.myContainer.position;
                if ( Math.hypot( entPos.x - camera.position.x, entPos.z - camera.position.z ) > 0.1 ) {

                    const distance = camera.position.distanceTo( entPos );

                    if ( distance < minDistance ) {

                        targetPlayer = entity;
                        minDistance = distance;

                    }

                }

            }

Isn't it better to do it like this?

ZertaliousTác giả
§
Posted: 02-01-2024

Well you are kinda right. Making it toggle on right click is better. Might update it later

Post reply

Đăng nhập để bình luận