Vulcan Highjump
-
A really badly made Vulcan Highjump
///api_version=2
var script = registerScript({
name: "VulcanHigh",
version: "1.0",
authors: ["Razzy"]
});var hasJumped = false;
script.registerModule({
name: "VulcanLong",
description: "Vulcan Long Mode",
category: "Movement"
}, function (module) {
module.on("update", function () {
if (!hasJumped && mc.thePlayer.onGround) {
mc.thePlayer.motionY = 0.8995931202;
hasJumped = true;
} else if (hasJumped) {
module.setEnabled(false);
}
});
});