[request] scaffold helper
-
I had a script called "ScaffoldHelper" but i cant find on the forums, it was a addon for scaffold that changed head movement, can someone give it if they have it
-
@23-hours what is that script, what does it do? like straight 90* head snap to face the block?
-
@mems kinda yea it snapped the head to look at the block, and it didnt do the side walk like normal scaffold rotations
-
@23-hours and why would you need that script anyways? it will most likely flag for improper look at blocks which will lead you to a kick.
-
@mems found it, its a aac4 scaffold rotations, it dosent flag and it fixes everything about redeskys scaffold its very good
-
This post is deleted! -
@23-hours var scriptName = 'ScaffoldHelper'
var scriptAuthor = 'As?One'
var scriptVersion = 1.0function ScaffoldAddon() {
var RotationUtils = Java.type('net.ccbluex.liquidbounce.utils.RotationUtils')
var Rotation = Java.type('net.ccbluex.liquidbounce.utils.Rotation')
var Scaffold = moduleManager.getModule('Scaffold')
function isMoving() {
return mc.thePlayer.movementInput.moveForward || mc.thePlayer.movementInput.moveStrafe;
}
this.getName = function () {
return 'ScaffoldHelper'
}this.getDescription = function () { return 'ScaffoldAddon By As?One' } this.getCategory = function () { return 'Fun' } this.onUpdate = function () { if(Scaffold.getState()) { if(isMoving()){ Scaffold.getValue('Rotations').set(false) DiffYaw = 0 if(mc.thePlayer.movementInput.moveForward > 0) DiffYaw = 180 if(mc.thePlayer.movementInput.moveForward < 0) DiffYaw = 0 RotationUtils.setTargetRotation(new Rotation(mc.thePlayer.rotationYaw + DiffYaw, 86)) }else{ Scaffold.getValue('Rotations').set(true) } } }
}
var ScaffoldAddon = new ScaffoldAddon()
var ScaffoldAddonClientfunction onEnable() {
ScaffoldAddonClient = moduleManager.registerModule(ScaffoldAddon)
}function onDisable() {
moduleManager.unregisterModule(ScaffoldAddonClient)
} -
@23-hours said in [request] scaffold helper:
found it
Next time please take a look at the above posts before posting
-
@ali00035 And? I threw in the code for those who might be looking.
-
@sugarafk Oh, well, sorry.
-
@sugarafk alr