44 lines
1.9 KiB
Java
44 lines
1.9 KiB
Java
package anticope.rejects.modules;
|
|
|
|
import anticope.rejects.MeteorRejectsAddon;
|
|
import meteordevelopment.meteorclient.events.packets.PacketEvent;
|
|
import meteordevelopment.meteorclient.mixininterface.IPlayerInteractEntityC2SPacket;
|
|
import meteordevelopment.meteorclient.settings.BoolSetting;
|
|
import meteordevelopment.meteorclient.settings.Setting;
|
|
import meteordevelopment.meteorclient.settings.SettingGroup;
|
|
import meteordevelopment.meteorclient.systems.modules.Module;
|
|
import meteordevelopment.meteorclient.systems.modules.Modules;
|
|
import meteordevelopment.meteorclient.systems.modules.combat.KillAura;
|
|
import meteordevelopment.orbit.EventHandler;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.LivingEntity;
|
|
import net.minecraft.network.packet.c2s.play.ClientCommandC2SPacket;
|
|
import net.minecraft.network.packet.c2s.play.PlayerInteractEntityC2SPacket;
|
|
|
|
public class KnockbackPlus extends Module {
|
|
private final SettingGroup sgGeneral = settings.getDefaultGroup();
|
|
|
|
private final Setting<Boolean> ka = sgGeneral.add(new BoolSetting.Builder()
|
|
.name("only-killaura")
|
|
.description("Only perform more KB when using killaura.")
|
|
.defaultValue(false)
|
|
.build()
|
|
);
|
|
|
|
public KnockbackPlus() {
|
|
super(MeteorRejectsAddon.CATEGORY, "knockback-plus", "Performs more KB when you hit your target.");
|
|
}
|
|
|
|
@EventHandler
|
|
private void onSendPacket(PacketEvent.Send event) {
|
|
if (event.packet instanceof IPlayerInteractEntityC2SPacket packet && packet.getType() == PlayerInteractEntityC2SPacket.InteractType.ATTACK) {
|
|
Entity entity = packet.getEntity();
|
|
|
|
if (!(entity instanceof LivingEntity) || (entity != Modules.get().get(KillAura.class).getTarget() && ka.get()))
|
|
return;
|
|
|
|
mc.player.networkHandler.sendPacket(new ClientCommandC2SPacket(mc.player, ClientCommandC2SPacket.Mode.START_SPRINTING));
|
|
}
|
|
}
|
|
}
|