Welcome to INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games.

We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Source SRC NoSoundLag For Minecraft| Free

CrazyTrap

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
378
Reaction score
1
Attention all Minecraft aficionados! Rejoice as you delve into our exclusive thread featuring free and downloadable Minecraft resources, including the highly sought-after source "NoSoundLag." As enthusiasts ourselves, we understand the value of credible and effective sources, which is why every entry in the "Minecraft Cheat Sources" section has undergone rigorous testing to guarantee reliability.

Minecraft_image_skylia.jpg

NoSoundLag:​

Code:
    private static final List<SoundEvent> sounds = Arrays.asList(SoundEvents.ITEM_ARMOR_EQUIP_GENERIC,
            SoundEvents.ITEM_ARMOR_EQIIP_ELYTRA,
            SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND,
            SoundEvents.ITEM_ARMOR_EQUIP_IRON,
            SoundEvents.ITEM_ARMOR_EQUIP_GOLD,
            SoundEvents.ITEM_ARMOR_EQUIP_CHAIN,
            SoundEvents.ITEM_ARMOR_EQUIP_LEATHER);



    @EventTarget
    public void onPacketReceive(PacketEvent.Receive event) {
        if (event.getPacket() instanceof SPacketSoundEffect) {
            SPacketSoundEffect effect = (SPacketSoundEffect) event.getPacket();
            if (sounds.contains(effect.getSound())) {
                event.setCancelled(true);
            }
        }
    }
}
 
Top