Added a protocol screen#126
Open
26140070-cpu wants to merge 20 commits into
Open
Conversation
you change your protocol and package to trick the servers into thinking you actually have a version and loader, whether it's Forge Fabric or vanilla (I don't think NeoForge and Quilit are necessary)
added the protocol button
added things to do protocol works
Author
|
sorry in protocol screen I added my user on discord but my user in GitHub is Donalp012 or 26140070-cpu |
Owner
|
Thanks for the PR! I will test it as soon as possible. A few things:
@ModifyConstant(method = "protocolVersion()I", constant = @Constant(intValue = 4))
private int injected(int value) {
return NEW_VERSION;
}OR @Mixin(SharedConstants.class)
public class SharedConstantsMixin {
@Inject(method = "getCurrentVersion", at = @At("HEAD"), cancellable = true)
private static void onCurrentVersion(CallbackInfoReturnable<WorldVersion> cir) {
cir.setReturnValue(myCustomVersion);
}
} |
Author
|
ale
Thanks for the feedback I'll gonna do that rn. When I finish ill send the commit |
register the new font
new mixin to get the protocol
new mixing to get the brand
return it to how it was before
Author
Author
vil
approved these changes
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


This PR adds an Protocol and Client Brand Spoofing system. It allows users to dynamically alter how the client identifies itself to Minecraft servers through a new visual interface accessible directly from the multiplayer menu. Features On-the-fly customization of the version name, protocol number, and resource pack version (Pack Version) assigned internally by the client. Developer Notes and Future Improvements Compatibility Note: A visual warning was added to the menu because servers utilizing ViaVersion or rigid network-translation proxies might experience packet de-syncs if the spoofed protocol severely mismatches the real client codebase capabilities. Known UI Glitch: The multi-line informational note at the top of the protocol screen occasionally clips or gets cut off depending on the window's resolution scale.