TornadoClientDev / Storm-Anticheat

0 stars 0 forks source link

Found a new Speed #36

Open AlextvYT opened 6 years ago

AlextvYT commented 6 years ago

its an OnGround Speed. if (mc.gameSettings.keyBindJump.pressed) { return; } if (mc.gameSettings.keyBindSneak.pressed) { return; } if (mc.thePlayer.moveForward != 0 || mc.thePlayer.moveStrafing != 0) { if (!mc.thePlayer.isCollidedHorizontally) {
if (mc.thePlayer.onGround) { MoveUtils.multiplySpeed(1.7F); mc.thePlayer.motionY = 0.006; } else { mc.thePlayer.onGround = true; MoveUtils.multiplySpeed(1.02F); } } }

AlextvYT commented 6 years ago

found another one. a bhop if (mc.thePlayer.moveForward != 0 || mc.thePlayer.moveStrafing != 0) { if (!mc.thePlayer.isCollidedHorizontally) { if (mc.thePlayer.onGround) { mc.timer.timerSpeed = 1.1F; mc.thePlayer.jump(); } else { mc.timer.timerSpeed = 1.0F; mc.thePlayer.onGround = true; MoveUtils.multiplySpeed(1.02F); MoveUtils.toFwd(0.08); } } }

TornadoClientDev commented 6 years ago

Patched

AlextvYT commented 6 years ago

Both my Speeds still work perfect

TornadoClientDev commented 6 years ago

Patched