Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. EnityClientPlayerMCP.java
  2. ----------------------------
  3.  
  4. if(vars.fly) //if it's on
  5. {
  6. vars.Chat("Flying Enabled");//read further, this is an awesome shortcut
  7. }
  8. if(!vars.fly) //! means fly is off
  9. {
  10. vars.Chat("Fly Disabled");//read further, this is an awesome shortcut
  11.  
  12. GUIINGAME.JAVA
  13. -------------------------
  14. if(vars.fly) //if it's on
  15. {
  16. mc.thePlayer.capabilities.isFlying = true;
  17. }
  18. if(!vars.fly) //! means fly is off
  19. {
  20. mc.thePlayer.capabilities.isFlying = false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement