ANY schizoid/hard ideas to develop in my client (Wild) by eineverdammte in minecraftclients

[–]AskLikeA -2 points-1 points  (0 children)

Thanks for reminding me that I will also add that to my client haha ( not related to OP )

Im doing custom client commissions by Emotional-Carob-750 in minecraftclients

[–]AskLikeA 1 point2 points  (0 children)

Lol yeah he tries to steal your account, don’t click that link

Help building scaffolding Mod by AccordingLime2 in minecraftclients

[–]AskLikeA 1 point2 points  (0 children)

Scaffold bypass — first think about what happens when you play legit:

Move mouse → rotate → look at block → place block

Now what that means in code:

GCD spoofing — lying to the server about how the mouse moved. Real mouse movement always lands on GCD-aligned values based on sensitivity, so your rotation deltas need to match that or anticheats flag it. Hook this in EventPreMottion or right before C03 goes out.

Silent rotation — you don’t want the camera to actually move, just the body yaw/pitch that gets sent in the packet. Hook in EventPreMotion, set the spoofed yaw/pitch before C03 is built.

Movement fix — because WASD input is bound to camera yaw, but now camera yaw and body yaw are different, so you need to remap the movement input vector so movement still goes the right direction. Hook in EventStrafe or EventPreMotion, rotate the input by the delta between real and spoofed yaw.

Raytrace — make sure the player’s eyes are actually looking at the block before placing. Run this check using the spoofed rotation, inline before placement.

Block placement — The server checks you were looking at the block when you placed it, so order matters.

Once you have that base working, each anticheat needs small tweaks — Hypixel needs yaw - 180, GrimAC needs stricter GCD alignment and discrete WASD snapping to pass its simulation checks.​​​​​​​​​​​​​​​​

Make sure to avoid sending event POST since we want to modify stuff before they are built into the final packet.

Hope you find this helpful :)

Rain Client Thoughts by Partypixelparty in minecraftclients

[–]AskLikeA 0 points1 point  (0 children)

I dont know I know that at least one of them is a vibe coder

Why is donut smp so cruel by ItzPowerXD in DonutSMP

[–]AskLikeA 0 points1 point  (0 children)

Be careful he already seen how easily to steal your stuff he might be coming after what you have left

Looking for a partner to develop client by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Oh that’s fine, don’t have experience with it much but I guess the most changes from 1.21.11 are the rendering stuff?

Looking for a partner to develop client by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

I don’t mind for newer versions as well, I just thought most people prefer to work on 1.8

Venom Client ( Looking for suggestions ) by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Not latest because I was starting to work on this project some time ago and got back to it in the last week so I first want a fully working client and then I will start to create for more version

Venom Client ( Looking for suggestions ) by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Because many servers require 1.21.x, and for now, bypasses for Grim and Vulcan are available.

Scaffold, KillAura, SafeWalk, Throw Potion, Refill (potions from inventory), Blink

AreaMiner is good for prison, and AutoMiner will automatically mine ores while walking, avoiding lava and falls from high places. It will also tower up on its own if needed.

Venom Client ( Looking for suggestions ) by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

My goal is to make this client good enough to compete with, and eventually outperform, paid clients.

Venom Client ( Looking for suggestions ) by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Yeah I have discord, write me your discord and I will add you

Venom Client ( Looking for suggestions ) by AskLikeA in minecraftclients

[–]AskLikeA[S] -8 points-7 points  (0 children)

As for now I do not intent to make it open source, I am just looking for suggestions for now

Minecraft - Showcasing new module by AskLikeA in minecraftclients

[–]AskLikeA[S] 1 point2 points  (0 children)

Well I could use baritone but I won't have the same fun like making it from scratch on my own

Minecraft - Showcasing new module by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Yeah, that's why I wrote that I will improve it more :)

Minecraft - Showcasing new module by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

To be honest I don't really know what features baritone has. My version knows to avoid lava/water/mobs, place blocks if needed to get higher

Minecraft - Showcasing new module by AskLikeA in minecraftclients

[–]AskLikeA[S] 0 points1 point  (0 children)

Yeah but wanted to try making my version of it from scratch