Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Визуальная часть Skid wexside 1.0 watermark | expensive 2.0 ready

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
19 Ноя 2023
Сообщения
222
Реакции
2
Выберите загрузчик игры
  1. Vanilla
  2. OptiFine
Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Fonts.java:
Expand Collapse Copy
    public static volatile StyledFont[] mntbs = new StyledFont[24];
    public static volatile StyledFont[] wexsideIcons = new StyledFont[131];

  for (int i = 8; i < 24;i++) {
            mntbs[i] = new StyledFont("mntbs.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }
        for (int i = 8; i < 131;i++) {
            wexsideIcons[i] = new StyledFont("wi.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }

drawWatermark:
Expand Collapse Copy
    public static MultiBoxSetting elementsWT = new MultiBoxSetting("Элементы ватермарки",
            new BooleanOption("Юзернейм", true),
            new BooleanOption("Айпи", false),
            new BooleanOption("Дата", true),
            new BooleanOption("Фпс", true),
            new BooleanOption("Пинг",false));

  private static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    private static float maxWidth;


  public static void drawWaterMark(MatrixStack stack) {
        float width = 16;

        GL11.glEnable(GL11.GL_ALPHA_TEST);
        GL11.glEnable(GL11.GL_BLEND);
        WexsideShadow.renderShadow(6, 5, 51 + maxWidth, 16, ColorUtil.rgba(20, 20, 20, 170), 4);

        Fonts.wexsideIcons[25].drawString(stack, "a", 10.7f, 11F, ColorUtil.rgba(148, 255, 255, 255));
        Fonts.wexsideIcons[25].drawString(stack, "a", 11, 11F, ColorUtil.rgba(255, 255, 255, 255));
        Fonts.mntbs[14].drawString(stack, "wexside.xyz", 25, 12F, ColorUtil.rgba(225, 225, 225, 255));

        List<String> strings = new ArrayList<>();
        if (elementsWT.get(0)) {
            strings.add("Th3F0rt1x");
        }
        if (elementsWT.get(1)) {
            strings.add(mc.getCurrentServerData() == null ? "localhost" : mc.getCurrentServerData().serverIP.toLowerCase());
        }
        if (elementsWT.get(2)) {
            strings.add(dateFormat.format(new Date()));
        }

        if (elementsWT.get(3)) {
            strings.add(Minecraft.debugFPS + " fps");
        }

        if (elementsWT.get(4)) {
            strings.add(mc.getCurrentServerData().pingToServer + "ms");
    }

    for (String s : strings) {
        Fonts.mntbs[13].drawString(stack, s, 61 + width, 12.5F, ColorUtil.rgba(225, 225, 225, 255));
        width += Fonts.mntbs[13].getWidth(s) + 8;
    }
    maxWidth = width;
}
 
Последнее редактирование:
Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Fonts.java:
Expand Collapse Copy
    public static volatile StyledFont[] mntbs = new StyledFont[24];
    public static volatile StyledFont[] wexsideIcons = new StyledFont[131];

  for (int i = 8; i < 24;i++) {
            mntbs[i] = new StyledFont("mntbs.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }
        for (int i = 8; i < 131;i++) {
            wexsideIcons[i] = new StyledFont("wi.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }

drawWatermark:
Expand Collapse Copy
    public static MultiBoxSetting elementsWT = new MultiBoxSetting("Элементы ватермарки",
            new BooleanOption("Юзернейм", true),
            new BooleanOption("Айпи", false),
            new BooleanOption("Дата", true),
            new BooleanOption("Фпс", true),
            new BooleanOption("Пинг",false));

  private static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    private static float maxWidth;


  public static void drawWaterMark(MatrixStack stack) {
        float width = 16;

        GL11.glEnable(GL11.GL_ALPHA_TEST);
        GL11.glEnable(GL11.GL_BLEND);
        WexsideShadow.renderShadow(6, 5, 51 + maxWidth, 16, ColorUtil.rgba(20, 20, 20, 170), 4);

        Fonts.wexsideIcons[25].drawString(stack, "a", 10.7f, 11F, ColorUtil.rgba(148, 255, 255, 255));
        Fonts.wexsideIcons[25].drawString(stack, "a", 11, 11F, ColorUtil.rgba(255, 255, 255, 255));
        Fonts.mntbs[14].drawString(stack, "wexside.xyz", 25, 12F, ColorUtil.rgba(225, 225, 225, 255));

        List<String> strings = new ArrayList<>();
        if (elementsWT.get(0)) {
            strings.add("Th3F0rt1x");
        }
        if (elementsWT.get(1)) {
            strings.add(mc.getCurrentServerData() == null ? "localhost" : mc.getCurrentServerData().serverIP.toLowerCase());
        }
        if (elementsWT.get(2)) {
            strings.add(dateFormat.format(new Date()));
        }

        if (elementsWT.get(3)) {
            strings.add(Minecraft.debugFPS + " fps");
        }

        if (elementsWT.get(4)) {
            strings.add(mc.getCurrentServerData().pingToServer + "ms");
    }

    for (String s : strings) {
        Fonts.mntbs[13].drawString(stack, s, 61 + width, 12.5F, ColorUtil.rgba(225, 225, 225, 255));
        width += Fonts.mntbs[13].getWidth(s) + 8;
    }
    maxWidth = width;
}
да я щяс нахуй умру пока одобрят
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Fonts.java:
Expand Collapse Copy
    public static volatile StyledFont[] mntbs = new StyledFont[24];
    public static volatile StyledFont[] wexsideIcons = new StyledFont[131];

  for (int i = 8; i < 24;i++) {
            mntbs[i] = new StyledFont("mntbs.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }
        for (int i = 8; i < 131;i++) {
            wexsideIcons[i] = new StyledFont("wi.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }

drawWatermark:
Expand Collapse Copy
    public static MultiBoxSetting elementsWT = new MultiBoxSetting("Элементы ватермарки",
            new BooleanOption("Юзернейм", true),
            new BooleanOption("Айпи", false),
            new BooleanOption("Дата", true),
            new BooleanOption("Фпс", true),
            new BooleanOption("Пинг",false));

  private static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    private static float maxWidth;


  public static void drawWaterMark(MatrixStack stack) {
        float width = 16;

        GL11.glEnable(GL11.GL_ALPHA_TEST);
        GL11.glEnable(GL11.GL_BLEND);
        WexsideShadow.renderShadow(6, 5, 51 + maxWidth, 16, ColorUtil.rgba(20, 20, 20, 170), 4);

        Fonts.wexsideIcons[25].drawString(stack, "a", 10.7f, 11F, ColorUtil.rgba(148, 255, 255, 255));
        Fonts.wexsideIcons[25].drawString(stack, "a", 11, 11F, ColorUtil.rgba(255, 255, 255, 255));
        Fonts.mntbs[14].drawString(stack, "wexside.xyz", 25, 12F, ColorUtil.rgba(225, 225, 225, 255));

        List<String> strings = new ArrayList<>();
        if (elementsWT.get(0)) {
            strings.add("Th3F0rt1x");
        }
        if (elementsWT.get(1)) {
            strings.add(mc.getCurrentServerData() == null ? "localhost" : mc.getCurrentServerData().serverIP.toLowerCase());
        }
        if (elementsWT.get(2)) {
            strings.add(dateFormat.format(new Date()));
        }

        if (elementsWT.get(3)) {
            strings.add(Minecraft.debugFPS + " fps");
        }

        if (elementsWT.get(4)) {
            strings.add(mc.getCurrentServerData().pingToServer + "ms");
    }

    for (String s : strings) {
        Fonts.mntbs[13].drawString(stack, s, 61 + width, 12.5F, ColorUtil.rgba(225, 225, 225, 255));
        width += Fonts.mntbs[13].getWidth(s) + 8;
    }
    maxWidth = width;
}
прикольно, но зачем -_-
 
Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Fonts.java:
Expand Collapse Copy
    public static volatile StyledFont[] mntbs = new StyledFont[24];
    public static volatile StyledFont[] wexsideIcons = new StyledFont[131];

  for (int i = 8; i < 24;i++) {
            mntbs[i] = new StyledFont("mntbs.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }
        for (int i = 8; i < 131;i++) {
            wexsideIcons[i] = new StyledFont("wi.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }

drawWatermark:
Expand Collapse Copy
    public static MultiBoxSetting elementsWT = new MultiBoxSetting("Элементы ватермарки",
            new BooleanOption("Юзернейм", true),
            new BooleanOption("Айпи", false),
            new BooleanOption("Дата", true),
            new BooleanOption("Фпс", true),
            new BooleanOption("Пинг",false));

  private static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    private static float maxWidth;


  public static void drawWaterMark(MatrixStack stack) {
        float width = 16;

        GL11.glEnable(GL11.GL_ALPHA_TEST);
        GL11.glEnable(GL11.GL_BLEND);
        WexsideShadow.renderShadow(6, 5, 51 + maxWidth, 16, ColorUtil.rgba(20, 20, 20, 170), 4);

        Fonts.wexsideIcons[25].drawString(stack, "a", 10.7f, 11F, ColorUtil.rgba(148, 255, 255, 255));
        Fonts.wexsideIcons[25].drawString(stack, "a", 11, 11F, ColorUtil.rgba(255, 255, 255, 255));
        Fonts.mntbs[14].drawString(stack, "wexside.xyz", 25, 12F, ColorUtil.rgba(225, 225, 225, 255));

        List<String> strings = new ArrayList<>();
        if (elementsWT.get(0)) {
            strings.add("Th3F0rt1x");
        }
        if (elementsWT.get(1)) {
            strings.add(mc.getCurrentServerData() == null ? "localhost" : mc.getCurrentServerData().serverIP.toLowerCase());
        }
        if (elementsWT.get(2)) {
            strings.add(dateFormat.format(new Date()));
        }

        if (elementsWT.get(3)) {
            strings.add(Minecraft.debugFPS + " fps");
        }

        if (elementsWT.get(4)) {
            strings.add(mc.getCurrentServerData().pingToServer + "ms");
    }

    for (String s : strings) {
        Fonts.mntbs[13].drawString(stack, s, 61 + width, 12.5F, ColorUtil.rgba(225, 225, 225, 255));
        width += Fonts.mntbs[13].getWidth(s) + 8;
    }
    maxWidth = width;
}
тигр
 
Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Fonts.java:
Expand Collapse Copy
    public static volatile StyledFont[] mntbs = new StyledFont[24];
    public static volatile StyledFont[] wexsideIcons = new StyledFont[131];

  for (int i = 8; i < 24;i++) {
            mntbs[i] = new StyledFont("mntbs.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }
        for (int i = 8; i < 131;i++) {
            wexsideIcons[i] = new StyledFont("wi.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
        }

drawWatermark:
Expand Collapse Copy
    public static MultiBoxSetting elementsWT = new MultiBoxSetting("Элементы ватермарки",
            new BooleanOption("Юзернейм", true),
            new BooleanOption("Айпи", false),
            new BooleanOption("Дата", true),
            new BooleanOption("Фпс", true),
            new BooleanOption("Пинг",false));

  private static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    private static float maxWidth;


  public static void drawWaterMark(MatrixStack stack) {
        float width = 16;

        GL11.glEnable(GL11.GL_ALPHA_TEST);
        GL11.glEnable(GL11.GL_BLEND);
        WexsideShadow.renderShadow(6, 5, 51 + maxWidth, 16, ColorUtil.rgba(20, 20, 20, 170), 4);

        Fonts.wexsideIcons[25].drawString(stack, "a", 10.7f, 11F, ColorUtil.rgba(148, 255, 255, 255));
        Fonts.wexsideIcons[25].drawString(stack, "a", 11, 11F, ColorUtil.rgba(255, 255, 255, 255));
        Fonts.mntbs[14].drawString(stack, "wexside.xyz", 25, 12F, ColorUtil.rgba(225, 225, 225, 255));

        List<String> strings = new ArrayList<>();
        if (elementsWT.get(0)) {
            strings.add("Th3F0rt1x");
        }
        if (elementsWT.get(1)) {
            strings.add(mc.getCurrentServerData() == null ? "localhost" : mc.getCurrentServerData().serverIP.toLowerCase());
        }
        if (elementsWT.get(2)) {
            strings.add(dateFormat.format(new Date()));
        }

        if (elementsWT.get(3)) {
            strings.add(Minecraft.debugFPS + " fps");
        }

        if (elementsWT.get(4)) {
            strings.add(mc.getCurrentServerData().pingToServer + "ms");
    }

    for (String s : strings) {
        Fonts.mntbs[13].drawString(stack, s, 61 + width, 12.5F, ColorUtil.rgba(225, 225, 225, 255));
        width += Fonts.mntbs[13].getWidth(s) + 8;
    }
    maxWidth = width;
}
Ты же вроде никита? отпиши плиз в дс мне
 
Назад
Сверху Снизу