CCBlueX Forum

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

    Cancel C03PacketPlayer's js

    Scripts
    4
    4
    201
    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.
    • A
      ASKLL last edited by

      Can't move after canceling, but can make u velocity 0kb & high range killaura

      var scriptName = "CancelC03";
      var scriptAuthor = "ASKLL";
      var scriptVersion = 1.0;
      
      var C03PacketPlayer = Java.type("net.minecraft.network.play.client.C03PacketPlayer");
      
      function NoC03() {
      
      this.getName = function() {
      		return "CancelC03";
      	}
      
      this.getCategory = function() {
              	return "Misc";   
      	}
      
      this.getDescription = function() {
      		return "CancelC03";
      	}
      
      this.onUpdate = function () {
      	}
      
      this.onPacket = function (event) {
      		var packet = event.getPacket();
      		if (packet instanceof C03PacketPlayer){
      			event.cancelEvent()
      		}
      	}
      }
      
      var NoC03 = new NoC03();
      var NoC03Client;
      
      function onEnable() {
      	NoC03Client = moduleManager.registerModule(NoC03);
      }
      
      function onDisable() {
      	moduleManager.unregisterModule(NoC03Client);
      }
      
      
      Plumer Man CzechHek G 3 Replies Last reply Reply Quote 0
      • Plumer Man
        Plumer Man @ASKLL last edited by

        @ASKLL How tf does this bypass range checks, it probaly just makes you flag even more

        1 Reply Last reply Reply Quote 0
        • CzechHek
          CzechHek @ASKLL last edited by

          @ASKLL very cool blink just without sending any packets on disable

          1 Reply Last reply Reply Quote 0
          • G
            Gabriel @ASKLL last edited by

            @ASKLL Here's a version of your plugin written with Core.lib and ScriptAPI v2. Hope you like it!

            (script = registerScript({
                name: "CancelC03",
                authors: ["ASKLL"],
                version: "2.0"
            })).import("Core.lib");
            
            module = {
                category: "Misc",
                description: "Cancels the C03 packet",
                onPacket: function (e) {
                     p = e.getPacket
                     if (p instanceof C03PacketPlayer) {
                                event.cancelEvent()
                     }
                }
            }
            
            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