Исходник Akrien beta array list

Начинающий
Статус
Оффлайн
Регистрация
3 Авг 2022
Сообщения
263
Реакции[?]
10
Поинты[?]
6K
Делал его 39843589 лет и он оч сложный так что пон
Посмотреть вложение 235681
пон:
 @EventTarget
    public void onRender2D(EventRender2D event) {

        if (!isEnabled()) return;
        List<Feature> activeModules = Rich.instance.featureManager.getAllFeatures();
        activeModules.sort(Comparator.comparingDouble(s -> -mc.celestial_16.getStringWidth(s.getLabel())));
        float displayWidth = event.getResolution().getScaledWidth() * (event.getResolution().getScaleFactor() / 2F);
        float yPotionOffset = 2;
        for (PotionEffect potionEffect : Helper.mc.player.getActivePotionEffects()) {
            if (potionEffect.getPotion().isBeneficial()) {
                yPotionOffset = 45;
            }
            if (potionEffect.getPotion().isBadEffect()) {
                yPotionOffset = 45 * 2;
            }
        }
        int y = (int) (5 + yPotionOffset);
        int yTotal = 0;
        for (int i = 0; i < Rich.instance.featureManager.getAllFeatures().size(); ++i) {
            yTotal += mc.celestial_16.getFontHeight() + 0.5f;
        }
        for (Feature module : activeModules) {
            module.animYto = AnimationHelper.Move(module.animYto, (float) (module.isEnabled() ? 1 : 0), (float) (6.5f * Rich.deltaTime()), (float) (6.5f * Rich.deltaTime()), (float) Rich.deltaTime());
            if (module.animYto > 0.01f) {

                Color col = ColorUtils.TwoColoreffect(new Color(ClientOverlay.oneColor.getColorValue()), new Color(ClientOverlay.twoColor.getColorValue()), Math.abs(System.currentTimeMillis() / 10) / 100.0 + 3.0F * (4f * 2.55) / 60);

                double time;
                int pal = 0;

                int colorCustom = ClientOverlay.oneColor.getColorValue();
                int colorCustom2 = ClientOverlay.twoColor.getColorValue();


                Color wtf = new Color(22, 22, 22);

                for (int i = 0; i < 255; i += 1) {
                    wtf = ClientHelper.getClientColor(i, i, 0, 35);
                }


                if(colorMode.getCurrentMode().equalsIgnoreCase("Rainbow")){
                    time = 1;
                    pal = UtilityRender.rainbow((int) (y * time), 10, 10);
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Astolfo")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.astolfoColors45(y, yTotal, 0.5f, 5).getRGB();
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Erase")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.fadeColorRich(new Color(colorCustom).getRGB(), new Color(colorCustom2).getRGB(), (float) Math.abs(((((System.currentTimeMillis() / time) / time) + y * 6L / 61 * 2) % 2)));
                }else if(colorMode.currentMode.equalsIgnoreCase("Fade")){
                    EvolUtils.fade(10 - (int) delay.getNumberValue(), (int) 1, new Color(ClientOverlay.oneColor.getColorValue()), 1).getRGB();
                }


                RenderUtils.drawRect2(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, color.getColorValue());
                RenderUtils.drawBlurredShadow(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, 16, new Color(color.getColorValue()));
                mc.celestial_16.drawStringWithShadow(module.getLabel(), displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 5, y + mc.celestial_16.getFontHeight() - 3 - 20, Color.WHITE.getRGB());


                int offsetY = 12;
                y += offsetY * module.animYto;
            }
        }
    }
Кому это надо
 
Модератор раздела «Читы для Minecraft»
Пользователь
Статус
Оффлайн
Регистрация
3 Авг 2022
Сообщения
385
Реакции[?]
138
Поинты[?]
57K
пиздец, вы даже шрифт сделать не можете нормально
 
Новичок
Статус
Оффлайн
Регистрация
25 Дек 2022
Сообщения
1
Реакции[?]
0
Поинты[?]
0
Делал его 39843589 лет и он оч сложный так что пон
Посмотреть вложение 235681
пон:
 @EventTarget
    public void onRender2D(EventRender2D event) {

        if (!isEnabled()) return;
        List<Feature> activeModules = Rich.instance.featureManager.getAllFeatures();
        activeModules.sort(Comparator.comparingDouble(s -> -mc.celestial_16.getStringWidth(s.getLabel())));
        float displayWidth = event.getResolution().getScaledWidth() * (event.getResolution().getScaleFactor() / 2F);
        float yPotionOffset = 2;
        for (PotionEffect potionEffect : Helper.mc.player.getActivePotionEffects()) {
            if (potionEffect.getPotion().isBeneficial()) {
                yPotionOffset = 45;
            }
            if (potionEffect.getPotion().isBadEffect()) {
                yPotionOffset = 45 * 2;
            }
        }
        int y = (int) (5 + yPotionOffset);
        int yTotal = 0;
        for (int i = 0; i < Rich.instance.featureManager.getAllFeatures().size(); ++i) {
            yTotal += mc.celestial_16.getFontHeight() + 0.5f;
        }
        for (Feature module : activeModules) {
            module.animYto = AnimationHelper.Move(module.animYto, (float) (module.isEnabled() ? 1 : 0), (float) (6.5f * Rich.deltaTime()), (float) (6.5f * Rich.deltaTime()), (float) Rich.deltaTime());
            if (module.animYto > 0.01f) {

                Color col = ColorUtils.TwoColoreffect(new Color(ClientOverlay.oneColor.getColorValue()), new Color(ClientOverlay.twoColor.getColorValue()), Math.abs(System.currentTimeMillis() / 10) / 100.0 + 3.0F * (4f * 2.55) / 60);

                double time;
                int pal = 0;

                int colorCustom = ClientOverlay.oneColor.getColorValue();
                int colorCustom2 = ClientOverlay.twoColor.getColorValue();


                Color wtf = new Color(22, 22, 22);

                for (int i = 0; i < 255; i += 1) {
                    wtf = ClientHelper.getClientColor(i, i, 0, 35);
                }


                if(colorMode.getCurrentMode().equalsIgnoreCase("Rainbow")){
                    time = 1;
                    pal = UtilityRender.rainbow((int) (y * time), 10, 10);
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Astolfo")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.astolfoColors45(y, yTotal, 0.5f, 5).getRGB();
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Erase")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.fadeColorRich(new Color(colorCustom).getRGB(), new Color(colorCustom2).getRGB(), (float) Math.abs(((((System.currentTimeMillis() / time) / time) + y * 6L / 61 * 2) % 2)));
                }else if(colorMode.currentMode.equalsIgnoreCase("Fade")){
                    EvolUtils.fade(10 - (int) delay.getNumberValue(), (int) 1, new Color(ClientOverlay.oneColor.getColorValue()), 1).getRGB();
                }


                RenderUtils.drawRect2(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, color.getColorValue());
                RenderUtils.drawBlurredShadow(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, 16, new Color(color.getColorValue()));
                mc.celestial_16.drawStringWithShadow(module.getLabel(), displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 5, y + mc.celestial_16.getFontHeight() - 3 - 20, Color.WHITE.getRGB());


                int offsetY = 12;
                y += offsetY * module.animYto;
            }
        }
    }
