CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    [Request] VerusHop Speed

    Requests
    2
    7
    82
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Ali00035
      Ali00035 Banned last edited by Ali00035

      So, this is probably me requesting something after months, so to the topic

      A few months ago, NCPHop speed got patched, now it will kick/ban you after 10-15 seconds, I heard that there is a fast VerusHop speed in some clients, but does anyone have a script for it, if you have a VerusHop speed, feel free to give it 😄

      Thanks

      Plumer Man 1 Reply Last reply Reply Quote 0
      • Plumer Man
        Plumer Man @Ali00035 last edited by

        The 7.2 constant?

        Ali00035 1 Reply Last reply Reply Quote 0
        • Ali00035
          Ali00035 Banned @Plumer Man last edited by Ali00035

          @Plumer-Man Yeah

          Plumer Man 1 Reply Last reply Reply Quote 0
          • Plumer Man
            Plumer Man @Ali00035 last edited by

            @ali00035 k wait

            Ali00035 1 Reply Last reply Reply Quote 0
            • Ali00035
              Ali00035 Banned @Plumer Man last edited by

              @plumer-man ok

              Plumer Man 1 Reply Last reply Reply Quote 0
              • Plumer Man
                Plumer Man @Ali00035 last edited by

                ///api_version=2
                var Potion = Java.type("net.minecraft.potion.Potion");
                (script = registerScript({
                    name: "Verus Speed",
                    authors: ["PlumerMan"],
                    version: "1.0"
                })).import("Core.lib");
                
                module = {
                    name: "VerusSpeed",
                    category: "Movement",
                    tag: "Verus",
                    description: "Speed for the most advanced packet based anti cheat.",
                
                    onUpdate: function () {
                        mc.thePlayer.motionX = 0;
                        mc.thePlayer.motionZ = 0;
                
                        if(MovementUtils.isMoving()) {
                
                            if(mc.thePlayer.onGround) mc.thePlayer.jump();
                
                            var moveSpeed = 0.3345 + (mc.thePlayer.isPotionActive(Potion.moveSpeed) ? (mc.thePlayer.getActivePotionEffect(Potion.moveSpeed).getAmplifier() * 0.03) : 0);
                			var forward = mc.thePlayer.movementInput.moveForward;
                            var strafe = mc.thePlayer.movementInput.moveStrafe;
                            var yaw = mc.thePlayer.rotationYaw;
                
                            if (forward != 0) {
                                if (strafe >= 1.0) {
                                    yaw = mc.thePlayer.rotationYaw + ((forward > 0.0) ? -45 : 45);
                                    strafe = 0;
                                } else if (strafe <= -1.0) {
                                    yaw = mc.thePlayer.rotationYaw + ((forward > 0.0) ? 45 : -45);
                                    strafe = 0;
                                }
                            }
                
                            if (forward > 0) {
                                forward = 1;
                            } else if (forward < 0) {
                                forward = -1;
                            }
                
                            var mx = Math.cos(Math.toRadians(yaw + 90));
                            var mz = Math.sin(Math.toRadians(yaw + 90));
                
                            mc.thePlayer.motionX = forward * moveSpeed * mx + strafe * moveSpeed * mz;
                            mc.thePlayer.motionZ = forward * moveSpeed * mz - strafe * moveSpeed * mx;
                        }
                    }
                }
                
                Ali00035 1 Reply Last reply Reply Quote 1
                • Ali00035
                  Ali00035 Banned @Plumer Man last edited by

                  @plumer-man 😮 😳 thank you

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post
                  About
                  • Terms of Service
                  • Privacy Policy
                  • Status
                  • Contact Us
                  Downloads
                  • Releases
                  • Source code
                  • License
                  Docs
                  • Tutorials
                  • CustomHUD
                  • AutoSettings
                  • ScriptAPI
                  Community
                  • Forum
                  • Guilded
                  • YouTube
                  • Twitter
                  • D.Tube