Исходник AntiFlag

Забаненный
Статус
Оффлайн
Регистрация
14 Янв 2023
Сообщения
2
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.

Перед прочтением основного контента ниже, пожалуйста, обратите внимание на обновление внутри секции Майна на нашем форуме. У нас появились:

  • бесплатные читы для Майнкрафт — любое использование на свой страх и риск;
  • маркетплейс Майнкрафт — абсолютно любая коммерция, связанная с игрой, за исключением продажи читов (аккаунты, предоставления услуг, поиск кодеров читов и так далее);
  • приватные читы для Minecraft — в этом разделе только платные хаки для игры, покупайте группу "Продавец" и выставляйте на продажу свой софт;
  • обсуждения и гайды — всё тот же раздел с вопросами, но теперь модернизированный: поиск нужных хаков, пати с игроками-читерами и другая полезная информация.

Спасибо!

Код:
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);
    }
 
Начинающий
Статус
Оффлайн
Регистрация
29 Ноя 2022
Сообщения
369
Реакции[?]
11
Поинты[?]
1K
Код:
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);
    }
крутой)) взял с сурсов минцеда и заливает на югейм.......
 
minced client
Read Only
Статус
Оффлайн
Регистрация
8 Май 2022
Сообщения
615
Реакции[?]
61
Поинты[?]
2K
у
Код:
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 дефолтное.
 
Начинающий
Статус
Оффлайн
Регистрация
17 Дек 2022
Сообщения
149
Реакции[?]
4
Поинты[?]
0
у

у таких бездарных пастеров, которые решили сделать "копию" целестиала, хаха, в чем смысл, если это из сурсов минцеда 1.7 дефолтное.
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись
Скрытое содержимое
а ты тип не делаешь копию целестиала
ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
 
Начинающий
Статус
Оффлайн
Регистрация
27 Дек 2022
Сообщения
90
Реакции[?]
0
Поинты[?]
0
ну был целестиал реборн но он закрылся там еще рокстаров вроде кодил бектрек давно оч ток он закрылся не открывшись

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

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

ну он хотя бы не фанат что у него пакейджи не называются celestial и класс Smertnix и то у него в бете на целку не похож чит
в надежде что вася из 1б купит его клиент который бьет спиной
 
Начинающий
Статус
Оффлайн
Регистрация
26 Май 2020
Сообщения
260
Реакции[?]
9
Поинты[?]
8K
у

у таких бездарных пастеров, которые решили сделать "копию" целестиала, хаха, в чем смысл, если это из сурсов минцеда 1.7 дефолтное.
в смысле с минседа? это было еще в нх старом который интелиж реди бро
 
Начинающий
Статус
Оффлайн
Регистрация
3 Янв 2023
Сообщения
27
Реакции[?]
1
Поинты[?]
0
Код:
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);
    }
хуйня
 
Сверху Снизу