Skip to content

Commit 9488297

Browse files
Big-Iron-CheemsWide-Cat
authored andcommittedJan 6, 2024
Add Disconnect command
Allows users to disconnect from a server, and specify a `reason` message too.
1 parent 2c5e8ed commit 9488297

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
 

‎src/main/java/meteordevelopment/meteorclient/commands/Commands.java

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public static void init() {
2929
add(new VClipCommand());
3030
add(new HClipCommand());
3131
add(new DismountCommand());
32+
add(new DisconnectCommand());
3233
add(new DamageCommand());
3334
add(new DropCommand());
3435
add(new EnchantCommand());
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* This file is part of the Meteor Client distribution (https://github.com/MeteorDevelopment/meteor-client).
3+
* Copyright (c) Meteor Development.
4+
*/
5+
6+
package meteordevelopment.meteorclient.commands.commands;
7+
8+
import com.mojang.blaze3d.systems.RenderSystem;
9+
import com.mojang.brigadier.arguments.ArgumentType;
10+
import com.mojang.brigadier.arguments.StringArgumentType;
11+
import com.mojang.brigadier.builder.LiteralArgumentBuilder;
12+
import meteordevelopment.meteorclient.commands.Command;
13+
import net.minecraft.client.gui.screen.DisconnectedScreen;
14+
import net.minecraft.command.CommandSource;
15+
import net.minecraft.network.packet.s2c.common.DisconnectS2CPacket;
16+
import net.minecraft.text.Text;
17+
import net.minecraft.util.Formatting;
18+
19+
import static com.mojang.brigadier.Command.SINGLE_SUCCESS;
20+
import static meteordevelopment.meteorclient.MeteorClient.mc;
21+
22+
public class DisconnectCommand extends Command {
23+
public DisconnectCommand() {
24+
super("disconnect", "Disconnect from the server", "dc");
25+
}
26+
27+
@Override
28+
public void build(LiteralArgumentBuilder<CommandSource> builder) {
29+
builder.executes(context -> {
30+
mc.player.networkHandler.onDisconnect(new DisconnectS2CPacket(Text.literal("%s[%sDisconnectCommand%s] Disconnected by user.".formatted(Formatting.GRAY, Formatting.BLUE, Formatting.GRAY))));
31+
return SINGLE_SUCCESS;
32+
});
33+
34+
builder.then(argument("reason", StringArgumentType.greedyString()).executes(context -> {
35+
mc.player.networkHandler.onDisconnect(new DisconnectS2CPacket(Text.literal(StringArgumentType.getString(context, "reason"))));
36+
return SINGLE_SUCCESS;
37+
}));
38+
}
39+
}

0 commit comments

Comments
 (0)
Please sign in to comment.