Advertisement
Guest User

Untitled

a guest
Oct 8th, 2020
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package Marshy.module.modules.Movement;
  2.  
  3. import org.lwjgl.input.Keyboard;
  4.  
  5. import Marshy.module.Category;
  6. import Marshy.module.Module;
  7.  
  8. public class RedeskyFly extends Module{
  9.  
  10. public RedeskyFly() {
  11. super("Redesky fly ", Keyboard.KEY_NONE, Category.Movement, "redesky fly lol");
  12. }
  13. public void onUpdate() {
  14. mc.thePlayer.capabilities.isFlying = true;
  15. mc.timer.timerSpeed = 1.3F;
  16. }
  17. public void onDisable() {
  18. mc.thePlayer.capabilities.isFlying = false;
  19. mc.timer.timerSpeed = 1.0F;
  20. }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement