Исходник KeyStrokes HudFunction | Expensive 2.0

Начинающий
Статус
Оффлайн
Регистрация
26 Мар 2024
Сообщения
42
Реакции[?]
0
Поинты[?]
0
Сижу в войсе с другом и он говорит а слей свой супер кейстрокес написанный за 5 минут на юг, ну а я послушался и вот они тут т.к у меня молил уже Wermitist чтобы я дал ему :roflanEbalo:

Ладно код ниже

Код:
public Dragging keyStrokes = Main.createDrag(this, "KeyStrokes", 200, 50);
    private void onNotif(MatrixStack stack) {
        float posX = this.keyStrokes.getX() + 5.0F;
        float posY = this.keyStrokes.getY() - 28.0F;
        int offset = 10;
        int headerHeight = 45;
        int width = 70;
        float height = (float)(this.activeModules * offset);
        int firstColor = ColorUtil.getColorStyle(0.0F);
        int secondColor = ColorUtil.getColorStyle(90.0F);
        this.heightDynamic = AnimationMath.fast(this.heightDynamic, height, 10.0F);
        int keyPressedW = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 87);
        int keyPressedS = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 83);
        int keyPressedA = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 65);
        int keyPressedD = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 68);
        int keyPressedSPACE = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 32);
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 13.5F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F + 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F + 18.0F, 56.0F, 15.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        if (keyPressedW == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 14.9F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedS == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedA == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedD == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F + 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedSPACE == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F + 18.0F, 53.0F, 12.2F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        Fonts.sfbold[19].drawCenteredString(stack, "W", (double)(posX + 38.0F), (double)(posY + 19.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "A", (double)(posX - 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "S", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "D", (double)(posX + 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "SPACE", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F + 15.5F), -1);
        this.keyStrokes.setWidth((float)width);
        this.keyStrokes.setHeight((float)headerHeight);
    }

SS: 1712391511733.png
 
Начинающий
Статус
Оффлайн
Регистрация
7 Мар 2024
Сообщения
294
Реакции[?]
6
Поинты[?]
4K
ne
Сижу в войсе с другом и он говорит а слей свой супер кейстрокес написанный за 5 минут на юг, ну а я послушался и вот они тут т.к у меня молил уже Wermitist чтобы я дал ему :roflanEbalo:

Ладно код ниже

Код:
public Dragging keyStrokes = Main.createDrag(this, "KeyStrokes", 200, 50);
    private void onNotif(MatrixStack stack) {
        float posX = this.keyStrokes.getX() + 5.0F;
        float posY = this.keyStrokes.getY() - 28.0F;
        int offset = 10;
        int headerHeight = 45;
        int width = 70;
        float height = (float)(this.activeModules * offset);
        int firstColor = ColorUtil.getColorStyle(0.0F);
        int secondColor = ColorUtil.getColorStyle(90.0F);
        this.heightDynamic = AnimationMath.fast(this.heightDynamic, height, 10.0F);
        int keyPressedW = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 87);
        int keyPressedS = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 83);
        int keyPressedA = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 65);
        int keyPressedD = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 68);
        int keyPressedSPACE = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 32);
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 13.5F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F + 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F + 18.0F, 56.0F, 15.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        if (keyPressedW == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 14.9F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedS == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedA == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedD == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F + 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedSPACE == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F + 18.0F, 53.0F, 12.2F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        Fonts.sfbold[19].drawCenteredString(stack, "W", (double)(posX + 38.0F), (double)(posY + 19.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "A", (double)(posX - 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "S", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "D", (double)(posX + 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "SPACE", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F + 15.5F), -1);
        this.keyStrokes.setWidth((float)width);
        this.keyStrokes.setHeight((float)headerHeight);
    }

SS: Посмотреть вложение 274171
спиздил у newcode
 
Начинающий
Статус
Оффлайн
Регистрация
16 Дек 2023
Сообщения
447
Реакции[?]
8
Поинты[?]
4K
Сижу в войсе с другом и он говорит а слей свой супер кейстрокес написанный за 5 минут на юг, ну а я послушался и вот они тут т.к у меня молил уже Wermitist чтобы я дал ему :roflanEbalo:

Ладно код ниже

Код:
public Dragging keyStrokes = Main.createDrag(this, "KeyStrokes", 200, 50);
    private void onNotif(MatrixStack stack) {
        float posX = this.keyStrokes.getX() + 5.0F;
        float posY = this.keyStrokes.getY() - 28.0F;
        int offset = 10;
        int headerHeight = 45;
        int width = 70;
        float height = (float)(this.activeModules * offset);
        int firstColor = ColorUtil.getColorStyle(0.0F);
        int secondColor = ColorUtil.getColorStyle(90.0F);
        this.heightDynamic = AnimationMath.fast(this.heightDynamic, height, 10.0F);
        int keyPressedW = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 87);
        int keyPressedS = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 83);
        int keyPressedA = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 65);
        int keyPressedD = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 68);
        int keyPressedSPACE = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 32);
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 13.5F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F + 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F + 18.0F, 56.0F, 15.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        if (keyPressedW == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 14.9F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedS == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedA == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedD == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F + 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedSPACE == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F + 18.0F, 53.0F, 12.2F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        Fonts.sfbold[19].drawCenteredString(stack, "W", (double)(posX + 38.0F), (double)(posY + 19.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "A", (double)(posX - 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "S", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "D", (double)(posX + 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "SPACE", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F + 15.5F), -1);
        this.keyStrokes.setWidth((float)width);
        this.keyStrokes.setHeight((float)headerHeight);
    }

SS: Посмотреть вложение 274171
Wermitisty сложно написать кейстрокес? Пиздец... Скоро в пастах новый "кейговнище" на ваших глазах
Сижу в войсе с другом и он говорит а слей свой супер кейстрокес написанный за 5 минут на юг, ну а я послушался и вот они тут т.к у меня молил уже Wermitist чтобы я дал ему :roflanEbalo:

Ладно код ниже

Код:
   if (keyPressedW == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 14.9F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedS == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedA == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedD == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F + 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedSPACE == 1) {
           
    }

SS: Посмотреть вложение 274171
Отрубить руки за это,легче так
if (keyPressed == GLFW.GLFW_PRESS) {
Глоу или чё будет после нажатия клавиш
}
Так легче,чем писать по 5 строк дерьма где будет для своей клавиши рендер...

Мог даже анимацию сделать при нажатии...
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
2 Дек 2023
Сообщения
51
Реакции[?]
0
Поинты[?]
0
пиздец одна хуета на hud function на экспу 2.0/3.1 (у тебя самое топовый keystrokes пока я видел топовый а всё остальное хуйня на экспу)
 
Начинающий
Статус
Оффлайн
Регистрация
26 Мар 2024
Сообщения
42
Реакции[?]
0
Поинты[?]
0
Wermitisty сложно написать кейстрокес? Пиздец... Скоро в пастах новый "кейговнище" на ваших глазах

Отрубить руки за это,легче так
if (keyPressed == GLFW.GLFW_PRESS) {
Глоу или чё будет после нажатия клавиш
}
Так легче,чем писать по 5 строк дерьма где будет для своей клавиши рендер...

Мог даже анимацию сделать при нажатии...
я делал это за 3-5 минут
 
Начинающий
Статус
Оффлайн
Регистрация
26 Мар 2024
Сообщения
42
Реакции[?]
0
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
5 Апр 2023
Сообщения
389
Реакции[?]
1
Поинты[?]
2K
Сижу в войсе с другом и он говорит а слей свой супер кейстрокес написанный за 5 минут на юг, ну а я послушался и вот они тут т.к у меня молил уже Wermitist чтобы я дал ему :roflanEbalo:

Ладно код ниже

Код:
public Dragging keyStrokes = Main.createDrag(this, "KeyStrokes", 200, 50);
    private void onNotif(MatrixStack stack) {
        float posX = this.keyStrokes.getX() + 5.0F;
        float posY = this.keyStrokes.getY() - 28.0F;
        int offset = 10;
        int headerHeight = 45;
        int width = 70;
        float height = (float)(this.activeModules * offset);
        int firstColor = ColorUtil.getColorStyle(0.0F);
        int secondColor = ColorUtil.getColorStyle(90.0F);
        this.heightDynamic = AnimationMath.fast(this.heightDynamic, height, 10.0F);
        int keyPressedW = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 87);
        int keyPressedS = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 83);
        int keyPressedA = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 65);
        int keyPressedD = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 68);
        int keyPressedSPACE = GLFW.glfwGetKey(mc.getMainWindow().getHandle(), 32);
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 13.5F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F + 19.0F, posY + 32.0F, 17.0F, 17.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        RenderUtil.Render2D.drawRoundedRect(posX + 29.5F - 19.0F, posY + 32.0F + 18.0F, 56.0F, 15.0F, 2.0F, (new Color(30, 30, 30, 250)).getRGB());
        if (keyPressedW == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 14.9F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedS == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedA == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedD == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F + 19.0F, posY + 33.4F, 14.0F, 14.0F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        if (keyPressedSPACE == 1) {
            RenderUtil.Render2D.drawGradientRound(posX + 31.0F - 19.0F, posY + 33.4F + 18.0F, 53.0F, 12.2F, 1.5F, firstColor, secondColor, ColorUtil.getColorStyle(180.0F), ColorUtil.getColorStyle(270.0F));
        }

        Fonts.sfbold[19].drawCenteredString(stack, "W", (double)(posX + 38.0F), (double)(posY + 19.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "A", (double)(posX - 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "S", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "D", (double)(posX + 19.0F + 38.0F), (double)(posY + 18.0F + 20.0F), -1);
        Fonts.sfbold[19].drawCenteredString(stack, "SPACE", (double)(posX + 38.0F), (double)(posY + 18.0F + 20.0F + 15.5F), -1);
        this.keyStrokes.setWidth((float)width);
        this.keyStrokes.setHeight((float)headerHeight);
    }

SS: Посмотреть вложение 274171
ну норм
 
Забаненный
Статус
Оффлайн
Регистрация
17 Фев 2024
Сообщения
21
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
shit
 
Начинающий
Статус
Оффлайн
Регистрация
17 Май 2023
Сообщения
221
Реакции[?]
2
Поинты[?]
1K
/del спащенно + криво + много всякой лишней херни + ваще вырви глаза + удали интеледж + выучи джаву + учи Майнкрафт апи + думаю ваще тебе не стоит заходить на югейм + лучше сливай в Ватсапп + а ещё лучше сливай в Вайбере + кароче думаю ты понял + что не надо выкладывать то + что Пастер может скопировать + с другого Чита + который опен сурс + ну ты ваще дурачек так то + ты ещё случаем не Олег монгол? + а то под синьку как он херню делаешь + ты ваще че выложил то? + а я уже говорил об этом + кароче свободен + на Ютубе полно туториалов по джава + а я тоже это говорил + ладно кароче + ты понял + свободен бедолага + а ещё ++++++++++++++
 
Начинающий
Статус
Оффлайн
Регистрация
3 Май 2023
Сообщения
156
Реакции[?]
1
Поинты[?]
0
/del спащенно + криво + много всякой лишней херни + ваще вырви глаза + удали интеледж + выучи джаву + учи Майнкрафт апи + думаю ваще тебе не стоит заходить на югейм + лучше сливай в Ватсапп + а ещё лучше сливай в Вайбере + кароче думаю ты понял + что не надо выкладывать то + что Пастер может скопировать + с другого Чита + который опен сурс + ну ты ваще дурачек так то + ты ещё случаем не Олег монгол? + а то под синьку как он херню делаешь + ты ваще че выложил то? + а я уже говорил об этом + кароче свободен + на Ютубе полно туториалов по джава + а я тоже это говорил + ладно кароче + ты понял + свободен бедолага + а ещё ++++++++++++++
+ как запятая уже❤
 
Начинающий
Статус
Оффлайн
Регистрация
2 Дек 2023
Сообщения
51
Реакции[?]
0
Поинты[?]
0
/del спащенно + криво + много всякой лишней херни + ваще вырви глаза + удали интеледж + выучи джаву + учи Майнкрафт апи + думаю ваще тебе не стоит заходить на югейм + лучше сливай в Ватсапп + а ещё лучше сливай в Вайбере + кароче думаю ты понял + что не надо выкладывать то + что Пастер может скопировать + с другого Чита + который опен сурс + ну ты ваще дурачек так то + ты ещё случаем не Олег монгол? + а то под синьку как он херню делаешь + ты ваще че выложил то? + а я уже говорил об этом + кароче свободен + на Ютубе полно туториалов по джава + а я тоже это говорил + ладно кароче + ты понял + свободен бедолага + а ещё ++++++++++++++
хах на свою тему с убогим вт посмотри далбаёб нет я не говорю что ваще гавно нахуй ты даже в каком-то смысле молодец ты самый первый кто напастил вт на экспу 3.1 и слил на юг но у тебя там хуйня а не вт кривая помойка
 
Сверху Снизу