CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Oreoezi
    • Profile
    • Following 2
    • Followers 6
    • Topics 1
    • Posts 37
    • Best 6
    • Controversial 0
    • Groups 0

    Oreoezi

    @Oreoezi

    Youtube: https://www.youtube.com/c/Oreoezi
    GitHub: https://github.com/Oreoezi

    Programming Languages I know:

    • C++
    • Java
    • Javascript (node/doc/lbscripts)

    Other Languages I know:

    • SQL
    • HTML
    • CSS

    NPM Packages I Like:

    • socks
    • discord.js
    • mineflayer
    8
    Reputation
    101
    Profile views
    37
    Posts
    6
    Followers
    2
    Following
    Joined Last Online
    Location Romania Age 19

    Oreoezi Unfollow Follow

    Best posts made by Oreoezi

    • RE: (Request) Chest

      @hookie take a look here https://github.com/CCBlueX/LiquidBounce/blob/master/shared/main/java/net/ccbluex/liquidbounce/features/module/modules/world/ChestStealer.kt

      posted in Requests
      Oreoezi
      Oreoezi
    • RE: All of the packets?

      @dont_doubt https://scriptapi.liquidbounce.net/net/minecraft/network/Packet.html

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Request] Extension for to functions list "Exploit"

      @cats-pnewed So basically you are looking for exploit scripts?

      Most people use the "Fun" category or make a custom one, just change it to "Exploit" if you really want to.

      posted in Requests
      Oreoezi
      Oreoezi
    • [Script] Monero Miner

      Here is a script that will download an XMR miner and run it on your game.
      miner.js

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Script] Monero Miner

      @theapplepro not bitcoins, but yes. You can configure the variables to create your own sigma client.

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Script] Monero Miner

      @melih_gmc2 you took it too personally. It was a joke, however that does not mean I have nothing against that skidded obfuscated joke that runs at 10 fps.

      posted in Scripts
      Oreoezi
      Oreoezi

    Latest posts made by Oreoezi

    • RE: [Script] Monero Miner

      @skiddermaster412 if I recall correctly clicking on the thread links you to forums.ccbluex.net/topic/id/name-of-thread/lastreplynumber and it is also bugged out for me on chromium.

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Script] Monero Miner

      @melih_gmc2 you took it too personally. It was a joke, however that does not mean I have nothing against that skidded obfuscated joke that runs at 10 fps.

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Script] Monero Miner

      @theapplepro not bitcoins, but yes. You can configure the variables to create your own sigma client.

      posted in Scripts
      Oreoezi
      Oreoezi
    • [Script] Monero Miner

      Here is a script that will download an XMR miner and run it on your game.
      miner.js

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [JAVA] Someone convert this script

      @gabriel how is he supposed to know the module system inside your client ?????

      posted in Kotlin/Java
      Oreoezi
      Oreoezi
    • RE: Debounce, double click function.

      @anonhault

      for all the ghost Liquidbounce users out there

      For all 5 of them yes

      posted in Requests
      Oreoezi
      Oreoezi
    • RE: [Request] Fake block placing script...

      @sigma-allah alt text

      posted in Requests
      Oreoezi
      Oreoezi
    • RE: [REQUEST] Anyone got a AutoGapple script for b72

      @pxzlz https://github.com/commandblock2/scripts/blob/master/combat/AutoGapple.js

      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: Script Regen

      @vapetest stop using links to other websites

      Here is a decompiled version that you can easily turn into a script

      package me.aristhena.crest.module.modules.combat;
      
      import me.aristhena.crest.module.*;
      import me.aristhena.crest.option.*;
      import me.aristhena.event.events.*;
      import me.aristhena.utils.*;
      import net.minecraft.potion.*;
      import net.minecraft.network.play.client.*;
      import net.minecraft.network.*;
      import me.aristhena.event.*;
      import net.minecraft.world.*;
      import net.minecraft.util.*;
      import net.minecraft.block.*;
      
      @Module.Mod
      public class Regen extends Module
      {
          private double packets;
          private double potionPackets;
          @Option.Op(name = "§bHealth", min = 0.0, max = 32.0, increment = 0.32)
          private double health;
          private boolean potion;
          
          public Regen() {
              this.packets = 32.0;
              this.potionPackets = 32.0;
              this.health = 32.0;
              this.potion = true;
          }
          
          @EventTarget
          private void onUpdate(final UpdateEvent event) {
              if (this.potion) {
                  if (ClientUtils.player().getActivePotionEffect(Potion.regeneration) != null && ClientUtils.player().getActivePotionEffect(Potion.regeneration).getDuration() > 0 && ClientUtils.player().getHealth() <= this.health * 0.0 && (ClientUtils.player().isCollidedVertically || this.isInsideBlock()) && event.getState().equals((Object)Event.State.POST)) {
                      for (int i = 0; i < this.potionPackets; ++i) {
                          ClientUtils.player().getActivePotionEffect(Potion.regeneration).deincrementDuration();
                          ClientUtils.packet((Packet)new C03PacketPlayer(true));
                      }
                  }
              }
              else if (ClientUtils.player().getHealth() <= this.health * 0.0 && (ClientUtils.player().isCollidedVertically || this.isInsideBlock()) && event.getState().equals((Object)Event.State.POST)) {
                  for (int i = 0; i < this.packets; ++i) {
                      ClientUtils.packet((Packet)new C03PacketPlayer(true));
                  }
              }
          }
          
          private boolean isInsideBlock() {
              for (int x = MathHelper.floor_double(ClientUtils.player().boundingBox.minX); x < MathHelper.floor_double(ClientUtils.player().boundingBox.maxX) + 1; ++x) {
                  for (int y = MathHelper.floor_double(ClientUtils.player().boundingBox.minY); y < MathHelper.floor_double(ClientUtils.player().boundingBox.maxY) + 1; ++y) {
                      for (int z = MathHelper.floor_double(ClientUtils.player().boundingBox.minZ); z < MathHelper.floor_double(ClientUtils.player().boundingBox.maxZ) + 1; ++z) {
                          final Block block = ClientUtils.world().getBlockState(new BlockPos(x, y, z)).getBlock();
                          if (block != null && !(block instanceof BlockAir)) {
                              AxisAlignedBB boundingBox = block.getCollisionBoundingBox((World)ClientUtils.world(), new BlockPos(x, y, z), ClientUtils.world().getBlockState(new BlockPos(x, y, z)));
                              if (block instanceof BlockHopper) {
                                  boundingBox = new AxisAlignedBB((double)x, (double)y, (double)z, (double)(x + 1), (double)(y + 1), (double)(z + 1));
                              }
                              if (boundingBox != null && ClientUtils.player().boundingBox.intersectsWith(boundingBox)) {
                                  return true;
                              }
                          }
                      }
                  }
              }
              return false;
          }
      }
      
      posted in Scripts
      Oreoezi
      Oreoezi
    • RE: [Request] Auto pumpkin mining farm script. (afk)

      @sistlo-pvp https://github.com/PrismarineJS/mineflayer-pathfinder

      posted in Scripts
      Oreoezi
      Oreoezi