Подведи собственные итоги года совместно с YOUGAME и забери ценные призы! Перейти

AntiFlag

  • Автор темы Автор темы Finecur
  • Дата начала Дата начала
Забаненный
Забаненный
Статус
Оффлайн
Регистрация
14 Янв 2023
Сообщения
2
Реакции
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
Expand Collapse Copy
public class AntiFlag extends Module {
    public static BooleanSetting disable = new BooleanSetting("Auto Disable", true, () -> true);

    public AntiFlag() {
        super("AntiFlag", ModuleCategory.Movement);
        addSettings(disable);
    }

    @EventTarget
    public void onReceivePacket(EventReceivePacket event) {
        if (isEnabled() &&
                event.getPacket() instanceof net.minecraft.network.play.server.SPacketPlayerPosLook) {
            if (Smertnix.instance.featureManager.getFeature(Speed.class).isEnabled()) {
                featureAlert("Speed");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Speed.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Spider.class).isEnabled() && Minecraft.player.isCollidedHorizontally) {
                featureAlert("Spider");
                if (disable.getCurrentValue())
                    Smertnix.instance.featureManager.getFeature(Spider.class).toggle();
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled()) {
                featureAlert("ElytraLeaveSunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytraleave.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled() && Minecraft.player.isInLiquid()) {
                featureAlert("ElytraFlySunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytrafly.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Timer.class).isEnabled()) {
                featureAlert("Timer");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Timer.class).toggle();
                }
            }
        }
    }

    public void featureAlert(String feature) {
        NotifRender.queue("Anti Flag Debug", "Module " + feature + " was flagged" + (Minecraft.player.isInWater() ? " on water" : "") + (Minecraft.player.isInLava() ? " in lava" : "") + "!", 3, NotifModern.SUCCESS);
    }
 
Код:
Expand Collapse Copy
public class AntiFlag extends Module {
    public static BooleanSetting disable = new BooleanSetting("Auto Disable", true, () -> true);

    public AntiFlag() {
        super("AntiFlag", ModuleCategory.Movement);
        addSettings(disable);
    }

    @EventTarget
    public void onReceivePacket(EventReceivePacket event) {
        if (isEnabled() &&
                event.getPacket() instanceof net.minecraft.network.play.server.SPacketPlayerPosLook) {
            if (Smertnix.instance.featureManager.getFeature(Speed.class).isEnabled()) {
                featureAlert("Speed");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Speed.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Spider.class).isEnabled() && Minecraft.player.isCollidedHorizontally) {
                featureAlert("Spider");
                if (disable.getCurrentValue())
                    Smertnix.instance.featureManager.getFeature(Spider.class).toggle();
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled()) {
                featureAlert("ElytraLeaveSunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytraleave.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled() && Minecraft.player.isInLiquid()) {
                featureAlert("ElytraFlySunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytrafly.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Timer.class).isEnabled()) {
                featureAlert("Timer");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Timer.class).toggle();
                }
            }
        }
    }

    public void featureAlert(String feature) {
        NotifRender.queue("Anti Flag Debug", "Module " + feature + " was flagged" + (Minecraft.player.isInWater() ? " on water" : "") + (Minecraft.player.isInLava() ? " in lava" : "") + "!", 3, NotifModern.SUCCESS);
    }
крутой)) взял с сурсов минцеда и заливает на югейм.......
 
у
Код:
Expand Collapse Copy
public class AntiFlag extends Module {
    public static BooleanSetting disable = new BooleanSetting("Auto Disable", true, () -> true);

    public AntiFlag() {
        super("AntiFlag", ModuleCategory.Movement);
        addSettings(disable);
    }

    @EventTarget
    public void onReceivePacket(EventReceivePacket event) {
        if (isEnabled() &&
                event.getPacket() instanceof net.minecraft.network.play.server.SPacketPlayerPosLook) {
            if (Smertnix.instance.featureManager.getFeature(Speed.class).isEnabled()) {
                featureAlert("Speed");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Speed.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Spider.class).isEnabled() && Minecraft.player.isCollidedHorizontally) {
                featureAlert("Spider");
                if (disable.getCurrentValue())
                    Smertnix.instance.featureManager.getFeature(Spider.class).toggle();
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled()) {
                featureAlert("ElytraLeaveSunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytraleave.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled() && Minecraft.player.isInLiquid()) {
                featureAlert("ElytraFlySunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytrafly.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Timer.class).isEnabled()) {
                featureAlert("Timer");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Timer.class).toggle();
                }
            }
        }
    }

    public void featureAlert(String feature) {
        NotifRender.queue("Anti Flag Debug", "Module " + feature + " was flagged" + (Minecraft.player.isInWater() ? " on water" : "") + (Minecraft.player.isInLava() ? " in lava" : "") + "!", 3, NotifModern.SUCCESS);
    }
у таких бездарных пастеров, которые решили сделать "копию" целестиала, хаха, в чем смысл, если это из сурсов минцеда 1.7 дефолтное.
 
у

у таких бездарных пастеров, которые решили сделать "копию" целестиала, хаха, в чем смысл, если это из сурсов минцеда 1.7 дефолтное.
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись
Скрытое содержимое
а ты тип не делаешь копию целестиала
ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
 
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись

ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
да кому нужна эта паста
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись

ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
он не чего не кодит прост потратил деньги на чит
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись

ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
в надежде что вася из 1б купит его клиент который бьет спиной
 
у

у таких бездарных пастеров, которые решили сделать "копию" целестиала, хаха, в чем смысл, если это из сурсов минцеда 1.7 дефолтное.
в смысле с минседа? это было еще в нх старом который интелиж реди бро
 
Код:
Expand Collapse Copy
public class AntiFlag extends Module {
    public static BooleanSetting disable = new BooleanSetting("Auto Disable", true, () -> true);

    public AntiFlag() {
        super("AntiFlag", ModuleCategory.Movement);
        addSettings(disable);
    }

    @EventTarget
    public void onReceivePacket(EventReceivePacket event) {
        if (isEnabled() &&
                event.getPacket() instanceof net.minecraft.network.play.server.SPacketPlayerPosLook) {
            if (Smertnix.instance.featureManager.getFeature(Speed.class).isEnabled()) {
                featureAlert("Speed");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Speed.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Spider.class).isEnabled() && Minecraft.player.isCollidedHorizontally) {
                featureAlert("Spider");
                if (disable.getCurrentValue())
                    Smertnix.instance.featureManager.getFeature(Spider.class).toggle();
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled()) {
                featureAlert("ElytraLeaveSunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytraleave.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(elytrafly.class).isEnabled() && Minecraft.player.isInLiquid()) {
                featureAlert("ElytraFlySunrise");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(elytrafly.class).toggle();
                }
            } else if (Smertnix.instance.featureManager.getFeature(Timer.class).isEnabled()) {
                featureAlert("Timer");
                if (disable.getCurrentValue()) {
                    Smertnix.instance.featureManager.getFeature(Timer.class).toggle();
                }
            }
        }
    }

    public void featureAlert(String feature) {
        NotifRender.queue("Anti Flag Debug", "Module " + feature + " was flagged" + (Minecraft.player.isInWater() ? " on water" : "") + (Minecraft.player.isInLava() ? " in lava" : "") + "!", 3, NotifModern.SUCCESS);
    }
хуйня
 
минцед антифлаг
 
Назад
Сверху Снизу