-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Grim Damage Velocity GrimPlace Disabler Grim1.17 Velocity Input Disabler Intave Velocity Jump Reset Velocity MushMC Disabler NoSwing Disabler PayLoad Disabler ShotBow Disabler SilentAcceptDisabler Disabler SilentActionBypassDisabler Disabler SpartanCombat Disabler (Back) VerusCustom Disabler Verus Fly Disabler Verus Scaffold Disabler Flag Disabler BlockPlacement Disabler Recode Armor Element Recode Effect Element Fixed GuiBackground removed category world
- Loading branch information
Showing
70 changed files
with
1,368 additions
and
1,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...in/java/net/ccbluex/liquidbounce/features/module/modules/combat/velocitys/grim/Grim117.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.grim | ||
|
||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.VelocityMode | ||
import net.minecraft.network.play.client.C03PacketPlayer | ||
import net.minecraft.network.play.client.C07PacketPlayerDigging | ||
import net.minecraft.util.EnumFacing | ||
|
||
class Grim117 : VelocityMode("Grim1.17") { | ||
|
||
private var velocityInput = false | ||
override fun onPacket(event: PacketEvent) { | ||
mc.netHandler.addToSendQueue( | ||
C03PacketPlayer.C06PacketPlayerPosLook( | ||
mc.thePlayer.posX, | ||
mc.thePlayer.posY, | ||
mc.thePlayer.posZ, | ||
mc.thePlayer.rotationYaw, | ||
mc.thePlayer.rotationPitch, | ||
mc.thePlayer.onGround | ||
) | ||
) | ||
mc.netHandler.addToSendQueue( | ||
C07PacketPlayerDigging( | ||
C07PacketPlayerDigging.Action.STOP_DESTROY_BLOCK,mc.thePlayer.position, | ||
EnumFacing.DOWN) | ||
) | ||
velocityInput = false | ||
} | ||
|
||
} |
35 changes: 35 additions & 0 deletions
35
...java/net/ccbluex/liquidbounce/features/module/modules/combat/velocitys/grim/GrimDamage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.grim | ||
|
||
import net.ccbluex.liquidbounce.FDPClient | ||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.VelocityMode | ||
import net.minecraft.network.play.client.C02PacketUseEntity | ||
import net.minecraft.network.play.client.C0APacketAnimation | ||
|
||
class GrimDamage : VelocityMode("GrimDamage") { | ||
|
||
private var velocityInput = false | ||
override fun onPacket(event: PacketEvent) { | ||
if (velocityInput) { | ||
val target = FDPClient.combatManager.getNearByEntity(3f) | ||
repeat(12) { | ||
mc.thePlayer.sendQueue.addToSendQueue( | ||
C02PacketUseEntity( | ||
target, | ||
C02PacketUseEntity.Action.ATTACK | ||
) | ||
) | ||
mc.thePlayer.sendQueue.addToSendQueue(C0APacketAnimation()) | ||
} | ||
mc.thePlayer.motionX *= 0.077760000 | ||
mc.thePlayer.motionZ *= 0.077760000 | ||
velocityInput = false | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...et/ccbluex/liquidbounce/features/module/modules/combat/velocitys/intave/IntaveVelocity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.intave | ||
|
||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.VelocityMode | ||
import net.minecraft.client.settings.GameSettings | ||
class IntaveVelocity : VelocityMode("Intave") { | ||
|
||
private var jumped = 0 | ||
override fun onPacket(event: PacketEvent) { | ||
if (mc.thePlayer.hurtTime == 9) { | ||
if (++jumped % 2 == 0 && mc.thePlayer.onGround && mc.thePlayer.isSprinting && mc.currentScreen == null) { | ||
mc.gameSettings.keyBindJump.pressed = true | ||
jumped = 0 // reset | ||
} | ||
} else { | ||
mc.gameSettings.keyBindJump.pressed = GameSettings.isKeyDown(mc.gameSettings.keyBindJump) | ||
} | ||
} | ||
|
||
} |
31 changes: 31 additions & 0 deletions
31
...java/net/ccbluex/liquidbounce/features/module/modules/combat/velocitys/other/JumpReset.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.other | ||
|
||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.combat.velocitys.VelocityMode | ||
|
||
class JumpReset : VelocityMode("JumpReset") { | ||
private var start = 0 | ||
override fun onPacket(event: PacketEvent) { | ||
while (mc.thePlayer.hurtTime >= 8) { | ||
mc.gameSettings.keyBindJump.pressed = true | ||
break | ||
} | ||
while (mc.thePlayer.hurtTime >= 7 && !mc.gameSettings.keyBindForward.pressed) { | ||
mc.gameSettings.keyBindForward.pressed = true | ||
start = 1 | ||
break | ||
} | ||
if (mc.thePlayer.hurtTime in 1..6) { | ||
mc.gameSettings.keyBindJump.pressed = false | ||
if (start == 1) { | ||
mc.gameSettings.keyBindForward.pressed = false | ||
start = 0 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
.../ccbluex/liquidbounce/features/module/modules/exploit/disablers/grim/GrimPlaceDisabler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.exploit.disablers.grim | ||
|
||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.exploit.disablers.DisablerMode | ||
import net.ccbluex.liquidbounce.value.BoolValue | ||
import net.minecraft.network.Packet | ||
import net.minecraft.network.play.client.C08PacketPlayerBlockPlacement | ||
import net.minecraft.network.play.client.C0BPacketEntityAction | ||
import net.minecraft.network.play.client.C0EPacketClickWindow | ||
import java.util.concurrent.LinkedBlockingQueue | ||
|
||
class GrimPlaceDisabler : DisablerMode("Grim Place") { | ||
private val packetsG = LinkedBlockingQueue<Packet<*>>() | ||
private var pre = false | ||
private val c0e = BoolValue("ChestStealer", true) | ||
private val c08 = BoolValue("PlaceBlock", true) | ||
private val c0b = BoolValue("C0B", true) | ||
|
||
override fun onPacket(event: PacketEvent) { | ||
val packet = event.packet | ||
|
||
/* pre = event.eventState == EventState.PRE | ||
if (event.eventState == EventState.PRE) { | ||
try { | ||
while (!packetsG.isEmpty()) { | ||
mc.netHandler!!.addToSendQueue(packetsG.take()) | ||
disabler.debugMessage("expensive bypasses") | ||
} | ||
} catch (e: Exception) { | ||
e.printStackTrace() | ||
} | ||
} | ||
*/ | ||
if (packet is C0EPacketClickWindow && c0e.get()) { | ||
if (!pre) { | ||
event.cancelEvent() | ||
packetsG.add(packet) | ||
disabler.debugMessage("CEMonkey") | ||
} | ||
} | ||
if (packet is C0BPacketEntityAction && c0b.get()) { | ||
if (!pre) { | ||
event.cancelEvent() | ||
packetsG.add(packet) | ||
disabler.debugMessage("BBMonkey") | ||
} | ||
} | ||
if (packet is C08PacketPlayerBlockPlacement && c08.get()) { | ||
if (!pre) { | ||
event.cancelEvent() | ||
packetsG.add(packet) | ||
disabler.debugMessage("GreatBarrierLeef") | ||
} | ||
} | ||
} | ||
|
||
} |
28 changes: 28 additions & 0 deletions
28
...ex/liquidbounce/features/module/modules/exploit/disablers/other/BlockPlacementDisabler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.features.module.modules.exploit.disablers.other | ||
|
||
import net.ccbluex.liquidbounce.event.PacketEvent | ||
import net.ccbluex.liquidbounce.features.module.modules.exploit.disablers.DisablerMode | ||
import net.ccbluex.liquidbounce.utils.PacketUtils | ||
import net.minecraft.network.play.client.C08PacketPlayerBlockPlacement | ||
import net.minecraft.util.BlockPos | ||
class BlockPlacementDisabler : DisablerMode("BlockPlacement") { | ||
|
||
override fun onPacket(event: PacketEvent) { | ||
PacketUtils.sendPacketNoEvent( | ||
C08PacketPlayerBlockPlacement( | ||
BlockPos(Double.NaN, Double.NaN, Double.NaN), | ||
1, | ||
null, | ||
0f, | ||
0f, | ||
0f | ||
) | ||
) | ||
disabler.debugMessage("BlockPlacement") | ||
} | ||
} |
Oops, something went wrong.