Java Aimbot


SUBMITTED BY: Mothers

DATE: June 15, 2016, 6:57 p.m.

FORMAT: Text only

SIZE: 710 Bytes

HITS: 899

  1. public static void ClickAim()
  2. {
  3. try
  4. {
  5. for(int i = 0; i < mc.theWorld.loadedEntityList.size(); i++)
  6. {
  7. Entity e = (Entity) mc.theWorld.getLoadedEntityList().get(i);
  8. if(e instanceof EntityPlayer && killPlayers)
  9. {
  10. if(e != mc.thePlayer && !e.isDead && mc.thePlayer.canEntityBeSeen(e) && mc.thePlayer.getDistanceToEntity(e) < killRange && e instanceof EntityPlayer)
  11. {
  12. mc.thePlayer.swingItem();
  13. mc.thePlayer.sendQueue.addToSendQueue(new Packet18Animation(mc.thePlayer, 1));
  14. mc.playerController.attackEntity(mc.thePlayer, e);
  15. break;
  16. }
  17. }
  18. }catch(Exception e){}
  19. }

comments powered by Disqus