Creative fly
-
Here is my creative fly (tell me if it works, the module name is "test")
Code :/// api_version=2 var script = registerScript({ name: "idk", version; "1.0.0", authors; ["idk"] }); script.registerModule({ name: "test" category: "Fun", description: "idk" }, function (module) { module.on("update", function() { mc.thePlayer.capabilities.isFlying = true; }); module.on("enable", function (){ mc.thePlayer.addVelocity(0, 0.2, 0); }); module.on("disable", function() { mc.thePlayer.capabilities.isFlying = false; mc.timer.timerSpeed = 1 }); });
-
@gabriel said in Creative fly:
Code :
/// api_version=2 var script = registerScript({ name: "idk", version: "1.0.0", authors: ["idk"] }); script.registerModule({ name: "test", category: "Fun", description: "idk" }, function (module) { module.on("update", function() { mc.thePlayer.capabilities.isFlying = true; }); module.on("enable", function () { //mc.thePlayer.addVelocity(0, 0.2, 0); }); module.on("disable", function() { mc.thePlayer.capabilities.isFlying = false; mc.timer.timerSpeed = 1 }); });
Fixed(maybe)
-
@co丶dynamic said in Creative fly:
/// api_version=2
var script = registerScript({
name: "idk",
version: "1.0.0",
authors: ["idk"]
});script.registerModule({
name: "test",
category: "Fun",
description: "idk"
}, function (module) {
module.on("update", function() {
mc.thePlayer.capabilities.isFlying = true;
});
module.on("enable", function () {
//mc.thePlayer.addVelocity(0, 0.2, 0);
});
module.on("disable", function() {
mc.thePlayer.capabilities.isFlying = false;
mc.timer.timerSpeed = 1
});
});/// api_version=2 var script = registerScript({ name: "l", version: "-1", authors: ["l"] }); script.registerModule({ name: "why", category: "Fun", description: "useless fly put .fly mode smoothvanilla on the chat and .t fly for better experience" }, function (u) { u.on("update", function() { mc.thePlayer.capabilities.isFlying = true; }); u.on("disable", function() { mc.thePlayer.capabilities.isFlying = false; }); });
-
@skiddermaster412 oh I nearly forget the smoothvanilla fly
-
@co丶dynamic smoothvanilla is not smooth