Nursultan targethud (Expensive ready)

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
3 Сен 2023
Сообщения
6
Реакции
0
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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
 
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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
вопрос мммм он меньше
 
Бля ты точно с нурика это делал а то какойта richcelka
 
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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
Мда, досихпор не умеете делать даже банальное закругление головы в тх)
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
дерьмо
 
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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
у тебя бг желтый а не черный + раунды не под клиент и головка не круглая
 
Вышла залупа...
 
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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
отличия на лицо. Ник стоит не ровно, нет закругления головы таргета и текст стоит не ровно, бг имеет не серый цвет как у орига. В общем вышла какашка
 
Мне было скучно и я решил пострадать херней, НЕ ОБСИРАТЬ!
Java:
Expand Collapse Copy
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 какашка
 
ник не в той стороне, он маленький, нету градиента на глове, не так сделан HP, градиент на health bar какашка
да блять не булльте его он же попросил
ну подумаешь говно ебучее вышло ну и что
он хоть попытался
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
вырвите мне глаза...... что это нахуй..
удали пж
 
да успокойтесь вы нах
 
бля братан, советую перестать делать такое, и просто уйти в покой с этого форума.
 
впринцепе норм тх но доработать и кайф
 
а как его установить?
 
нуу, честно, хуйня
 
Назад
Сверху Снизу