Skip to content

Commit

Permalink
Merge pull request #1037 from Davidisnotavailable/patch-5
Browse files Browse the repository at this point in the history
Update Scaffold.kt faster verus tower
  • Loading branch information
opZywl authored Dec 25, 2023
2 parents 80f63eb + 86ec069 commit 9e31c88
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -784,16 +784,15 @@ class Scaffold : Module() {
}
}
"verus" -> {
mc.thePlayer.setPosition(mc.thePlayer.posX, (mc.thePlayer.posY * 2).roundToInt().toDouble() / 2, mc.thePlayer.posZ)
if (mc.thePlayer.ticksExisted % 2 == 0) {
mc.thePlayer.motionY = 0.5
mc.timer.timerSpeed = 0.8f
doSpoof = false
}else{
mc.timer.timerSpeed = 1.33f
mc.thePlayer.motionY = 0.0
if (!mc.thePlayer.onGround) {
mc.thePlayer.motionY = -0.0784000015258789
mc.thePlayer.setPosition(mc.thePlayer.posX, truncate(mc.thePlayer.posY), mc.thePlayer.posZ)
}
if (mc.thePlayer.onGround) {
mc.thePlayer.motionY = -0.0784000015258789
mc.thePlayer.setPosition(mc.thePlayer.posX, mc.thePlayer.posY + 1, mc.thePlayer.posZ)
mc.thePlayer.onGround = true
doSpoof = true
mc.thePlayer.motionY = 0.41999998688698
}
}
"aac4jump" -> {
Expand Down

0 comments on commit 9e31c88

Please sign in to comment.