Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. Off-Topic
  3. Forum Game: Post screenshots of your wins with LiquidBounce

Forum Game: Post screenshots of your wins with LiquidBounce

Scheduled Pinned Locked Moved Off-Topic
forum gameliquidbounce
53 Posts 28 Posters 21.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Gabriel

    @marvin I know these are not wins, but some double and triple kills on redesky 😄 2021-03-23_18.48.50.png
    2021-03-18_20.36.13.png
    2021-03-19_03.59.11.png
    2021-03-19_02.56.21.png
    2021-03-15_02.06.08.png

    O Offline
    O Offline
    ohno
    wrote on last edited by
    #31

    @gabriel imagine using 1366x768

    DreamWasFuckedD A 2 Replies Last reply
    0
    • O ohno

      @gabriel imagine using 1366x768

      DreamWasFuckedD Offline
      DreamWasFuckedD Offline
      DreamWasFucked
      wrote on last edited by
      #32

      @ohno bruh bruh bruh its a laptop

      ? 1 Reply Last reply
      0
      • DreamWasFuckedD DreamWasFucked

        @ohno bruh bruh bruh its a laptop

        ? Offline
        ? Offline
        A Former User
        wrote on last edited by
        #33

        @skidma laptop gamer 👌

        1 Reply Last reply
        2
        • O ohno

          @gabriel imagine using 1366x768

          A Offline
          A Offline
          Aftery
          wrote on last edited by Aftery
          #34

          @ohno said in Forum Game: Post screenshots of your wins with LiquidBounce:

          @gabriel imagine using 1366x768

          0c36c19b-a8dc-4006-95d0-b056a3bb7af1-image.png

          @gabriel said in Forum Game: Post screenshots of your wins with LiquidBounce:

          @marvin I know these are not wins, but some double and triple kills on redesky 😄

          u ok?

          O 1 Reply Last reply
          1
          • A Aftery

            @ohno said in Forum Game: Post screenshots of your wins with LiquidBounce:

            @gabriel imagine using 1366x768

            0c36c19b-a8dc-4006-95d0-b056a3bb7af1-image.png

            @gabriel said in Forum Game: Post screenshots of your wins with LiquidBounce:

            @marvin I know these are not wins, but some double and triple kills on redesky 😄

            u ok?

            O Offline
            O Offline
            ohno
            wrote on last edited by
            #35

            @aftery im using 640x480 so im better undefined

            1 Reply Last reply
            0
            • exit scammedE Offline
              exit scammedE Offline
              exit scammed
              wrote on last edited by
              #36

              2021-03-24_21.16.31.png

              1366x768 moment

              G 1 Reply Last reply
              2
              • exit scammedE exit scammed

                2021-03-24_21.16.31.png

                1366x768 moment

                G Offline
                G Offline
                Gabriel
                wrote on last edited by
                #37

                @asutoboki Gimme that hud + bps counter.

                ? O exit scammedE 3 Replies Last reply
                0
                • G Gabriel

                  @asutoboki Gimme that hud + bps counter.

                  ? Offline
                  ? Offline
                  A Former User
                  wrote on last edited by
                  #38

                  gimme that

                  1 Reply Last reply
                  0
                  • G Gabriel

                    @asutoboki Gimme that hud + bps counter.

                    O Offline
                    O Offline
                    ohno
                    wrote on last edited by
                    #39

                    @gabriel why he should

                    1 Reply Last reply
                    0
                    • G Gabriel

                      @asutoboki Gimme that hud + bps counter.

                      exit scammedE Offline
                      exit scammedE Offline
                      exit scammed
                      wrote on last edited by
                      #40

                      @gabriel hud: use google sans font (in liulihaocai's redesky config)

                      bps counter: still in liulihaocai's but with drawRect

                      G 1 Reply Last reply
                      2
                      • exit scammedE exit scammed

                        @gabriel hud: use google sans font (in liulihaocai's redesky config)

                        bps counter: still in liulihaocai's but with drawRect

                        G Offline
                        G Offline
                        Gabriel
                        wrote on last edited by
                        #41

                        @asutoboki I want drawrect

                        exit scammedE 1 Reply Last reply
                        0
                        • G Gabriel

                          @asutoboki I want drawrect

                          exit scammedE Offline
                          exit scammedE Offline
                          exit scammed
                          wrote on last edited by
                          #42

                          @gabriel here you are

                          var GL11 = Java.type('org.lwjgl.opengl.GL11');
                          function drawRect(paramXStart, paramYStart, paramXEnd, paramYEnd, color) {
                              var alpha = (color >> 24 & 0xFF) / 255;
                              var red = (color >> 16 & 0xFF) / 255;
                              var green = (color >> 8 & 0xFF) / 255;
                              var blue = (color & 0xFF) / 255;
                          
                              GL11.glEnable(GL11.GL_BLEND);
                              GL11.glDisable(GL11.GL_TEXTURE_2D);
                              GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
                              GL11.glEnable(GL11.GL_LINE_SMOOTH);
                          
                              GL11.glPushMatrix();
                              GL11.glColor4f(red, green, blue, alpha);
                              GL11.glBegin(GL11.GL_TRIANGLE_FAN);
                              GL11.glVertex2d(paramXEnd, paramYStart);
                              GL11.glVertex2d(paramXStart, paramYStart);
                              GL11.glVertex2d(paramXStart, paramYEnd);
                              GL11.glVertex2d(paramXEnd, paramYEnd);
                          
                              GL11.glEnd();
                              GL11.glPopMatrix();
                          
                              GL11.glEnable(GL11.GL_TEXTURE_2D);
                              GL11.glDisable(GL11.GL_BLEND);
                              GL11.glDisable(GL11.GL_LINE_SMOOTH);
                          
                              GL11.glColor4f(1, 1, 1, 1);
                          }
                          
                          1 Reply Last reply
                          2
                          • A Offline
                            A Offline
                            Aftery
                            wrote on last edited by
                            #43

                            I want to stick my foot up your ass

                            1 Reply Last reply
                            0
                            • exit scammedE Offline
                              exit scammedE Offline
                              exit scammed
                              wrote on last edited by
                              #44
                              This post is deleted!
                              1 Reply Last reply
                              0
                              • END3R1355E Offline
                                END3R1355E Offline
                                END3R1355
                                wrote on last edited by
                                #45

                                6f7dc5b5-321d-474a-b8e9-25a3551b0678-image.png

                                1 Reply Last reply
                                0
                                • Ali00035A Offline
                                  Ali00035A Offline
                                  Ali00035
                                  wrote on last edited by
                                  #46

                                  @timmy-norton nice avatar.

                                  1 Reply Last reply
                                  0
                                  • cheesethesylveonC Offline
                                    cheesethesylveonC Offline
                                    cheesethesylveon
                                    wrote on last edited by
                                    #47

                                    2022-09-25_10.12.00.png

                                    1 Reply Last reply
                                    0
                                    • H Offline
                                      H Offline
                                      halal.club
                                      wrote on last edited by
                                      #48
                                      This post is deleted!
                                      1 Reply Last reply
                                      0
                                      • kawaiinekololisK kawaiinekololis pinned this topic on
                                      • O Offline
                                        O Offline
                                        ogbonnayauche
                                        wrote on last edited by ogbonnayauche
                                        #49

                                        I'm a big fan of LiquidBounce and love using it to play SkyWars and BedWars. I don't have any screenshots to share right now, but I've definitely had some epic wins thanks to this mod. It's so satisfying to be able to take down other players with ease and come out on top. I think it's awesome that we can use mods like LiquidBounce to enhance our gaming experience and really up our skills. It's amazing to see what we can achieve with a little extra help. On another note, have any of you tried playing games that pay money? I came across an interesting article about how some people are making a living through gaming. It's crazy to think that we can actually earn money while having fun playing games.

                                        ? G 2 Replies Last reply
                                        0
                                        • O ogbonnayauche

                                          I'm a big fan of LiquidBounce and love using it to play SkyWars and BedWars. I don't have any screenshots to share right now, but I've definitely had some epic wins thanks to this mod. It's so satisfying to be able to take down other players with ease and come out on top. I think it's awesome that we can use mods like LiquidBounce to enhance our gaming experience and really up our skills. It's amazing to see what we can achieve with a little extra help. On another note, have any of you tried playing games that pay money? I came across an interesting article about how some people are making a living through gaming. It's crazy to think that we can actually earn money while having fun playing games.

                                          ? Offline
                                          ? Offline
                                          A Former User
                                          wrote on last edited by
                                          #50

                                          @ogbonnayauche My ECPE certificate tells me that your comment is probably a Chat GPT-generated one. If it's not then my bad.

                                          G kawaiinekololisK 2 Replies Last reply
                                          1
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          About
                                          • Terms of Service
                                          • Privacy Policy
                                          • Status
                                          • Contact Us
                                          Downloads
                                          • Releases
                                          • Source code
                                          • License
                                          Docs
                                          • Tutorials
                                          • CustomHUD
                                          • AutoSettings
                                          • ScriptAPI
                                          Community
                                          • Forum
                                          • Guilded
                                          • YouTube
                                          • Twitter
                                          • D.Tube
                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups