Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. Scripts
  3. SpoofClimb

SpoofClimb

Scheduled Pinned Locked Moved Scripts
3 Posts 2 Posters 257 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • DreamWasFuckedD Offline
    DreamWasFuckedD Offline
    DreamWasFucked
    wrote on last edited by DreamWasFucked
    #1

    This can bypass ACR when no one is using itundefined undefined undefined

    var C03PacketPlayer = Java.type('net.minecraft.network.play.client.C03PacketPlayer');
    var canClimb = undefined;
    var script = registerScript({
        name: 'SpoofClimb',
        version: '0.0.0',
        authors: ['Shurpe']
    });
    script.registerModule({
        name: 'SpoofClimb',
        category: 'Fun', 
        description: '',
        settings: {
            climbSpeed: Setting.float({
                name: 'ClimbSpeed',
                default: 0.5,
                min: 0.1,
                max: 1
            })
        }
    }, function (module) {
        module.on('update', function() {
            if (!mc.thePlayer.isCollidedHorizontally || mc.thePlayer.isInWater() || mc.thePlayer.isInLava() || mc.thePlayer.isOnLadder() || mc.thePlayer.isInWeb || mc.thePlayer.isOnLadder()) {
                canClimb = false;
            } else {
                canClimb = true; mc.thePlayer.motionY = module.settings.climbSpeed.get(); mc.thePlayer.onGround = true;
            }
        });
        module.on('packet', function(e) {
            packet = e.getPacket();
            if (canClimb == true && packet instanceof C03PacketPlayer) {
                packet.onGround = true;
            }
        });
        module.on('jump', function(e) {
            if (canClimb == true) {
                e.cancelEvent();
            }
        });
    });
    
    FaaatPotatoF 1 Reply Last reply
    0
    • FaaatPotatoF Offline
      FaaatPotatoF Offline
      FaaatPotato
      replied to DreamWasFucked on last edited by
      #2

      @skidma

      module.on('packet', function(e) {
           packet = e.getPacket();
           if (canClimb && packet instanceof C03PacketPlayer) {
               packet.onGround = true;
           }
      

      is this working with b73?

      DreamWasFuckedD 1 Reply Last reply
      0
      • DreamWasFuckedD Offline
        DreamWasFuckedD Offline
        DreamWasFucked
        replied to FaaatPotato on last edited by
        #3

        @faaatpotato I dont think so

        1 Reply Last reply
        0

        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
        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups