Начинающий
- Статус
- Оффлайн
- Регистрация
- 11 Май 2024
- Сообщения
- 304
- Реакции
- 4
Сливаю вам мега Self3Code AntiDebuf от пастера ака каратель фт хв байпасс
AntiDebuf:
package dev.Kainer.functions.impl.movement;
import com.google.common.eventbus.Subscribe;
import dev.Kainer.events.EventUpdate;
import dev.Kainer.functions.api.Category;
import dev.Kainer.functions.api.Function;
import dev.Kainer.functions.api.FunctionRegister;
import dev.Kainer.functions.settings.Setting;
import dev.Kainer.functions.settings.impl.ModeSetting;
import net.minecraft.potion.Effects;
@FunctionRegister(
name = "AntiDebuf",
type = Category.Movement
)
public class AntiDebuf extends Function {
public ModeSetting mod = new ModeSetting("Мод", "Все", new String[]{"Все"});
public AntiDebuf() {
this.addSettings(new Setting[]{this.mod});
}
@Subscribe
private void onUpdate(EventUpdate e) {
if (this.mod.is("Все")) {
mc.player.removeActivePotionEffect(Effects.LEVITATION);
mc.player.removeActivePotionEffect(Effects.SLOW_FALLING);
mc.player.removeActivePotionEffect(Effects.SLOWNESS);
}
}
public void onDisable() {
super.onDisable();
mc.player.removeActivePotionEffect(Effects.LEVITATION);
mc.player.removeActivePotionEffect(Effects.SLOW_FALLING);
mc.player.removeActivePotionEffect(Effects.SLOWNESS);
}
}
