double radian = Math.toRadians(angle - 90);
int x1 = -(int) (Math.sin(radian) * 600);
int y1 = (int) (Math.cos(radian) * 600);
Location flyLoc = GeoEngine.moveCheck(player.getX(), player.getY(), player.getZ(), player.getX() + x1, player.getY() + y1, player.getReflection().getGeoIndex());
player.setLoc(flyLoc);
player.broadcastPacket(new FlyToLocation(player, flyLoc, FlyType.THROW_HORIZONTAL));
}
}
for(int i = 0; i < _crystaline.length; i++)
{
L2NpcInstance npc = _crystaline[i];