So, everytime i use MoveUtil & reload, it doesnt do anything. Heres the script:
var script = registerScript({
name: 'NCPSpeed',
version: '1.3.3.7',
authors: ["Kellohylly"]
});
var MoveUtils = Java.type("net.ccbluex.liquidbounce.utils.MovementUtils");
script.registerModule({
name: 'NCPSpeed',
category: 'Fun',
description: '',
tag: ''
}, function (module) {
module.on('disable', function() {
mc.timer.timerSpeed = 1;
});
module.on('motion', function(e) {
if (mc.thePlayer.onGround) {
MoveUtils.strafe(0.485);
mc.thePlayer.jump();
}
});
});
It would be nice if someone would know how to fix this.