if(OrionGui.killaura) //replace with your boolean location
{
for (int loop = 0; loop < mc.theWorld.loadedEntityList.size(); loop++)
{
Entity entity = (Entity)mc.theWorld.loadedEntityList.get(loop);
{
if(entity instanceof EntityLiving && entity != mc.THEPLAYER && !entity.isDead && mc.THEPLAYER.getDistanceSqToEntity(entity) <= 25 && mc.THEPLAYER.canEntityBeSeen(entity))
{
mc.thePlayer.faceEntity(entity, 200F, 200F);
super.swingItem(); // swings hand
}
}
}
}
public void sendMotionUpdates()