Скажы это rich ready?
 
Начинающий
Статус
Оффлайн
Регистрация
18 Июл 2022
Сообщения
265
Реакции[?]
2
Поинты[?]
1K
Делал его 39843589 лет и он оч сложный так что пон
Посмотреть вложение 235681
пон:
 @EventTarget
    public void onRender2D(EventRender2D event) {

        if (!isEnabled()) return;
        List<Feature> activeModules = Rich.instance.featureManager.getAllFeatures();
        activeModules.sort(Comparator.comparingDouble(s -> -mc.celestial_16.getStringWidth(s.getLabel())));
        float displayWidth = event.getResolution().getScaledWidth() * (event.getResolution().getScaleFactor() / 2F);
        float yPotionOffset = 2;
        for (PotionEffect potionEffect : Helper.mc.player.getActivePotionEffects()) {
            if (potionEffect.getPotion().isBeneficial()) {
                yPotionOffset = 45;
            }
            if (potionEffect.getPotion().isBadEffect()) {
                yPotionOffset = 45 * 2;
            }
        }
        int y = (int) (5 + yPotionOffset);
        int yTotal = 0;
        for (int i = 0; i < Rich.instance.featureManager.getAllFeatures().size(); ++i) {
            yTotal += mc.celestial_16.getFontHeight() + 0.5f;
        }
        for (Feature module : activeModules) {
            module.animYto = AnimationHelper.Move(module.animYto, (float) (module.isEnabled() ? 1 : 0), (float) (6.5f * Rich.deltaTime()), (float) (6.5f * Rich.deltaTime()), (float) Rich.deltaTime());
            if (module.animYto > 0.01f) {

                Color col = ColorUtils.TwoColoreffect(new Color(ClientOverlay.oneColor.getColorValue()), new Color(ClientOverlay.twoColor.getColorValue()), Math.abs(System.currentTimeMillis() / 10) / 100.0 + 3.0F * (4f * 2.55) / 60);

                double time;
                int pal = 0;

                int colorCustom = ClientOverlay.oneColor.getColorValue();
                int colorCustom2 = ClientOverlay.twoColor.getColorValue();


                Color wtf = new Color(22, 22, 22);

                for (int i = 0; i < 255; i += 1) {
                    wtf = ClientHelper.getClientColor(i, i, 0, 35);
                }


                if(colorMode.getCurrentMode().equalsIgnoreCase("Rainbow")){
                    time = 1;
                    pal = UtilityRender.rainbow((int) (y * time), 10, 10);
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Astolfo")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.astolfoColors45(y, yTotal, 0.5f, 5).getRGB();
                }
                else if(colorMode.getCurrentMode().equalsIgnoreCase("Erase")){
                    time = delay.getNumberValue();
                    pal = UtilityRender.fadeColorRich(new Color(colorCustom).getRGB(), new Color(colorCustom2).getRGB(), (float) Math.abs(((((System.currentTimeMillis() / time) / time) + y * 6L / 61 * 2) % 2)));
                }else if(colorMode.currentMode.equalsIgnoreCase("Fade")){
                    EvolUtils.fade(10 - (int) delay.getNumberValue(), (int) 1, new Color(ClientOverlay.oneColor.getColorValue()), 1).getRGB();
                }


                RenderUtils.drawRect2(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, color.getColorValue());
                RenderUtils.drawBlurredShadow(displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 7, y - 20, mc.celestial_16.getStringWidth(module.getLabel()) + 6, 12f, 16, new Color(color.getColorValue()));
                mc.celestial_16.drawStringWithShadow(module.getLabel(), displayWidth - mc.celestial_16.getStringWidth(module.getLabel()) - 5, y + mc.celestial_16.getFontHeight() - 3 - 20, Color.WHITE.getRGB());


                int offsetY = 12;
                y += offsetY * module.animYto;
            }
        }
    }
Подарите ему очки пусьть чекнет потом на это и на арейлист акрика
 
Сверху Снизу