Исходник InventoryHUD // expensive 2.0

Начинающий
Статус
Оффлайн
Регистрация
4 Янв 2023
Сообщения
255
Реакции[?]
11
Поинты[?]
10K

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

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

Спасибо!

2024-04-21_14-49-14.png


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
 
Начинающий
Статус
Оффлайн
Регистрация
10 Фев 2023
Сообщения
373
Реакции[?]
0
Поинты[?]
1K
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
можно было сделать немного по-другому
 
Забаненный
Статус
Оффлайн
Регистрация
17 Мар 2024
Сообщения
194
Реакции[?]
2
Поинты[?]
4K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
Лёня ЛУЧШИЙ!!!
А ещё крякни nursultan
 
Начинающий
Статус
Оффлайн
Регистрация
12 Авг 2021
Сообщения
145
Реакции[?]
3
Поинты[?]
2K
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
Одобрено:seemsgood:
 
Начинающий
Статус
Оффлайн
Регистрация
8 Фев 2024
Сообщения
126
Реакции[?]
0
Поинты[?]
0
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
на какую строку это вставлять плиз и подробнее гайд как это пастить в худ просто я ноль в сурсах экспы 2.0
 
Начинающий
Статус
Оффлайн
Регистрация
29 Авг 2022
Сообщения
64
Реакции[?]
1
Поинты[?]
0
куда столько кода? это можно было сделать получше и короче... это пиздец конечно
 
Начинающий
Статус
Оффлайн
Регистрация
8 Фев 2024
Сообщения
126
Реакции[?]
0
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
14 Июн 2023
Сообщения
80
Реакции[?]
0
Поинты[?]
0
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
Обьясните че за тренд на инвентори худ? Не лучше сделать что бы показывало только например тотемы опыт и другие предметы на выбор?
 
Начинающий
Статус
Оффлайн
Регистрация
21 Фев 2024
Сообщения
102
Реакции[?]
2
Поинты[?]
3K
Посмотреть вложение 275214


Java:
    private void RenderInventoryHUD(MatrixStack stack) {
        float x = this.InventoryHUD.getX();
        float y = this.InventoryHUD.getY();
        float width = 16.0F;
        float height = 16.0F;
        float y1 = 17.0F;
        float x1 = 0.7F;
        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);
        RenderUtil.Render2D.drawGradientRound(x,  y - 18, 150, 15, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(x, y - 18, 150, 15,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
        Fonts.durman[16].drawCenteredString(stack, "InventoryHUD", (double)(x + 74), (double)(y - 13), -1);
        for(int i = 9; i < 36; ++i) {
            RenderUtil.Render2D.drawRoundedCorner(x,y, width, height, 3.0F, (new Color(14, 14, 14, 255)).getRGB());
         //   RenderUtil.Render2D.drawGradientRound(x,y, 16, 16, 3,firstColor, secondColor, ColorUtil.getColorStyle(180), ColorUtil.getColorStyle(270));
         //   RenderUtil.Render2D.drawRoundedRect(x,y, 16, 16,3, RenderUtil.reAlphaInt(ColorUtil.rgba(15, 15, 15, 255), 170));
            ItemStack slot = mc.player.inventory.getStackInSlot(i);
            HudUtil.drawItemStack(slot, x + 0.6F, y + 1.0F, true, true, 0.9F);
            x += width;
            x += x1;
            if (i == 17) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }

            if (i == 26) {
                y += y1;
                x -= width * 9.0F;
                x -= x1 * 9.0F;
            }
        }

        this.InventoryHUD.setWidth(width * 9.0F + x1 * 9.0F);
        this.InventoryHUD.setHeight(height * 3.0F + 1.0F);
    }
фу.
 
Начинающий
Статус
Оффлайн
Регистрация
18 Фев 2023
Сообщения
28
Реакции[?]
0
Поинты[?]
0
Обьясните че за тренд на инвентори худ? Не лучше сделать что бы показывало только например тотемы опыт и другие предметы на выбор?
«Во всех читах есть пусть и тут будет» - Мега $$$elfcoder
 
Похожие темы
Сверху Снизу