DOESN'T WORK - Work on nofall

This commit is contained in:
S-B99 2019-10-23 17:12:10 -04:00
parent 637ac2ecd3
commit 3f416a2154
2 changed files with 9 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import net.minecraft.init.Items;
* Created by S-B99 on 23/10/2019
*/
@Module.Info(category = Module.Category.PLAYER, description = "Removes delay when holding right click", name = "FastUse")
public class FastUse
public class Fastuse
extends Module
{
@EventHandler

View File

@ -62,8 +62,14 @@ public class NoFall extends Module {
* e.printStackTrace();
*}
**/
//mc.player.rotationPitch = 90;
//mc.playerController.processRightClick(mc.player, mc.world, hand);
try {
wait(300);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
mc.player.rotationPitch = 90;
mc.playerController.processRightClick(mc.player, mc.world, hand);
}
}
}