Nursultan targethud (Expensive ready)

Начинающий
Статус
Оффлайн
Регистрация
3 Сен 2023
Сообщения
6
Реакции[?]
0
Поинты[?]
1K
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: ORNURIK.png

My Version :NURIK 20.png
 
Начинающий
Статус
Оффлайн
Регистрация
9 Июл 2023
Сообщения
76
Реакции[?]
0
Поинты[?]
0
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: Посмотреть вложение 262199

My Version :Посмотреть вложение 262200
вопрос мммм он меньше
 
Начинающий
Статус
Оффлайн
Регистрация
28 Июл 2022
Сообщения
205
Реакции[?]
2
Поинты[?]
0
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: Посмотреть вложение 262199

My Version :Посмотреть вложение 262200
Мда, досихпор не умеете делать даже банальное закругление головы в тх)
 
Забаненный
Статус
Оффлайн
Регистрация
30 Июл 2023
Сообщения
49
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
дерьмо
 
Начинающий
Статус
Оффлайн
Регистрация
12 Сен 2022
Сообщения
308
Реакции[?]
7
Поинты[?]
3K
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: Посмотреть вложение 262199

My Version :Посмотреть вложение 262200
у тебя бг желтый а не черный + раунды не под клиент и головка не круглая
 
Начинающий
Статус
Оффлайн
Регистрация
28 Янв 2023
Сообщения
68
Реакции[?]
5
Поинты[?]
2K
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: Посмотреть вложение 262199

My Version :Посмотреть вложение 262200
отличия на лицо. Ник стоит не ровно, нет закругления головы таргета и текст стоит не ровно, бг имеет не серый цвет как у орига. В общем вышла какашка
 
Начинающий
Статус
Оффлайн
Регистрация
15 Июл 2023
Сообщения
69
Реакции[?]
3
Поинты[?]
3K
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
if (showTarget.get() && curTarget != null) {


                Expensive.getInstance().getScaleMath().pushScale();

                float alphaSetting = Expensive.getInstance().getModuleManager().arraylist.alpha.get();

                boolean isNameProtect = Expensive.getInstance().getModuleManager().get(NameProtect.class).state;
                String protectName = CommandNameProtect.canChange ? CommandNameProtect.current : "wabex.fun";

                String name = isNameProtect && curTarget instanceof EntityPlayerSP ? protectName
                        : isNameProtect && NameProtect.youtuber.get() && curTarget instanceof EntityPlayer
                        ? "wabex.fun" : ChatFormatting.stripFormatting(curTarget.getName());
                float width = Math.max(Fonts.sfbold.getStringWidth(isNameProtect ? protectName : ChatFormatting.stripFormatting(curTarget.getName())) + 40, 100 + (25 / 2));
                targetHUDDrag.setWidth(width);
                targetHUDDrag.setHeight(35.5f);

                posX = (int) targetHUDDrag.getX();
                posY = (int) targetHUDDrag.getY();
                float x2 = posX;

                if (AuraModule.instance.target != null || mc.currentScreen instanceof GuiChat
                        && mc.player != null) {

                    animation.setDuration(300);
                    animation.setDirection(Direction.FORWARDS);
                } else {
                    animation.setDuration(300);
                    animation.setDirection(Direction.BACKWARDS);
                }

                hp = MathUtility.clamp(MathUtility.lerp(hp, curTarget.getHealth() / curTarget.getMaxHealth(),
                        (float) (12 * AnimationMath.deltaTime())), 0, 1);

                alpha = (int) animation.getOutput();
                if (shadow.get() && alpha > 80)
                    NORMAL_SHADOW_BLACK.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3,
                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                if (blur.get() && alpha > 80)
                    NORMAL_BLUR_RUNNABLES.add(() -> RiseShaders.RQ.draw(posX, posY, width - 9, 35.5f, 3.5f,

                            new Color(0, 0, 0, MathHelper.clamp(alpha, 0, 50))));
                GlowUtility.drawGlow(posX, posY, width- 10, 35.5f, 10,ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB() , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));

                RenderUtility.drawRound(posX, posY, width - 9, 35.5f, 4,
                        ColorUtility.rgba(0, 0, 0, MathHelper.clamp(alpha, 0, (int) 230)));

                RenderUtility.drawRound(posX + 34.5f, posY + 26, (width - 49.5f), 6, 4f,
                        ColorUtility.rgba(25, 25, 25, alpha));

                RenderUtility.drawGradientHorizontal(posX + 34.5f, posY + 26, (width - 49.5f) * hp, 6,
                        3f, ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().arraylist
                                .getColor(280)), alpha).getRGB(),
                        ColorUtility.applyOpacity(new Color(Expensive.getInstance().getModuleManager().
                                arraylist.getColor(1)), alpha).getRGB());
                if (curTarget instanceof EntityPlayer)
                    RenderUtility.drawFace(alpha,  posX + 1.5f, posY + 1.5f, 8, 8, 8, 8, 30,
                            31.5f, 64, 64,   (AbstractClientPlayer) curTarget);
                if (!(curTarget instanceof EntityPlayer) && curTarget != null) {
                    RenderUtility.drawRect(posX + 1.5f, posY + 1.5f, 30, 32.5f, ColorUtility.rgba(0, 0, 0, alpha));
                    if (alpha > 1)
                        Fonts.sfbold.drawCenteredString("?", posX + 1.5f + (30 / 2), posY + 1.5f + (28 / 2), ColorUtility.rgba(255, 255, 255, MathHelper.clamp(alpha, 10, 255)) , Expensive.getInstance().getModuleManager().arraylist.getColor(130) , Expensive.getInstance().getModuleManager().arraylist.getColor(50) , Expensive.getInstance().getModuleManager().arraylist.getColor(190));
                }
                if (alpha > 80) {
                    if (curTarget instanceof EntityPlayer)


                    Fonts.sfbold.drawString(name, posX + 33.5f, posY + 5f,
                            ColorUtility.rgba(200, 200, 200, MathHelper.clamp(255, 10, 255)));
                    Fonts.sfbold.drawCenteredStringWithShadow(MathUtility.round (hp * 20 ,  0.1f) +" HP ", posX + 13f + (width - 39.5f) / 2, posY + 18f
                            , ColorUtility.rgba(255, 255, 255, MathHelper.clamp(255, 10, 255)));
                }
                Expensive.getInstance().getScaleMath().popScale();

            }

Original: Посмотреть вложение 262199

My Version :Посмотреть вложение 262200
ник не в той стороне, он маленький, нету градиента на глове, не так сделан HP, градиент на health bar какашка
 
Начинающий
Статус
Оффлайн
Регистрация
21 Июл 2023
Сообщения
448
Реакции[?]
9
Поинты[?]
11K
ник не в той стороне, он маленький, нету градиента на глове, не так сделан HP, градиент на health bar какашка
да блять не булльте его он же попросил
ну подумаешь говно ебучее вышло ну и что
он хоть попытался
 
Забаненный
Статус
Оффлайн
Регистрация
27 Янв 2023
Сообщения
27
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
вырвите мне глаза...... что это нахуй..
удали пж
 
Начинающий
Статус
Оффлайн
Регистрация
19 Июн 2022
Сообщения
164
Реакции[?]
22
Поинты[?]
0
бля братан, советую перестать делать такое, и просто уйти в покой с этого форума.
 
Начинающий
Статус
Оффлайн
Регистрация
19 Июн 2022
Сообщения
164
Реакции[?]
22
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
3 Сен 2023
Сообщения
6
Реакции[?]
0
Поинты[?]
1K
Сверху Снизу