<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Better AutoJump 1.2(I don&#x27;t know why I made this js)]]></title><description><![CDATA[<pre><code>var scriptName = "BHop";
var scriptAuthor = "By Cookie";
var scriptVersion = 1.2;

script.import("lib/glFunctions.js");
script.import("lib/systemFunctions.js")

function BHopModule() {
   var Message = value.createBoolean("Message", false);
    this.getName = function() {
        return "BunnyHop";
    }

    this.getDescription = function() {
        return "yes";
    }

    this.getCategory = function() {
        return "Movement";
    }

    this.onEnable = function() {
    }

	this.onUpdate = function() {
     if(mc.thePlayer.movementInput.moveForward != 0 || mc.thePlayer.movementInput.moveStrafe != 0) {
        if (mc.thePlayer.onGround &amp;&amp; mc.gameSettings.keyBindJump.isKeyDown() == false &amp;&amp; !(mc.thePlayer.isInWater() || mc.thePlayer.isInLava() || mc.thePlayer.isOnLadder() || mc.thePlayer.isInWeb)) {
            mc.thePlayer.jump();
			if(Message.get() == true){
            chat.print("§c[§6AutoJump§c] §4Jumped " + "MotionY:" +(mc.thePlayer.motionY.toFixed(5).toString()));
			}			
		}			
	 }
	}

     this.onMotion = function() {
    }
    this.onDisable = function() {
        mc.timer.timerSpeed = 1;
    }
		this.addValues = function(values) {
		values.add(Message);
    }
}

var bhopModule = new BHopModule();
var bhopModuleClient;

function onEnable() {
    bhopModuleClient = moduleManager.registerModule(bhopModule);
}

function onDisable() {
    moduleManager.unregisterModule(bhopModuleClient);
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/topic/2640/better-autojump-1-2-i-don-t-know-why-i-made-this-js</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 23:52:36 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/2640.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 12 Jul 2021 10:18:56 GMT</pubDate><ttl>60</ttl></channel></rss>