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. [script] aac 4 longjump

[script] aac 4 longjump

Scheduled Pinned Locked Moved Scripts
30 Posts 10 Posters 1.5k 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.
  • END3R1355E Offline
    END3R1355E Offline
    END3R1355
    wrote on last edited by END3R1355
    #1

    AAC4LongJump.js

    /// api_version=2
    var script = registerScript({
        name: "AAC4LongJump",
        version: "1.0.0",
        authors: ["ENDER1355"] 
    });
    
    script.registerModule({
        name: "AAC4LongJump",
        category: "Movement", 
        description: "",
    }, function (module) {
    	module.on("enable", function() {
    		
    	});
        module.on("update", function() {
    		mc.thePlayer.speedInAir = 0.03;
    		mc.thePlayer.jumpMovementFactor = 0.016;
    		mc.timer.timerSpeed = 0.6;
    		if (mc.thePlayer.onGround = true) {
    			mc.thePlayer.jump();
    		}
    		});
    	module.on('disable', function() {
    		mc.timer.timerSpeed = 1;
    		mc.thePlayer.jumpMovementFactor = 0.02;
    		mc.thePlayer.speedInAir = 0.02;
        });
    });
    
    FaaatPotatoF 1 Reply Last reply
    0
    • FaaatPotatoF Offline
      FaaatPotatoF Offline
      FaaatPotato
      replied to END3R1355 on last edited by
      #2

      @e-nder1355

      /// api_version=2
      var script = registerScript({
          name: "VHighJump",
          version: "1.0.0",
          authors: ["ENDER1337"] // new name lol
      });
      
      script.registerModule({
          name: "VHighJump",
          category: "Movement", 
          description: "",
          settings: {
               aj: Setting.boolean({
               name: "AutoJump",
               default: true
          }),
      }
      }, function (module) {
      	module.on("enable", function() {
      		
      	});
          module.on("update", function() {
      		mc.thePlayer.speedInAir = 0.045;
      		mc.thePlayer.jumpMovementFactor = 0.01;
      		mc.timer.timerSpeed = 0.6;
      
      		if (mc.thePlayer.onGround = true && module.settings.aj.get()) {
      			mc.thePlayer.motionY = 0.06;
      			mc.thePlayer.jump();
      		}
      		});
      	module.on('disable', function() {
      		mc.timer.timerSpeed = 1;
      		mc.thePlayer.jumpMovementFactor = 0.02;
      		mc.thePlayer.speedInAir = 0.02;
          });
      });
      

      now it is sir undefined undefined undefined

      1 Reply Last reply
      0
      • A Offline
        A Offline
        Aftery
        wrote on last edited by
        #3
        This post is deleted!
        ? O 2 Replies Last reply
        1
        • V Offline
          V Offline
          vinci
          wrote on last edited by vinci
          #4

          I think you can't use "boolean = true" in an if statement, the correct way to use it is "if(boolean)" or "if(boolean==true)" or even "if(boolean!=false)"
          "if(boolean = true)" is the same as "if(true)"
          please correct me if I am wrong

          A 1 Reply Last reply
          0
          • ? Offline
            ? Offline
            A Former User
            replied to Aftery on last edited by
            #5

            @aftery ![alt text](42cd905c-0137-43ad-b3b8-f5ad7a41fd6f-image.png image url)

            1 Reply Last reply
            0
            • A Offline
              A Offline
              Aftery
              replied to vinci on last edited by
              #6
              This post is deleted!
              END3R1355E V ? 3 Replies Last reply
              1
              • END3R1355E Offline
                END3R1355E Offline
                END3R1355
                replied to Aftery on last edited by
                #7

                @aftery k wtf happened here

                exit scammedE FaaatPotatoF 2 Replies Last reply
                0
                • exit scammedE Offline
                  exit scammedE Offline
                  exit scammed
                  replied to END3R1355 on last edited by
                  #8
                  This post is deleted!
                  1 Reply Last reply
                  0
                  • END3R1355E Offline
                    END3R1355E Offline
                    END3R1355
                    wrote on last edited by
                    #9

                    @WYSI dont ghost ping thx

                    1 Reply Last reply
                    0
                    • FaaatPotatoF Offline
                      FaaatPotatoF Offline
                      FaaatPotato
                      replied to END3R1355 on last edited by
                      #10

                      @e-nder1355 just another toxic community moment undefined

                      END3R1355E 1 Reply Last reply
                      0
                      • END3R1355E Offline
                        END3R1355E Offline
                        END3R1355
                        replied to FaaatPotato on last edited by
                        #11

                        @faaatpotato im gonna update the script with autojump option + bypass

                        1 Reply Last reply
                        0
                        • END3R1355E Offline
                          END3R1355E Offline
                          END3R1355
                          wrote on last edited by END3R1355
                          #12

                          undefined undefined

                          Updated the script, still no autojump but now it might work even if you got flagged

                          Changed script name from VHighJump to AAC4LongJump

                          undefined undefined

                          1 Reply Last reply
                          0
                          • END3R1355E Offline
                            END3R1355E Offline
                            END3R1355
                            wrote on last edited by
                            #13

                            When AutoJump?

                            idk

                            1 Reply Last reply
                            0
                            • V Offline
                              V Offline
                              vinci
                              replied to Aftery on last edited by
                              #14

                              @aftery said in [script] aac 4 longjump:

                              is equal to

                              boolean = true;
                              code();
                              

                              oh yes, you're right, but it also means if(true) and boolean = true at the same time

                              1 Reply Last reply
                              0
                              • ? Offline
                                ? Offline
                                A Former User
                                replied to Aftery on last edited by
                                #15

                                @aftery its just another way to print the variable....

                                1 Reply Last reply
                                0
                                • O Offline
                                  O Offline
                                  ohgodskib
                                  replied to Aftery on last edited by
                                  #16

                                  @aftery asd was DEFINED to true in the if statement

                                  ? 1 Reply Last reply
                                  0
                                  • ? Offline
                                    ? Offline
                                    A Former User
                                    replied to ohgodskib on last edited by
                                    #17
                                    This post is deleted!
                                    O 1 Reply Last reply
                                    1
                                    • O Offline
                                      O Offline
                                      ohgodskib
                                      replied to A Former User on last edited by
                                      #18

                                      @ali00035 houw?

                                      ? 1 Reply Last reply
                                      0
                                      • ? Offline
                                        ? Offline
                                        A Former User
                                        replied to ohgodskib on last edited by
                                        #19

                                        @banana1221 just upvote my posts

                                        O 2 Replies Last reply
                                        0
                                        • O Offline
                                          O Offline
                                          ohgodskib
                                          replied to A Former User on last edited by
                                          #20

                                          @ali00035 not gonna do it >:)

                                          ? 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