Portl

Untitled

Oct 3rd, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. package me.fulpix.plastic.utils;
  2.  
  3. import net.minecraft.client.Minecraft;
  4.  
  5. public class PlayerUtils {
  6.  
  7. public static boolean aacdamage = false;
  8. public static double aacdamagevalue;
  9.  
  10. public static void damagePlayer(double value) {
  11. aacdamage = true;
  12. aacdamagevalue = value + 2.85D;
  13. Minecraft.getMinecraft().thePlayer.moveForward++;
  14. Minecraft.getMinecraft().thePlayer.moveForward--;
  15. Minecraft.getMinecraft().thePlayer.moveStrafing--;
  16. Minecraft.getMinecraft().thePlayer.moveStrafing++;
  17. Minecraft.getMinecraft().thePlayer.jump();
  18.  
  19. }
  20. }
Add Comment
Please, Sign In to add comment