From 823b08d86c1e817170fcb63164ca2664ef77cdb4 Mon Sep 17 00:00:00 2001 From: bash Date: Sat, 9 May 2026 21:18:52 +0200 Subject: [PATCH] fix(DB/Travel): Use INSERT IGNORE in cmangos import to skip duplicate keys --- ...5_09_02_travelnode_link_cmangos_import.sql | 14 +- ...5_09_03_travelnode_path_cmangos_import.sql | 288 +++++++++--------- 2 files changed, 151 insertions(+), 151 deletions(-) diff --git a/data/sql/playerbots/updates/2026_05_09_02_travelnode_link_cmangos_import.sql b/data/sql/playerbots/updates/2026_05_09_02_travelnode_link_cmangos_import.sql index 63f5c548f..4b050a9bc 100644 --- a/data/sql/playerbots/updates/2026_05_09_02_travelnode_link_cmangos_import.sql +++ b/data/sql/playerbots/updates/2026_05_09_02_travelnode_link_cmangos_import.sql @@ -2,7 +2,7 @@ -- 3067 new links involving new nodes (mapped cmangos IDs to our IDs) -- skipped: 10521 existing-to-existing, 0 unmapped, 0 dup-with-ours -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (3781, 3142, 1, 0, 478.0510, 0.0000, 0.0000, 1, 58, 0, 1), (3781, 2919, 1, 0, 388.8870, 0.0000, 0.0000, 1, 0, 60, 0), (3781, 3406, 1, 0, 689.2380, 0.0000, 0.0000, 1, 60, 0, 0), @@ -503,7 +503,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (3873, 3874, 1, 0, 37.8850, 0.0000, 0.0000, 1, 75, 0, 0), (2024, 3874, 3, 0, 5.6900, 0.0000, 0.1000, 1, 0, 0, 0), (3874, 3872, 1, 0, 38.5046, 0.0000, 0.0000, 1, 75, 0, 0); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (3874, 3873, 1, 0, 38.0271, 0.0000, 0.0000, 1, 75, 0, 0), (3874, 2024, 3, 0, 5.6900, 0.0000, 0.1000, 1, 0, 0, 0), (2001, 3789, 1, 0, 36.0523, 0.0000, 0.0000, 1, 0, 72, 0), @@ -1004,7 +1004,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (95, 4074, 1, 0, 95.1995, 0.0000, 0.0000, 1, 0, 0, 0), (839, 4074, 1, 0, 110.5850, 0.0000, 0.0000, 1, 78, 0, 0), (839, 4074, 1, 0, 122.1500, 0.0000, 0.0000, 1, 78, 0, 0); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (887, 4060, 1, 0, 73.7092, 0.0000, 0.0000, 1, 0, 0, 0), (3084, 3791, 1, 0, 306.1580, 0.0000, 0.0000, 1, 34, 0, 0), (3963, 606, 1, 0, 1305.9000, 0.0000, 0.0000, 1, 26, 65, 25), @@ -1505,7 +1505,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (4058, 4259, 1, 0, 119.9180, 0.0000, 0.0000, 1, 0, 5, 83), (4059, 3716, 1, 0, 59.9400, 0.0000, 0.0000, 1, 60, 75, 80), (4059, 3743, 1, 0, 155.4060, 0.0000, 0.0000, 1, 60, 75, 80); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (4059, 4323, 1, 0, 83.2041, 0.0000, 0.0000, 1, 60, 75, 80), (4060, 887, 1, 0, 73.5462, 0.0000, 0.0000, 1, 0, 0, 0), (4060, 885, 1, 0, 385.7960, 0.0000, 0.0000, 1, 83, 0, 0), @@ -2006,7 +2006,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (2527, 4046, 1, 0, 495.1070, 0.0000, 0.0000, 1, 75, 21, 18), (3119, 4071, 1, 0, 700.1810, 0.0000, 0.0000, 1, 14, 83, 0), (3119, 4180, 1, 0, 603.6170, 0.0000, 0.0000, 1, 23, 0, 0); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (3518, 4072, 1, 0, 2409.5600, 0.0000, 0.0000, 1, 75, 0, 83), (248, 4046, 1, 0, 480.1590, 0.0000, 0.0000, 1, 75, 15, 18), (1996, 4181, 3, 0, 17.9977, 0.0000, 0.1000, 1, 0, 0, 0), @@ -2507,7 +2507,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (232, 4075, 1, 0, 13.3127, 0.0000, 0.0000, 1, 78, 0, 0), (1765, 4079, 1, 0, 253.8430, 0.0000, 0.0000, 1, 0, 15, 0), (451, 4172, 1, 0, 531.9680, 0.0000, 0.0000, 1, 8, 75, 0); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (2340, 4155, 1, 0, 103.2110, 0.0000, 0.0000, 1, 0, 75, 0), (65, 4007, 1, 0, 71.9587, 0.0000, 0.0000, 1, 0, 0, 0), (3348, 4124, 1, 0, 132.8170, 0.0000, 0.0000, 1, 0, 65, 0), @@ -3008,7 +3008,7 @@ INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `obje (4381, 447, 1, 0, 656.0880, 0.0000, 0.0000, 1, 57, 0, 0), (4382, 3333, 1, 0, 650.6650, 0.0000, 0.0000, 1, 17, 0, 0), (4382, 1663, 1, 0, 293.0220, 0.0000, 0.0000, 1, 17, 0, 0); -INSERT INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_link` (`node_id`, `to_node_id`, `type`, `object`, `distance`, `swim_distance`, `extra_cost`, `calculated`, `max_creature_0`, `max_creature_1`, `max_creature_2`) VALUES (4383, 2513, 1, 0, 411.3130, 31.4360, 0.0000, 1, 21, 0, 0), (4383, 4373, 1, 0, 33.3823, 33.2823, 0.0000, 1, 21, 0, 0), (4383, 4391, 1, 0, 10.7250, 3.7305, 0.0000, 1, 21, 0, 0), diff --git a/data/sql/playerbots/updates/2026_05_09_03_travelnode_path_cmangos_import.sql b/data/sql/playerbots/updates/2026_05_09_03_travelnode_path_cmangos_import.sql index e1c0fa354..2b5732a40 100644 --- a/data/sql/playerbots/updates/2026_05_09_03_travelnode_path_cmangos_import.sql +++ b/data/sql/playerbots/updates/2026_05_09_03_travelnode_path_cmangos_import.sql @@ -2,7 +2,7 @@ -- 143751 new path waypoints belonging to links involving new nodes -- skipped: 702891 existing-to-existing, 0 unmapped, 0 dup-with-ours -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3781, 3142, 0, 0, 3476.3600, -4493.3600, 137.4900), (3781, 3142, 1, 0, 3473.5400, -4490.5200, 138.2710), (3781, 3142, 2, 0, 3467.9100, -4484.8400, 138.2290), @@ -1003,7 +1003,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1746, 3942, 76, 1, -8256.3600, 1565.6600, -4.1841), (1746, 3942, 77, 1, -8256.0100, 1557.6600, -3.5854), (1746, 3942, 78, 1, -8256.0000, 1557.3300, -4.0607); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1746, 3942, 79, 1, -8256.0000, 1549.3300, -3.7607), (1746, 3942, 80, 1, -8256.0000, 1541.3300, -3.9607), (1746, 3942, 81, 1, -8256.0000, 1533.3300, -3.8940), @@ -2004,7 +2004,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3387, 3792, 19, 0, 361.6040, -916.3640, 117.0920), (3387, 3792, 20, 0, 364.5590, -919.0600, 117.2160), (3387, 3792, 21, 0, 372.1400, -921.6170, 118.0050); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3387, 3792, 22, 0, 379.7200, -924.1730, 118.5330), (3387, 3792, 23, 0, 387.3000, -926.7300, 118.8820), (3387, 3792, 24, 0, 394.8810, -929.2870, 118.9000), @@ -3005,7 +3005,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1717, 3963, 140, 0, -215.2840, -1431.2600, 104.6310), (1717, 3963, 141, 0, -222.4720, -1434.7800, 104.4210), (1717, 3963, 142, 0, -229.6600, -1438.2900, 104.1020); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1717, 3963, 143, 0, -236.8480, -1441.8000, 103.6010), (1717, 3963, 144, 0, -244.0360, -1445.3100, 102.5870), (1717, 3963, 145, 0, -251.2240, -1448.8200, 99.9516), @@ -4006,7 +4006,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3796, 2512, 66, 530, 2964.0500, 4033.6900, 150.2680), (3796, 2512, 67, 530, 2964.6200, 4037.6500, 152.6930), (3796, 2512, 68, 530, 2964.9800, 4045.6400, 153.2320); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3796, 2512, 69, 530, 2965.3300, 4053.3300, 153.3330), (3796, 2512, 70, 530, 2959.6400, 4058.9500, 155.2470), (3796, 2512, 71, 530, 2953.9400, 4064.5700, 156.6610), @@ -5007,7 +5007,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2513, 4383, 24, 1, 4051.9600, 972.9900, 0.8230), (2513, 4383, 25, 1, 4053.2600, 980.8840, 1.0595), (2513, 4383, 26, 1, 4053.9100, 984.8310, 1.1438); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2513, 4383, 27, 1, 4061.9000, 984.3900, 2.7755), (2513, 4383, 28, 1, 4069.8800, 983.9500, 2.9066), (2513, 4383, 29, 1, 4077.8700, 983.5090, 2.3383), @@ -6008,7 +6008,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3802, 1006, 5, 556, -142.2490, 173.8020, 2.5356), (3802, 1006, 6, 556, -144.8270, 173.5570, 1.7687), (3802, 903, 0, 556, -102.4290, 177.5860, 0.0932); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3802, 903, 1, 556, -95.7675, 173.1560, 0.6689), (3802, 903, 2, 556, -89.1064, 168.7250, 0.7669), (3802, 903, 3, 556, -82.4454, 164.2940, 1.4777), @@ -7009,7 +7009,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3804, 1708, 28, 329, 3554.9800, -3437.1400, 137.5360), (3804, 1708, 29, 329, 3548.5400, -3432.4000, 137.0790), (3804, 1708, 30, 329, 3542.1000, -3427.6500, 136.7080); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3804, 1708, 31, 329, 3538.8800, -3425.2800, 136.5230), (3804, 1708, 32, 329, 3532.4400, -3420.5300, 136.4800), (3804, 1708, 33, 329, 3526.0000, -3415.7900, 136.6930), @@ -8010,7 +8010,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3807, 1319, 23, 229, -171.3050, -354.8000, 65.0659), (3807, 1319, 24, 229, -172.1610, -346.8460, 65.0659), (3807, 1319, 25, 229, -173.0180, -338.8920, 65.0659); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3807, 1319, 26, 229, -173.8750, -330.9380, 65.0659), (3807, 1319, 27, 229, -174.3030, -326.9610, 65.0659), (3807, 1319, 28, 229, -181.8800, -329.5270, 65.1134), @@ -9011,7 +9011,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3809, 316, 67, 530, 3443.9200, 4797.8400, 261.1670), (3809, 316, 68, 530, 3441.0900, 4798.3900, 260.0860), (3809, 2761, 0, 530, 3279.9000, 4640.3600, 216.5280); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3809, 2761, 1, 530, 3285.7800, 4634.9300, 217.2110), (3809, 2761, 2, 530, 3291.6600, 4629.5100, 214.4300), (3809, 2761, 3, 530, 3297.5400, 4624.0800, 214.7400), @@ -10012,7 +10012,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (778, 4294, 5, 571, 7053.4200, -113.6990, 800.2890), (778, 4294, 6, 571, 7051.1800, -110.3850, 802.4610), (778, 4294, 7, 571, 7046.7000, -103.7550, 805.6350); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (778, 4294, 8, 571, 7042.2300, -97.1263, 806.0690), (778, 4294, 9, 571, 7037.7500, -90.4972, 807.2720), (778, 4294, 10, 571, 7033.2700, -83.8681, 809.0640), @@ -11013,7 +11013,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2587, 3814, 70, 0, -8021.3300, -853.8670, 151.1690), (2587, 3814, 71, 0, -8016.9300, -860.0100, 151.8380), (2587, 3814, 72, 0, -8012.5200, -866.6870, 152.2030); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2587, 3814, 73, 0, -8009.3400, -874.0290, 151.7730), (2587, 3814, 74, 0, -8007.7500, -877.7000, 150.6540), (2587, 3814, 75, 0, -8006.5200, -881.5070, 148.8020), @@ -12014,7 +12014,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3816, 3031, 68, 0, -9779.1100, 360.8400, 42.1429), (3816, 3031, 69, 0, -9786.7500, 363.2250, 41.3208), (3816, 3031, 70, 0, -9794.3900, 365.6100, 41.6161); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3816, 3031, 71, 0, -9802.0200, 367.9950, 40.3456), (3816, 3031, 72, 0, -9809.6600, 370.3790, 39.9486), (3816, 3031, 73, 0, -9817.3000, 372.7640, 39.5746), @@ -13015,7 +13015,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3821, 4184, 8, 547, -72.5878, -260.0490, -0.5509), (3821, 4184, 9, 547, -74.4040, -252.2580, -1.4052), (3821, 4184, 10, 547, -76.2201, -244.4670, -2.5695); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3821, 4184, 11, 547, -76.5960, -236.4760, -2.7349), (3821, 4184, 12, 547, -76.9720, -228.4850, -2.4641), (3821, 4184, 13, 547, -77.3479, -220.4930, -2.0596), @@ -14016,7 +14016,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3827, 2870, 97, 571, 5216.7200, -163.8150, 188.6510), (3827, 2870, 98, 571, 5212.5200, -170.6210, 185.0760), (3827, 2870, 99, 571, 5208.3100, -177.4270, 183.0270); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3827, 2870, 100, 571, 5204.1100, -184.2330, 185.1770), (3827, 2870, 101, 571, 5199.9000, -191.0390, 188.4630), (3827, 2870, 102, 571, 5195.7000, -197.8450, 189.3580), @@ -15017,7 +15017,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3828, 2975, 220, 1, -8067.4500, -3856.6100, 11.3955), (3828, 2975, 221, 1, -8067.4300, -3852.6100, 11.6965), (3828, 2975, 222, 1, -8067.4100, -3848.6100, 12.0686); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3828, 2975, 223, 1, -8067.3900, -3844.6100, 12.7336), (3828, 2975, 224, 1, -8067.3700, -3840.6100, 13.4360), (3828, 2975, 225, 1, -8067.3500, -3836.6100, 14.1399), @@ -16018,7 +16018,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1840, 4323, 14, 571, 5823.6700, 575.6500, 650.7490), (1840, 4323, 15, 571, 5826.4200, 578.5580, 650.8990), (1840, 4323, 16, 571, 5831.2000, 584.9720, 651.2760); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1840, 4323, 17, 571, 5835.9800, 591.3860, 651.3180), (1840, 4323, 18, 571, 5840.7600, 597.8000, 651.4430), (1840, 4323, 19, 571, 5845.5400, 604.2140, 651.4100), @@ -17019,7 +17019,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3848, 4275, 45, 1, 9768.9400, 2530.0700, 1321.2400), (3848, 4275, 46, 1, 9760.9400, 2529.7900, 1324.1400), (3848, 4275, 47, 1, 9752.9500, 2529.5000, 1327.0400); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3848, 4275, 48, 1, 9744.9500, 2529.2200, 1329.8800), (3848, 4275, 49, 1, 9736.9600, 2528.9400, 1332.6900), (3848, 4275, 50, 1, 9728.9600, 2528.6500, 1335.4900), @@ -18020,7 +18020,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2112, 3852, 12, 0, -11154.3000, -2034.2300, 47.7258), (2112, 3852, 13, 0, -11150.4000, -2033.4400, 48.2059), (2112, 3852, 14, 0, -11146.5000, -2032.6600, 47.6805); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2112, 3852, 15, 0, -11142.6000, -2031.8700, 47.5932), (2112, 3852, 16, 0, -11139.4000, -2029.3800, 47.6136), (2112, 3852, 17, 0, -11133.2000, -2024.4100, 48.1363), @@ -19021,7 +19021,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1729, 4088, 36, 429, -44.8744, 423.5110, -2.9515), (1729, 4088, 37, 429, -45.7802, 431.4600, -2.9515), (1729, 4088, 38, 429, -46.6860, 439.4080, -2.9515); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1729, 4088, 39, 429, -47.5918, 447.3570, -2.6631), (1729, 4088, 40, 429, -48.4976, 455.3050, -2.9515), (1729, 4088, 41, 429, -49.4034, 463.2540, -2.9515), @@ -20022,7 +20022,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3863, 3862, 5, 571, 263.1630, -5919.2500, 169.2860), (3863, 3862, 6, 571, 263.1630, -5919.2500, 171.3030), (3863, 3862, 7, 571, 263.1630, -5919.2500, 173.3200); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3863, 3862, 8, 571, 263.1630, -5919.2500, 173.3200), (3864, 3862, 0, 571, 275.2000, -5918.1300, 166.4950), (3864, 3862, 1, 571, 263.1630, -5919.2500, 167.2690), @@ -21023,7 +21023,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2001, 3949, 48, 571, 4160.0600, -3172.5000, 285.2340), (2001, 3949, 49, 571, 4152.2700, -3174.3500, 284.0790), (2001, 3949, 50, 571, 4148.3800, -3175.2700, 283.6130); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2001, 3949, 51, 571, 4140.6000, -3177.1200, 282.7300), (2001, 3949, 52, 571, 4137.4800, -3179.6200, 282.4950), (2001, 3949, 53, 571, 4134.3600, -3182.1300, 282.1690), @@ -22024,7 +22024,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2038, 3885, 1, 571, 700.7670, -3823.5000, 268.2670), (2038, 3885, 2, 571, 700.6210, -3822.5200, 268.1480), (2038, 3885, 3, 571, 700.4870, -3821.5400, 268.0540); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2038, 3885, 4, 571, 700.3610, -3820.5600, 267.9770), (2038, 3885, 5, 571, 700.2420, -3819.5700, 267.9150), (2038, 3885, 6, 571, 700.1280, -3818.5800, 267.8630), @@ -23025,7 +23025,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (844, 4274, 57, 530, -3559.9900, 577.4480, 12.2526), (844, 4274, 58, 530, -3560.5200, 583.3530, 10.9431), (3891, 626, 0, 530, -3961.6400, -13931.2000, 100.6150); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3891, 626, 1, 530, -3964.0600, -13928.0000, 101.3800), (3891, 626, 2, 530, -3966.4800, -13924.8000, 101.2600), (3891, 626, 3, 530, -3968.9000, -13921.6000, 100.9030), @@ -24026,7 +24026,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3893, 3335, 67, 571, 4702.8000, -5.2528, 67.4502), (3893, 3335, 68, 571, 4705.4700, 2.2906, 66.7846), (3893, 3335, 69, 571, 4712.4200, 6.2513, 67.8299); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3893, 3335, 70, 571, 4719.3700, 10.2124, 68.4769), (3893, 3335, 71, 571, 4723.0500, 11.7756, 69.0594), (3893, 3335, 72, 571, 4730.4100, 14.9017, 70.4811), @@ -25027,7 +25027,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2389, 3895, 59, 571, 3602.3900, -778.2770, 169.2670), (2389, 3895, 60, 571, 3606.3900, -778.0820, 166.5740), (2389, 3895, 61, 571, 3610.3200, -777.3740, 165.0420); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2389, 3895, 62, 571, 3609.1600, -769.4590, 165.0420), (2389, 3895, 63, 571, 3608.5800, -765.5010, 165.0420), (2389, 3895, 64, 571, 3600.6300, -766.3250, 164.1630), @@ -26028,7 +26028,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3897, 3637, 66, 571, 5918.1900, -1754.7700, 238.9200), (3897, 3637, 67, 571, 5917.9600, -1745.3700, 247.4790), (357, 4120, 0, 0, -10836.0000, -2953.0000, 13.9410); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (357, 4120, 1, 0, -10840.7000, -2956.6000, 13.7961), (357, 4120, 2, 0, -10843.9000, -2959.0200, 14.0306), (357, 4120, 3, 0, -10847.1000, -2961.4400, 14.0333), @@ -27029,7 +27029,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3900, 2616, 69, 1, -477.6250, -4282.5100, 45.3914), (3900, 2616, 70, 1, -479.6860, -4280.6400, 43.8398), (3598, 4360, 0, 1, 846.2250, -5049.7400, 5.1941); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3598, 4360, 1, 1, 848.2210, -5057.4900, 5.2735), (3598, 4360, 2, 1, 850.2160, -5065.2300, 4.5793), (3598, 4360, 3, 1, 852.2120, -5072.9800, 2.9708), @@ -28030,7 +28030,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2323, 4221, 43, 0, -10508.1000, -1088.4400, 58.3270), (2323, 4221, 44, 0, -10507.2000, -1092.3300, 54.9264), (2323, 4221, 45, 0, -10504.8000, -1099.9700, 47.6322); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2323, 4221, 46, 0, -10504.6000, -1103.9600, 42.9885), (2323, 4221, 47, 0, -10504.3000, -1107.9500, 38.3753), (2323, 4221, 48, 0, -10508.3000, -1108.6800, 37.5825), @@ -29031,7 +29031,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2291, 3908, 59, 1, -2889.2400, -3331.3600, 33.8983), (2291, 3908, 60, 1, -2885.5800, -3338.4800, 33.8647), (2291, 3908, 61, 1, -2881.9200, -3345.5900, 34.7952); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2291, 3908, 62, 1, -2880.0900, -3349.1500, 35.3649), (2291, 3908, 63, 1, -2878.9200, -3352.9700, 35.6647), (2291, 3908, 64, 1, -2876.5600, -3360.6200, 34.8379), @@ -30032,7 +30032,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3908, 3094, 45, 1, -2663.2800, -3520.2000, 34.9338), (3908, 3094, 46, 1, -2657.3600, -3525.5800, 34.6012), (3908, 3094, 47, 1, -2651.4400, -3530.9700, 34.8288); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3908, 3094, 48, 1, -2645.5200, -3536.3500, 34.8149), (3908, 3094, 49, 1, -2639.6000, -3541.7300, 34.6666), (3908, 3094, 50, 1, -2636.6400, -3544.4200, 34.6876), @@ -31033,7 +31033,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3910, 4052, 1, 0, -9011.5100, 858.8430, 108.7760), (3910, 4052, 2, 0, -9012.8700, 862.6040, 109.9230), (3910, 4052, 3, 0, -9015.0900, 870.2910, 111.4090); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3910, 4052, 4, 0, -9016.2000, 874.1340, 112.1750), (3910, 4052, 5, 0, -9012.5500, 881.2550, 113.7300), (3910, 4052, 6, 0, -9006.4900, 886.4760, 115.3900), @@ -32034,7 +32034,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2919, 3781, 45, 0, 3405.8500, -4439.8000, 132.3610), (2919, 3781, 46, 0, 3409.1900, -4441.9900, 132.3820), (2919, 3781, 47, 0, 3415.8900, -4446.3700, 132.9750); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2919, 3781, 48, 0, 3419.2300, -4448.5600, 133.1990), (2919, 3781, 49, 0, 3422.5800, -4450.7500, 133.7500), (2919, 3781, 50, 0, 3425.9200, -4452.9400, 134.6670), @@ -33035,7 +33035,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2239, 3913, 57, 0, 2560.3000, -4277.7800, 77.4708), (2239, 3913, 58, 0, 2560.3300, -4281.7800, 76.8676), (2239, 3913, 59, 0, 2560.3700, -4285.7800, 76.2644); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2239, 3913, 60, 0, 2559.7100, -4289.7300, 75.7839), (2239, 3913, 61, 0, 2558.4000, -4297.6200, 74.9618), (2239, 3913, 62, 0, 2557.0800, -4305.5100, 71.6590), @@ -34036,7 +34036,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2843, 3816, 44, 0, -9688.9300, 54.6485, 59.1222), (2843, 3816, 45, 0, -9681.7200, 51.1831, 60.2746), (2843, 3816, 46, 0, -9674.5100, 47.7176, 61.1094); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2843, 3816, 47, 0, -9667.3000, 44.2519, 61.4842), (2843, 3816, 48, 0, -9663.6900, 42.5190, 61.4768), (2843, 3816, 49, 0, -9659.0200, 36.0269, 60.9445), @@ -35037,7 +35037,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3923, 775, 89, 531, -8183.8700, 1662.0100, -29.1790), (3923, 775, 90, 531, -8191.7700, 1663.2800, -29.8937), (3923, 775, 91, 531, -8193.0000, 1667.0900, -30.4102); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3923, 775, 92, 531, -8194.2400, 1670.8900, -30.8406), (3923, 775, 93, 531, -8195.4800, 1674.7000, -30.9443), (3923, 775, 94, 531, -8196.7100, 1678.5000, -30.5801), @@ -36038,7 +36038,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3930, 2185, 213, 1, 7111.1100, -3972.9400, 746.1290), (3930, 2185, 214, 1, 7105.1000, -3978.2300, 746.1290), (3930, 2185, 215, 1, 7102.1000, -3980.8700, 746.1910); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3930, 2185, 216, 1, 7098.3900, -3979.3900, 746.1840), (3930, 2185, 217, 1, 7094.6700, -3977.9100, 746.1750), (3930, 2185, 218, 1, 7090.9500, -3976.4400, 746.1850), @@ -37039,7 +37039,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2206, 3932, 15, 530, 10272.6000, -6226.5200, 26.2521), (2206, 3932, 16, 530, 10269.8000, -6223.6300, 26.1509), (2206, 3932, 17, 530, 10267.1000, -6220.7500, 25.8487); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2206, 3932, 18, 530, 10264.3000, -6217.8700, 25.2133), (2206, 3932, 19, 530, 10261.7000, -6214.8200, 24.1488), (2206, 3932, 20, 530, 10259.1000, -6211.7700, 22.8028), @@ -38040,7 +38040,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (669, 4173, 6, 1, -4369.4500, 3304.2500, 14.1742), (669, 4173, 7, 1, -4370.7000, 3296.3500, 14.1742), (669, 4173, 8, 1, -4371.1800, 3292.3700, 14.1742); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (669, 4173, 9, 1, -4363.2000, 3291.8400, 18.0877), (669, 4173, 10, 1, -4355.2200, 3291.3000, 19.2409), (669, 4173, 11, 1, -4347.2400, 3290.7600, 19.2409), @@ -39041,7 +39041,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3401, 3938, 23, 1, 5126.4800, -498.2090, 296.8010), (3401, 3938, 24, 1, 5127.5600, -506.1360, 296.8010), (3401, 3938, 25, 1, 5128.1000, -510.0990, 296.8010); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3401, 3938, 26, 1, 5126.7900, -513.8780, 296.8540), (3401, 3938, 27, 1, 5118.7900, -513.6290, 297.3690), (3401, 3938, 28, 1, 5114.8000, -513.5040, 297.7700), @@ -40042,7 +40042,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (706, 4352, 36, 1, 7638.0100, -4050.1100, 703.8270), (706, 4352, 37, 1, 7630.0300, -4050.5900, 700.9150), (706, 4352, 38, 1, 7622.0400, -4051.0700, 704.7930); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (706, 4352, 39, 1, 7618.1700, -4052.0800, 705.7700), (706, 4352, 40, 1, 7614.3000, -4053.1000, 705.8370), (706, 4352, 41, 1, 7610.4300, -4054.1100, 705.0570), @@ -41043,7 +41043,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (282, 4022, 60, 409, 767.3970, -882.6080, -222.1140), (282, 4022, 61, 409, 770.6550, -889.9150, -221.0180), (282, 4022, 62, 409, 772.2850, -893.5680, -220.5380); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (282, 4022, 63, 409, 777.9850, -899.1810, -220.2090), (282, 4022, 64, 409, 783.6850, -904.7940, -219.9080), (282, 4022, 65, 409, 786.5360, -907.6000, -220.2830), @@ -42044,7 +42044,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3018, 4232, 14, 530, 7560.8200, -7623.3500, 150.7710), (3018, 4232, 15, 530, 7560.2500, -7619.3900, 149.8550), (3018, 4232, 16, 530, 7559.1300, -7615.5500, 148.6710); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3018, 4232, 17, 530, 7556.9000, -7612.2300, 148.0350), (3018, 4232, 18, 530, 7554.6600, -7608.9200, 148.2690), (3018, 4232, 19, 530, 7552.4200, -7605.6000, 147.8560), @@ -43045,7 +43045,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1679, 4342, 56, 0, -5141.5100, 725.3130, 248.4360), (1679, 4342, 57, 0, -5148.1900, 720.9180, 248.0140), (1679, 4342, 58, 0, -5151.5300, 718.7210, 247.9160); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1679, 4342, 59, 0, -5153.0000, 710.8550, 247.9160), (1679, 4342, 60, 0, -5154.4600, 702.9900, 247.9160), (1679, 4342, 61, 0, -5155.9200, 695.1250, 248.1200), @@ -44046,7 +44046,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3949, 755, 84, 571, 4274.3900, -3585.7100, 247.8510), (3949, 755, 85, 571, 4278.2400, -3586.7700, 247.1450), (3949, 755, 86, 571, 4285.9500, -3588.9100, 246.8990); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3949, 755, 87, 571, 4289.8100, -3589.9700, 246.9560), (3949, 755, 88, 571, 4297.5200, -3592.1000, 247.6090), (3949, 755, 89, 571, 4305.2300, -3594.2400, 248.4310), @@ -45047,7 +45047,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2301, 3949, 30, 571, 3687.0200, -3659.7200, 210.7590), (2301, 3949, 31, 571, 3691.8500, -3653.3300, 212.4880), (2301, 3949, 32, 571, 3694.2600, -3650.1400, 213.5980); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2301, 3949, 33, 571, 3696.6700, -3646.9500, 214.6390), (2301, 3949, 34, 571, 3701.4900, -3640.5700, 216.0760), (2301, 3949, 35, 571, 3703.9100, -3637.3800, 216.5970), @@ -46048,7 +46048,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (755, 3951, 185, 571, 4093.4600, -4506.8400, 223.3790), (755, 3951, 186, 571, 4089.8900, -4508.6400, 221.3480), (755, 3951, 187, 571, 4086.3100, -4510.4400, 218.6670); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (755, 3951, 188, 571, 4083.5600, -4513.3400, 216.0230), (755, 3951, 189, 571, 4078.0400, -4519.1300, 210.1570), (755, 3951, 190, 571, 4072.5200, -4524.9200, 203.7360), @@ -47049,7 +47049,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1819, 4329, 27, 571, 8989.4400, -1127.9300, 1052.4600), (1819, 4329, 28, 571, 8990.1900, -1131.8600, 1052.6700), (1819, 4329, 29, 571, 8991.6900, -1139.7200, 1054.6500); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1819, 4329, 30, 571, 8992.4400, -1143.6500, 1055.3700), (1819, 4329, 31, 571, 8998.2200, -1149.1800, 1058.5900), (1819, 4329, 32, 571, 9004.0300, -1154.6800, 1060.3900), @@ -48050,7 +48050,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3961, 3419, 8, 530, -500.8180, 2106.5300, 82.8375), (3961, 3419, 9, 530, -504.1920, 2104.3900, 87.6131), (3961, 3419, 10, 530, -502.0560, 2107.7700, 83.5777); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3961, 3419, 11, 530, -497.7850, 2114.5300, 77.4707), (3961, 3419, 12, 530, -493.5140, 2121.3000, 76.7156), (3961, 3419, 13, 530, -489.2430, 2128.0600, 77.3045), @@ -49051,7 +49051,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3962, 421, 40, 568, 106.4340, 1216.3700, -20.6693), (3962, 421, 41, 568, 102.2030, 1223.1600, -22.2140), (3962, 421, 42, 568, 97.9710, 1229.9500, -23.7826); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3962, 421, 43, 568, 93.7394, 1236.7400, -23.9625), (3962, 421, 44, 568, 91.9087, 1244.5300, -24.0449), (3962, 421, 45, 568, 90.0781, 1252.3200, -23.8280), @@ -50052,7 +50052,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3963, 711, 22, 0, -585.3000, -1394.9800, 65.3964), (3963, 711, 23, 0, -591.2970, -1389.6900, 65.6337), (3963, 711, 24, 0, -594.3000, -1387.0400, 65.6511); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3963, 711, 25, 0, -596.0760, -1389.4400, 65.3951), (3963, 711, 26, 0, -599.3180, -1387.1000, 65.3951), (3963, 711, 27, 0, -604.7530, -1392.9700, 65.6479), @@ -51053,7 +51053,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2271, 4182, 4, 571, -104.7460, -3596.1000, 3.5401), (2271, 4182, 5, 571, -96.9532, -3597.9100, 2.9556), (2271, 4182, 6, 571, -89.1608, -3599.7200, 2.8668); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2271, 4182, 7, 571, -81.3684, -3601.5300, 2.8420), (2271, 4182, 8, 571, -73.5761, -3603.3400, 3.1555), (2271, 4182, 9, 571, -65.7837, -3605.1500, 2.3748), @@ -52054,7 +52054,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3011, 4212, 19, 571, 5908.5600, 2168.6300, 638.0550), (3011, 4212, 20, 571, 5912.5000, 2169.3000, 636.3150), (3011, 4212, 21, 571, 5916.4500, 2169.9600, 634.0990); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3011, 4212, 22, 571, 5924.3300, 2171.3000, 629.7730), (3011, 4212, 23, 571, 5932.2200, 2172.6400, 624.3630), (3011, 4212, 24, 571, 5936.1700, 2173.3100, 622.0280), @@ -53055,7 +53055,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3975, 3977, 3, 571, 6823.6700, 3807.7600, 621.7880), (3975, 3977, 4, 571, 6821.1500, 3804.6500, 621.7880), (3975, 3977, 5, 571, 6818.6300, 3801.5400, 621.7880); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3975, 3977, 6, 571, 6816.1200, 3798.4400, 621.7880), (3975, 3977, 7, 571, 6813.6000, 3795.3300, 621.7880), (3975, 3977, 8, 571, 6811.0800, 3792.2200, 621.7880), @@ -54056,7 +54056,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2892, 4324, 13, 571, 8413.2400, 702.3910, 548.1120), (2892, 4324, 14, 571, 8421.2400, 702.3960, 548.0540), (2892, 4324, 15, 571, 8429.2400, 702.4010, 547.9640); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2892, 4324, 16, 571, 8433.1900, 703.0210, 547.9640), (2892, 4324, 17, 571, 8441.1400, 702.1250, 548.2840), (2892, 4324, 18, 571, 8449.0900, 701.2290, 548.1450), @@ -55057,7 +55057,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3981, 3833, 9, 0, -4809.9300, -885.2630, 502.4440), (3981, 3833, 10, 0, -4802.0400, -886.5600, 502.4670), (3981, 3833, 11, 0, -4794.1400, -887.8570, 502.6470); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3981, 3833, 12, 0, -4786.2500, -889.1540, 502.6520), (3981, 3833, 13, 0, -4778.3500, -890.4520, 502.6570), (3981, 3833, 14, 0, -4770.5400, -892.1790, 502.6570), @@ -56058,7 +56058,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1093, 4190, 8, 34, 130.0090, -21.8567, -29.2172), (1093, 4190, 9, 34, 130.3710, -13.8649, -26.0477), (1093, 4190, 10, 34, 130.7320, -5.8730, -24.9594); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1093, 4190, 11, 34, 131.0940, 2.1188, -25.0179), (1093, 4190, 12, 34, 131.1490, 3.3395, -25.5229), (1786, 3852, 0, 0, -11112.9000, -2005.8900, 49.3307), @@ -57059,7 +57059,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3986, 4236, 5, 580, 1680.7900, 635.6080, 29.0866), (3986, 4236, 6, 580, 1672.8900, 634.3220, 28.9566), (3986, 4236, 7, 580, 1667.6400, 633.4660, 28.0500); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (140, 4256, 0, 580, 1814.2700, 626.4520, 33.4870), (140, 4256, 1, 580, 1820.9300, 630.8790, 33.9793), (140, 4256, 2, 580, 1827.6000, 635.3050, 34.1228), @@ -58060,7 +58060,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (885, 4060, 38, 631, -97.7061, 2220.6400, 29.7628), (885, 4060, 39, 631, -89.9452, 2222.5800, 28.5603), (885, 4060, 40, 631, -82.1842, 2224.5200, 29.3333); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (885, 4060, 41, 631, -80.5346, 2228.1600, 28.5325), (885, 4060, 42, 631, -81.8015, 2236.0600, 29.0260), (885, 4060, 43, 631, -82.4349, 2240.0100, 30.3512), @@ -59061,7 +59061,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1722, 4371, 30, 1, -1340.8400, 2863.3700, 88.4612), (1722, 4371, 31, 1, -1346.0900, 2857.3400, 88.1047), (1722, 4371, 32, 1, -1353.2000, 2853.6800, 87.7253); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1722, 4371, 33, 1, -1356.7600, 2851.8500, 87.7289), (1722, 4371, 34, 1, -1360.9400, 2858.6700, 89.5731), (1722, 4371, 35, 1, -1365.1200, 2865.4900, 90.9130), @@ -60062,7 +60062,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3997, 3547, 4, 1, -1027.7100, -30.2836, 61.1135), (3997, 3547, 5, 1, -1024.9000, -37.7727, 61.1135), (3997, 3547, 6, 1, -1025.2900, -41.7533, 61.1135); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3997, 3547, 7, 1, -1022.0300, -44.0614, 61.1135), (3997, 3547, 8, 1, -1020.9500, -51.9887, 61.1135), (3997, 3547, 9, 1, -1019.8700, -59.9160, 61.1135), @@ -61063,7 +61063,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4008, 3624, 33, 1, -4785.5000, -2030.8600, -46.0326), (4008, 3624, 34, 1, -4787.8800, -2034.0800, -44.5040), (4008, 3624, 35, 1, -4792.6200, -2040.5200, -41.8146); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4008, 3624, 36, 1, -4797.3700, -2046.9600, -37.6023), (4008, 3624, 37, 1, -4799.5000, -2050.3400, -35.4473), (4008, 3624, 38, 1, -4801.6300, -2053.7300, -33.8943), @@ -62064,7 +62064,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4022, 282, 4, 409, 876.0940, -793.7280, -227.2170), (4022, 282, 5, 409, 872.8420, -786.4190, -226.2550), (4022, 282, 6, 409, 869.5910, -779.1090, -224.9670); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4022, 282, 7, 409, 866.3390, -771.8000, -225.0650), (4022, 282, 8, 409, 869.7330, -769.6830, -223.7180), (4022, 282, 9, 409, 877.3050, -767.1000, -223.8100), @@ -63065,7 +63065,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (144, 4243, 48, 564, 671.4820, 128.9940, 245.9430), (144, 4243, 49, 564, 663.5310, 128.1040, 246.4510), (144, 4243, 50, 564, 659.5360, 127.9150, 246.2110); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (144, 4243, 51, 564, 651.5450, 127.5360, 245.8790), (144, 4243, 52, 564, 643.5540, 127.1570, 245.7520), (144, 4243, 53, 564, 639.6620, 128.0800, 245.7790), @@ -64066,7 +64066,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4026, 2371, 47, 530, -2186.9400, 7721.4800, -14.5410), (4026, 2371, 48, 530, -2188.7800, 7729.2700, -14.4746), (4026, 2371, 49, 530, -2190.6300, 7737.0500, -15.4993); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4026, 2371, 50, 530, -2192.4700, 7744.8400, -16.3613), (4026, 2371, 51, 530, -2194.3200, 7752.6200, -16.8940), (4026, 2371, 52, 530, -2196.1600, 7760.4000, -17.8577), @@ -65067,7 +65067,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (421, 3962, 64, 568, 115.9180, 1080.6700, 20.8588), (421, 3962, 65, 568, 116.2660, 1072.6800, 23.2135), (421, 3962, 66, 568, 116.6130, 1064.6900, 24.9236); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (421, 3962, 67, 568, 116.9610, 1056.7000, 25.7443), (421, 3962, 68, 568, 117.3090, 1048.7000, 25.8289), (421, 3962, 69, 568, 117.3630, 1047.4700, 25.5864), @@ -66068,7 +66068,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2761, 3809, 6, 530, 3375.1400, 4368.8000, 124.0800), (2761, 3809, 7, 530, 3373.9400, 4372.6200, 124.3260), (2761, 3809, 8, 530, 3373.5400, 4376.6000, 126.0140); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2761, 3809, 9, 530, 3374.2900, 4384.5600, 130.9010), (2761, 3809, 10, 530, 3375.0400, 4392.5300, 133.7170), (2761, 3809, 11, 530, 3375.7900, 4400.4900, 136.2280), @@ -67069,7 +67069,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1192, 4081, 11, 389, -195.5200, -0.2703, -59.9133), (1192, 4081, 12, 389, -203.3330, -1.9898, -61.0274), (1192, 4081, 13, 389, -211.1460, -3.7092, -60.9950); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1192, 4081, 14, 389, -218.9590, -5.4287, -61.0581), (1192, 4081, 15, 389, -226.7720, -7.1482, -61.1303), (1192, 4081, 16, 389, -234.5850, -8.8676, -60.7173), @@ -68070,7 +68070,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4045, 85, 22, 1, 684.0200, -2179.0000, 102.0770), (4045, 85, 23, 1, 614.5980, -1981.5000, 101.6990), (4045, 85, 24, 1, 490.5410, -1883.0600, 99.9558); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4045, 85, 25, 1, 291.0060, -1826.4300, 99.6667), (4045, 85, 26, 1, 243.4300, -1700.2900, 101.0060), (4045, 85, 27, 1, -34.1262, -1666.3200, 99.6832), @@ -69071,7 +69071,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1308, 3819, 3, 230, 841.5570, -206.9060, -43.7078), (1308, 3819, 4, 230, 839.4600, -199.1860, -47.8117), (1308, 3819, 5, 230, 838.4110, -195.3260, -49.1648); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1308, 3819, 6, 230, 839.6040, -191.5080, -48.9266), (1308, 3819, 7, 230, 844.5720, -185.2380, -49.1514), (1308, 3819, 8, 230, 847.8390, -181.1150, -49.6707), @@ -70072,7 +70072,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4060, 885, 21, 631, -182.2280, 2215.6300, 35.9469), (4060, 885, 22, 631, -190.2270, 2215.4600, 35.9469), (4060, 885, 23, 631, -198.2250, 2215.3000, 35.9469); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4060, 885, 24, 631, -206.2230, 2215.1400, 35.9469), (4060, 885, 25, 631, -214.2220, 2214.9700, 36.1678), (4060, 885, 26, 631, -222.2200, 2214.8100, 38.4295), @@ -71073,7 +71073,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4071, 3119, 58, 0, 1495.0100, 761.5060, 59.6557), (4071, 3119, 59, 0, 1495.9100, 763.8170, 60.4769), (4071, 3119, 60, 0, 1495.3300, 767.7750, 63.3702); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4071, 3119, 61, 0, 1491.3500, 768.2230, 65.8263), (4071, 3119, 62, 0, 1483.4000, 769.1190, 65.3989), (4071, 3119, 63, 0, 1475.4600, 770.0150, 58.3765), @@ -72074,7 +72074,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4073, 3619, 30, 1, 7936.3500, -2355.4800, 487.4770), (4073, 3619, 31, 1, 7940.7100, -2362.1900, 488.2910), (4073, 3619, 32, 1, 7942.8900, -2365.5400, 488.4870); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4073, 3619, 33, 1, 7947.2500, -2372.2500, 487.5980), (4073, 3619, 34, 1, 7949.4300, -2375.6000, 487.9990), (4073, 3619, 35, 1, 7951.6100, -2378.9600, 488.7260), @@ -73075,7 +73075,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4077, 3280, 43, 530, -3540.4300, 3597.8600, 279.2930), (4077, 3280, 44, 530, -3536.9200, 3595.9300, 280.2080), (4077, 3280, 45, 530, -3529.0700, 3594.4000, 281.1730); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4077, 3280, 46, 530, -3521.2200, 3592.8700, 282.0810), (4077, 3280, 47, 530, -3513.3700, 3591.3300, 282.8600), (4077, 3280, 48, 530, -3509.4400, 3590.5700, 283.7230), @@ -74076,7 +74076,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4080, 106, 263, 571, 4675.8600, -4379.0700, 188.6690), (4080, 106, 264, 571, 4672.1500, -4377.5800, 188.2460), (4080, 106, 265, 571, 4668.4400, -4376.0800, 187.9420); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4080, 106, 266, 571, 4664.7300, -4374.5900, 187.4700), (4080, 106, 267, 571, 4661.0200, -4373.1000, 186.9850), (4080, 106, 268, 571, 4657.3100, -4371.6100, 186.4280), @@ -75077,7 +75077,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4083, 134, 18, 30, -1478.2900, -326.0080, 101.0820), (4083, 134, 19, 30, -1485.9000, -328.4780, 101.3490), (4083, 134, 20, 30, -1488.1400, -329.2050, 100.8530); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4083, 1003, 0, 30, -1347.0000, -292.0000, 91.0000), (4083, 1003, 1, 30, -1350.3400, -284.7300, 92.4852), (4083, 1003, 2, 30, -1353.6800, -277.4600, 96.1177), @@ -76078,7 +76078,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4086, 18, 110, 0, -9408.0000, -2602.6700, 56.3445), (4086, 18, 111, 0, -9408.4000, -2599.8400, 56.8445), (4086, 18, 112, 0, -9408.9700, -2595.8800, 56.8445); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4086, 18, 113, 0, -9410.1000, -2587.9600, 56.8445), (4086, 18, 114, 0, -9410.6700, -2584.0000, 56.8445), (4086, 18, 115, 0, -9411.8000, -2576.0800, 56.8445), @@ -77079,7 +77079,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4091, 3581, 24, 1, 3541.8600, -3967.9900, 23.6104), (4091, 3581, 25, 1, 3537.8600, -3968.0900, 23.9150), (4091, 3581, 26, 1, 3530.4500, -3971.1000, 23.4674); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4091, 3581, 27, 1, 3523.0400, -3974.1100, 20.8364), (4091, 3581, 28, 1, 3515.6200, -3977.1200, 19.4908), (4091, 3581, 29, 1, 3508.2100, -3980.1400, 20.7032), @@ -78080,7 +78080,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4092, 1483, 160, 429, 38.3507, -827.5550, -27.9287), (4092, 1483, 161, 429, 31.7539, -832.0810, -30.1515), (4092, 1483, 162, 429, 24.1533, -834.5770, -29.3550); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4092, 1483, 163, 429, 20.1849, -835.0780, -29.5854), (4092, 1483, 164, 429, 12.2480, -836.0820, -31.2022), (4092, 1483, 165, 429, 4.3112, -837.0850, -37.0405), @@ -79081,7 +79081,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4099, 467, 76, 0, -7078.8300, -1270.0500, 257.1850), (4099, 467, 77, 0, -7077.9300, -1278.0000, 257.5670), (4099, 467, 78, 0, -7077.0300, -1285.9500, 264.3230); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4099, 467, 79, 0, -7076.5800, -1289.9300, 266.7530), (4099, 467, 80, 0, -7075.6800, -1297.8800, 267.8470), (4099, 467, 81, 0, -7075.2300, -1301.8500, 267.7670), @@ -80082,7 +80082,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4114, 1928, 1, 571, 8119.4000, -242.6570, 924.6220), (4114, 4116, 0, 571, 8119.4000, -256.0000, 926.3570), (4114, 4116, 1, 571, 8122.2400, -248.5210, 926.9400); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4114, 4116, 2, 571, 8122.6000, -247.5780, 926.3930), (4115, 1912, 0, 571, 8119.6800, -379.0410, 1028.0500), (4115, 1912, 1, 571, 8123.1900, -383.7220, 1027.7000), @@ -81083,7 +81083,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4122, 2367, 47, 0, -9385.8100, -161.8230, 62.4151), (4122, 2367, 48, 0, -9390.7500, -168.1110, 60.0894), (4122, 2367, 49, 0, -9395.7000, -174.3980, 59.7811); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4122, 2367, 50, 0, -9400.6500, -180.6860, 58.8627), (4122, 2367, 51, 0, -9405.5900, -186.9740, 58.2487), (4122, 2367, 52, 0, -9408.0700, -190.1170, 58.1484), @@ -82084,7 +82084,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4129, 2719, 4, 530, -2160.3200, 5396.1200, 50.8657), (4129, 2719, 5, 530, -2154.8900, 5390.2400, 50.9681), (4129, 2719, 6, 530, -2149.4700, 5384.3600, 51.7758); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4129, 2719, 7, 530, -2144.0500, 5378.4800, 51.9324), (4129, 2719, 8, 530, -2141.3300, 5375.5400, 51.9324), (4129, 2719, 9, 530, -2139.0500, 5372.6500, 51.9324), @@ -83085,7 +83085,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4130, 4374, 25, 0, -7259.3300, -941.3360, 247.4620), (4130, 4374, 26, 0, -7255.6700, -939.7090, 247.6950), (4130, 4374, 27, 0, -7252.5300, -938.6670, 248.9110); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4130, 4374, 28, 0, -7248.2700, -945.4380, 246.7770), (4130, 4374, 29, 0, -7244.0100, -952.2090, 245.7660), (4130, 4374, 30, 0, -7239.7500, -958.9800, 245.3600), @@ -84086,7 +84086,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2937, 4130, 38, 0, -6618.4700, -1068.7800, 245.8240), (2937, 4130, 39, 0, -6620.6800, -1076.4700, 247.4330), (2937, 4130, 40, 0, -6622.8900, -1084.1600, 245.7350); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2937, 4130, 41, 0, -6625.1100, -1091.8500, 245.5840), (2937, 4130, 42, 0, -6626.4200, -1095.6200, 245.2910), (2937, 4130, 43, 0, -6630.4100, -1095.7900, 246.8240), @@ -85087,7 +85087,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3036, 4274, 39, 530, -4067.6500, 577.3740, 18.3890), (3036, 4274, 40, 530, -4062.9900, 583.8740, 18.0937), (3036, 4274, 41, 530, -4058.3300, 590.3740, 17.8394); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3036, 4274, 42, 530, -4053.6600, 596.8740, 18.7005), (3036, 4274, 43, 530, -4051.3300, 600.1230, 19.7995), (3036, 4274, 44, 530, -4045.5600, 605.6610, 22.3445), @@ -86088,7 +86088,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4149, 2956, 34, 530, -1548.4200, 5101.8200, -18.7377), (4149, 2956, 35, 530, -1540.8800, 5104.4900, -19.5824), (4149, 2956, 36, 530, -1533.3400, 5107.1500, -19.1586); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4149, 2956, 37, 530, -1525.8000, 5109.8200, -18.5068), (4149, 2956, 38, 530, -1521.8000, 5109.8800, -18.7886), (4149, 2956, 39, 530, -1515.4100, 5105.0700, -18.8338), @@ -87089,7 +87089,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4163, 3017, 140, 530, -2609.7400, 5112.2000, 2.9034), (4163, 3017, 141, 530, -2617.6200, 5110.8400, 1.9154), (4163, 3017, 142, 530, -2621.5600, 5110.1600, 1.1655); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4163, 3017, 143, 530, -2629.4500, 5108.7900, -0.3227), (4163, 3017, 144, 530, -2637.3300, 5107.4300, -1.6676), (4163, 3017, 145, 530, -2641.2700, 5106.7500, -1.6676), @@ -88090,7 +88090,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4168, 355, 29, 0, -14275.3000, 376.2610, 35.6757), (4168, 355, 30, 0, -14274.9000, 368.2730, 34.6321), (4168, 355, 31, 0, -14273.1000, 360.4680, 33.8020); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4168, 355, 32, 0, -14268.8000, 353.7100, 33.2409), (4168, 355, 33, 0, -14263.0000, 348.2340, 31.3415), (4168, 355, 34, 0, -14257.2000, 342.7590, 28.5234), @@ -89091,7 +89091,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4174, 4171, 23, 1, 6533.6600, 890.5520, 7.4013), (4174, 4171, 24, 1, 6536.3600, 898.0830, 7.5427), (4174, 4171, 25, 1, 6539.0600, 905.6140, 7.5645); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4174, 4171, 26, 1, 6541.7600, 913.1450, 6.8206), (4174, 4171, 27, 1, 6544.4600, 920.6750, 6.6894), (4174, 4171, 28, 1, 6546.9800, 927.7040, 6.1894), @@ -90092,7 +90092,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4178, 2879, 52, 1, -7556.4600, 553.7390, -18.7807), (4178, 2879, 53, 1, -7552.5100, 554.4080, -18.3418), (4178, 2879, 54, 1, -7545.3700, 557.9990, -18.8321); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4178, 2879, 55, 1, -7538.2200, 561.5900, -17.8341), (4178, 2879, 56, 1, -7531.0700, 565.1800, -17.8896), (4178, 2879, 57, 1, -7523.9200, 568.7710, -19.0286), @@ -91093,7 +91093,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2565, 4180, 86, 0, 999.4220, 683.3850, 70.4209), (2565, 4180, 87, 0, 997.3100, 675.6690, 70.4209), (2565, 4180, 88, 0, 993.5920, 674.1940, 71.0492); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2565, 4180, 89, 0, 985.6850, 672.9760, 74.7513), (2565, 4180, 90, 0, 978.7440, 676.9530, 75.4876), (2565, 4180, 91, 0, 981.7650, 679.5750, 75.4876), @@ -92094,7 +92094,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3518, 4072, 257, 0, 1668.2100, 545.0720, 34.2116), (3518, 4072, 258, 0, 1675.8600, 542.7360, 34.4051), (3518, 4072, 259, 0, 1683.5100, 540.4010, 34.4492); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3518, 4072, 260, 0, 1691.1600, 538.0650, 34.5854), (3518, 4072, 261, 0, 1698.8200, 535.7300, 34.3576), (3518, 4072, 262, 0, 1706.4700, 533.3940, 34.1297), @@ -93095,7 +93095,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (403, 3980, 12, 0, -2619.3800, -1157.9600, 3.5021), (403, 3980, 13, 0, -2852.6000, -1019.3800, 18.7693), (403, 3980, 14, 0, -2955.4800, -921.7040, 24.2844); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (403, 3980, 15, 0, -3118.9500, -918.2320, 32.5244), (403, 3980, 16, 0, -3341.4100, -986.6430, 24.2461), (403, 3980, 17, 0, -3801.7900, -1080.2200, 38.0819), @@ -94096,7 +94096,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (358, 4214, 134, 0, -10803.6000, -3735.0000, 26.7827), (358, 4214, 135, 0, -10807.6000, -3734.8500, 26.7164), (358, 4214, 136, 0, -10815.6000, -3734.5600, 25.8530); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (358, 4214, 137, 0, -10823.6000, -3734.2600, 24.8511), (358, 4214, 138, 0, -10831.6000, -3733.9600, 24.3316), (358, 4214, 139, 0, -10835.6000, -3733.8200, 24.5425), @@ -95097,7 +95097,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4187, 2511, 37, 1, 1687.4900, -41.6605, 110.9890), (4187, 2511, 38, 1, 1686.7200, -49.6234, 104.1480), (4187, 2511, 39, 1, 1685.9500, -57.5862, 98.1092); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4187, 2511, 40, 1, 1685.1800, -65.5491, 91.9234), (4187, 2511, 41, 1, 1680.7500, -72.2073, 86.9291), (4187, 2511, 42, 1, 1678.5300, -75.5364, 84.7256), @@ -96098,7 +96098,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (78, 4066, 57, 0, -9127.3300, 389.4510, 91.9717), (78, 4066, 58, 0, -9133.3200, 384.1570, 91.2610), (78, 4066, 59, 0, -9139.3200, 378.8620, 91.3720); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (78, 4066, 60, 0, -9143.5800, 375.1030, 90.6907), (382, 3910, 0, 0, -8867.7900, 673.6730, 97.9864), (382, 3910, 1, 0, -8863.1800, 667.1330, 98.4151), @@ -97099,7 +97099,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4193, 2422, 27, 0, -11488.6000, -792.3920, 34.0464), (4193, 2422, 28, 0, -11491.6000, -799.8170, 34.2362), (4193, 2422, 29, 0, -11494.5000, -807.2420, 34.4263); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4193, 2422, 30, 0, -11497.5000, -814.6670, 33.7878), (4193, 2422, 31, 0, -11500.5000, -822.0930, 35.2710), (4193, 2422, 32, 0, -11502.7000, -825.4050, 35.0505), @@ -98100,7 +98100,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2300, 4193, 29, 0, -11790.7000, -549.9190, 16.0645), (2300, 4193, 30, 0, -11782.8000, -548.8070, 16.3277), (2300, 4193, 31, 0, -11774.8000, -547.6940, 16.9431); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2300, 4193, 32, 0, -11766.9000, -546.5820, 17.8287), (2300, 4193, 33, 0, -11759.0000, -545.4700, 23.1061), (2300, 4193, 34, 0, -11751.1000, -544.3570, 22.6706), @@ -99101,7 +99101,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1675, 4210, 10, 109, -320.6390, 33.4487, -126.1530), (1675, 4210, 11, 109, -316.8160, 32.2715, -124.9680), (1675, 4210, 12, 109, -308.8300, 32.7497, -122.7890); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1675, 4210, 13, 109, -304.8380, 32.9917, -121.7680), (1675, 4210, 14, 109, -300.5360, 39.7365, -119.5400), (1675, 4210, 15, 109, -298.3850, 43.1089, -118.3830), @@ -100102,7 +100102,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4213, 17, 108, 571, 3574.9000, 2837.7400, 70.0983), (4213, 17, 109, 571, 3578.7200, 2844.7700, 69.8033), (4213, 17, 110, 571, 3582.5400, 2851.8100, 69.6789); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4213, 17, 111, 571, 3584.4500, 2855.3200, 69.8137), (4213, 17, 112, 571, 3592.3600, 2856.5100, 70.4507), (4213, 17, 113, 571, 3594.8400, 2853.3700, 70.7686), @@ -101103,7 +101103,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2975, 3828, 28, 1, -8047.2100, -3922.2100, 11.9186), (2975, 3828, 29, 1, -8049.1700, -3929.9700, 10.5710), (2975, 3828, 30, 1, -8050.1600, -3933.8400, 10.1341); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2975, 3828, 31, 1, -8051.1400, -3937.7200, 9.9430), (2975, 3828, 32, 1, -8052.1200, -3941.6000, 9.7951), (2975, 3828, 33, 1, -8053.1000, -3945.4800, 9.7591), @@ -102104,7 +102104,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4217, 2785, 0, 1, 10124.0000, 1115.9100, 1322.8200), (4217, 2785, 1, 1, 10121.1000, 1113.1800, 1323.5500), (4217, 2785, 2, 1, 10115.2000, 1107.7100, 1324.2100); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4217, 2785, 3, 1, 10109.4000, 1102.2400, 1324.4700), (4217, 2785, 4, 1, 10103.6000, 1096.7700, 1325.2400), (4217, 2785, 5, 1, 10100.6000, 1094.0400, 1327.3800), @@ -103105,7 +103105,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4222, 268, 22, 607, 1062.7500, -116.3430, 83.4975), (4222, 268, 23, 607, 1054.7900, -117.1510, 84.3274), (4222, 268, 24, 607, 1046.8300, -117.9580, 85.3791); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4222, 268, 25, 607, 1039.3800, -120.8680, 86.4840), (4222, 268, 26, 607, 1033.4900, -126.2890, 87.7751), (4222, 268, 27, 607, 1027.6100, -131.7100, 88.4820), @@ -104106,7 +104106,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4231, 3629, 3, 530, 7509.0200, -6380.3300, 20.9404), (4231, 3629, 4, 530, 7509.7600, -6376.4000, 19.2274), (4231, 3629, 5, 530, 7513.7400, -6376.0100, 16.8591); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4231, 3629, 6, 530, 7517.7200, -6376.4300, 14.6427), (4231, 3629, 7, 530, 7521.6900, -6376.8700, 13.5290), (4231, 3629, 8, 530, 7524.2300, -6384.4600, 13.2280), @@ -105107,7 +105107,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4239, 243, 9, 564, 731.5650, 266.0490, 125.7520), (4239, 243, 10, 564, 734.8250, 273.3540, 125.7520), (4239, 243, 11, 564, 738.0860, 280.6590, 125.7520); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4239, 243, 12, 564, 741.3460, 287.9650, 125.7520), (4239, 243, 13, 564, 742.9770, 291.6170, 125.8130), (4239, 243, 14, 564, 745.3440, 299.2590, 126.3410), @@ -106108,7 +106108,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4250, 3203, 58, 571, 4437.3300, 3117.2200, 358.0490), (4250, 3203, 59, 571, 4437.3300, 3125.2200, 358.3980), (4250, 3203, 60, 571, 4437.3300, 3133.2200, 358.0950); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4250, 3203, 61, 571, 4437.3300, 3137.2200, 357.7640), (4250, 3203, 62, 571, 4435.0800, 3140.5300, 357.5450), (4250, 3203, 63, 571, 4430.5900, 3147.1500, 357.5150), @@ -107109,7 +107109,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4257, 719, 155, 531, -8790.3300, 1971.8200, -19.2790), (4257, 719, 156, 531, -8787.5100, 1974.6500, -18.1238), (4257, 719, 157, 531, -8784.1700, 1976.8500, -15.7719); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4257, 719, 158, 531, -8780.8400, 1979.0600, -13.8081), (4257, 719, 159, 531, -8777.5000, 1981.2700, -13.5835), (4257, 719, 160, 531, -8774.1600, 1983.4800, -12.7760), @@ -108110,7 +108110,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4261, 2953, 44, 1, -3967.9400, -4438.4400, 0.7032), (4261, 2953, 45, 1, -3968.0000, -4437.3300, 0.2032), (4261, 2953, 46, 1, -3970.8300, -4434.5000, 0.7032); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4261, 2953, 47, 1, -3973.6600, -4431.6800, 0.7032), (4261, 2953, 48, 1, -3976.4900, -4428.8500, 0.7032), (4261, 2953, 49, 1, -3982.1400, -4423.1900, 0.7032), @@ -109111,7 +109111,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4273, 3559, 19, 571, 8565.1300, 1112.6500, 557.4540), (4273, 3559, 20, 571, 8573.0900, 1113.3900, 557.4540), (4273, 3559, 21, 571, 8581.0600, 1114.1300, 557.4540); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4273, 3559, 22, 571, 8589.1500, 1114.8800, 557.1600), (4273, 3559, 23, 571, 8591.2800, 1109.8400, 556.9700), (4273, 2849, 0, 571, 8480.5500, 1092.9000, 554.4850), @@ -110112,7 +110112,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4276, 4073, 26, 1, 7986.3800, -2552.2500, 490.7050), (4276, 4073, 27, 1, 7979.6800, -2547.8700, 490.8220), (4276, 4073, 28, 1, 7976.3400, -2545.6800, 490.7720); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4276, 4073, 29, 1, 7975.5600, -2541.7500, 491.2020), (4276, 4073, 30, 1, 7974.7800, -2537.8300, 491.9690), (4276, 4073, 31, 1, 7974.0100, -2533.9000, 492.7040), @@ -111113,7 +111113,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4281, 1228, 34, 552, 249.9620, -138.7980, -9.4494), (4281, 1228, 35, 552, 256.8270, -134.6900, -9.4494), (4281, 1228, 36, 552, 263.6920, -130.5820, -9.4494); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4281, 1228, 37, 552, 270.5560, -126.4740, -9.4494), (4281, 1228, 38, 552, 275.7880, -123.3430, -10.1232), (4282, 969, 0, 553, 17.5470, 404.8610, -27.1645), @@ -112114,7 +112114,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4284, 3439, 4, 530, -3918.1100, 3656.0500, 282.2620), (4284, 3439, 5, 530, -3918.1400, 3648.0500, 282.2860), (4284, 3439, 6, 530, -3915.4900, 3645.0600, 281.3440); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4284, 3439, 7, 530, -3913.0300, 3641.9000, 280.0760), (4284, 3439, 8, 530, -3908.9500, 3635.0200, 277.5330), (4284, 3439, 9, 530, -3904.8700, 3628.1400, 275.0240), @@ -113115,7 +113115,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2614, 4277, 121, 530, -1957.7300, 5281.4600, -34.7732), (2614, 4277, 122, 530, -1955.5800, 5284.8300, -32.5033), (2614, 4277, 123, 530, -1951.3000, 5291.5900, -27.8555); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2614, 4277, 124, 530, -1947.2200, 5298.4700, -23.6047), (2614, 4277, 125, 530, -1943.1400, 5305.3500, -19.1655), (2614, 4277, 126, 530, -1941.1000, 5308.7900, -16.9552), @@ -114116,7 +114116,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4287, 465, 11, 1, -4074.5400, -2334.1100, 128.0240), (4287, 465, 12, 1, -4082.4400, -2335.4300, 126.6910), (4287, 465, 13, 1, -4084.9500, -2327.8300, 126.6910); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4287, 465, 14, 1, -4087.4300, -2320.2300, 126.8510), (4287, 465, 15, 1, -4088.6500, -2316.4200, 126.8680), (4287, 465, 16, 1, -4091.1000, -2308.8000, 125.6240), @@ -115117,7 +115117,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3333, 4126, 37, 1, -879.3200, -2378.9800, 93.0393), (3333, 4126, 38, 1, -873.3850, -2384.3500, 92.4748), (3333, 4126, 39, 1, -867.4500, -2389.7100, 92.3591); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3333, 4126, 40, 1, -861.5160, -2395.0700, 92.3520), (3333, 4126, 41, 1, -855.5810, -2400.4400, 92.3449), (3333, 4126, 42, 1, -849.6460, -2405.8000, 92.9511), @@ -116118,7 +116118,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1827, 4242, 40, 595, 1605.2700, 642.8310, 102.2790), (1827, 4242, 41, 595, 1612.8900, 645.2670, 102.9110), (1827, 4242, 42, 595, 1620.5100, 647.7030, 103.6270); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1827, 4242, 43, 595, 1625.7900, 653.7130, 104.6720), (1827, 4242, 44, 595, 1630.9800, 659.7970, 105.7610), (1827, 4242, 45, 595, 1636.0900, 665.9540, 106.7260), @@ -117119,7 +117119,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2925, 4124, 8, 0, 370.4600, -2134.3100, 117.2360), (2925, 4124, 9, 0, 370.1920, -2138.3000, 117.8400), (2925, 4124, 10, 0, 362.2310, -2137.5000, 121.0330); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2925, 4124, 11, 0, 354.2710, -2136.7100, 122.5730), (2925, 4124, 12, 0, 346.3050, -2137.4400, 122.3670), (2925, 4124, 13, 0, 338.3380, -2138.1700, 122.8780), @@ -118120,7 +118120,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3443, 4296, 153, 571, 7209.9400, -2117.8000, 773.2290), (3443, 4296, 154, 571, 7213.9400, -2117.7000, 775.3250), (3443, 4296, 155, 571, 7221.9400, -2117.5000, 777.7700); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3443, 4296, 156, 571, 7229.9300, -2117.3000, 778.4330), (3443, 4296, 157, 571, 7233.9300, -2117.2000, 778.5400), (3443, 4296, 158, 571, 7241.9300, -2117.0000, 779.1040), @@ -119121,7 +119121,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3610, 3897, 21, 571, 6005.9400, -908.3300, 367.2040), (3610, 3897, 22, 571, 5998.2500, -906.1240, 364.9870), (3610, 3897, 23, 571, 5990.5600, -903.9180, 363.6650); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3610, 3897, 24, 571, 5982.8700, -901.7130, 359.7770), (3610, 3897, 25, 571, 5974.9600, -900.5000, 356.2890), (3610, 3897, 26, 571, 5967.0500, -899.2860, 352.1250), @@ -120122,7 +120122,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4299, 3530, 67, 571, 7753.8400, -294.5440, 937.1120), (4299, 3530, 68, 571, 7759.4400, -300.2600, 931.9700), (4299, 3530, 69, 571, 7767.3600, -301.3560, 924.4470); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4299, 3530, 70, 571, 7775.2900, -302.4520, 918.0900), (4299, 3530, 71, 571, 7783.2100, -303.5480, 913.6490), (4299, 3530, 72, 571, 7791.1400, -304.6440, 908.5690), @@ -121123,7 +121123,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (280, 3980, 23, 0, -4822.1300, -1156.3900, 505.9330), (1190, 4094, 0, 553, 4.9486, 596.5780, -15.0783), (1190, 4094, 1, 553, 4.2865, 604.5500, -13.8611); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1190, 4094, 2, 553, 4.0000, 608.0000, -13.8165), (1190, 4282, 0, 553, 4.9486, 596.5780, -15.0783), (1190, 4282, 1, 553, -2.9598, 597.7850, -14.4089), @@ -122124,7 +122124,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3624, 4011, 61, 1, -5399.6900, -2499.3500, -44.5634), (3624, 4011, 62, 1, -5400.0600, -2495.3700, -43.1094), (3624, 4011, 63, 1, -5398.9400, -2491.7400, -41.6329); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3624, 4011, 64, 1, -5397.5300, -2495.4800, -40.8318), (3624, 4011, 65, 1, -5396.1200, -2499.2200, -40.2013), (3624, 4011, 66, 1, -5395.6800, -2501.7500, -41.5869), @@ -123125,7 +123125,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4308, 2341, 244, 0, 1623.9000, -1263.1600, 70.7883), (4308, 2341, 245, 0, 1631.1500, -1266.5600, 70.8956), (4308, 2341, 246, 0, 1638.3900, -1269.9500, 70.2697); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4308, 2341, 247, 0, 1642.4100, -1276.8700, 69.9458), (4308, 2341, 248, 0, 1644.4200, -1280.3300, 69.8572), (4308, 2341, 249, 0, 1644.6800, -1284.3200, 69.6061), @@ -124126,7 +124126,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4311, 3508, 48, 0, 2841.3100, 529.7040, 67.5049), (4311, 3508, 49, 0, 2846.2500, 523.4110, 65.0132), (4311, 3508, 50, 0, 2851.1900, 517.1170, 61.6371); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4311, 3508, 51, 0, 2856.1300, 510.8240, 60.7343), (4311, 3508, 52, 0, 2858.6000, 507.6780, 58.5546), (4311, 3508, 53, 0, 2860.9300, 500.0250, 56.6981), @@ -125127,7 +125127,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4313, 3743, 21, 571, 5743.5400, 565.1740, 652.5360), (4313, 3743, 22, 571, 5737.0200, 560.5390, 653.0320), (4313, 3743, 23, 571, 5730.5000, 555.9040, 653.6810); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4313, 3743, 24, 571, 5723.9800, 551.2690, 653.4400), (4313, 3743, 25, 571, 5716.0200, 550.4630, 653.7830), (4313, 3743, 26, 571, 5713.8300, 550.2410, 652.9410), @@ -126128,7 +126128,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4323, 1840, 12, 571, 5785.5000, 536.7740, 642.2580), (4323, 1840, 13, 571, 5784.7200, 540.6970, 641.3210), (4323, 1840, 14, 571, 5788.7400, 547.6130, 636.5870); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4323, 1840, 15, 571, 5792.7600, 554.5290, 635.2480), (4323, 1840, 16, 571, 5796.7800, 561.4450, 632.4750), (4323, 1840, 17, 571, 5798.7900, 564.9030, 630.9640), @@ -127129,7 +127129,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4335, 614, 14, 0, 1670.4000, 239.5410, 63.1904), (4335, 614, 15, 0, 1678.4000, 239.7600, 63.1904), (4335, 614, 16, 0, 1686.4000, 239.9790, 63.1904); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4335, 614, 17, 0, 1694.4000, 240.1980, 63.1904), (4335, 614, 18, 0, 1702.3900, 240.4160, 63.1904), (4335, 614, 19, 0, 1706.3900, 240.5260, 63.1904), @@ -128130,7 +128130,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4339, 1739, 18, 309, -11490.7000, -1630.0200, 46.2701), (4339, 1739, 19, 309, -11491.2000, -1633.9800, 49.2467), (4339, 1739, 20, 309, -11495.0000, -1635.3200, 50.1587); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4339, 1739, 21, 309, -11496.1000, -1631.4800, 50.1587), (4339, 1739, 22, 309, -11497.2000, -1627.6400, 50.1587), (4339, 1739, 23, 309, -11498.3000, -1623.8000, 50.1587), @@ -129131,7 +129131,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1663, 4382, 0, 1, -740.0590, -2214.2300, 16.1374), (1663, 4382, 1, 1, -732.1470, -2213.0500, 17.9551), (1663, 4382, 2, 1, -724.2350, -2211.8600, 19.9724); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1663, 4382, 3, 1, -717.7370, -2207.2000, 22.3003), (1663, 4382, 4, 1, -711.2390, -2202.5300, 23.5039), (1663, 4382, 5, 1, -704.7400, -2197.8600, 26.2288), @@ -130132,7 +130132,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2341, 4308, 148, 0, 1728.8400, -683.3560, 49.2206), (2341, 4308, 149, 0, 1729.8800, -679.4930, 48.4609), (2341, 4308, 150, 0, 1736.7900, -675.4600, 46.2845); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2341, 4308, 151, 0, 1743.6300, -671.3160, 45.4180), (2341, 4308, 152, 0, 1749.1900, -665.5590, 45.5022), (2341, 4308, 153, 0, 1754.7400, -659.8020, 45.3945), @@ -131133,7 +131133,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4350, 810, 31, 0, -11141.7000, 1601.4700, 57.2341), (4350, 810, 32, 0, -11144.8000, 1604.0200, 59.5336), (4350, 810, 33, 0, -11147.9000, 1606.5700, 62.7857); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4350, 810, 34, 0, -11147.4000, 1614.5600, 64.7541), (4350, 810, 35, 0, -11147.2000, 1618.5600, 61.9019), (4350, 810, 36, 0, -11147.0000, 1622.5500, 58.6170), @@ -132134,7 +132134,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3666, 4252, 97, 571, 5184.9200, 2573.6200, 380.2940), (3666, 4252, 98, 571, 5184.9000, 2569.6200, 379.8400), (3666, 4252, 99, 571, 5184.8800, 2565.6200, 379.1650); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3666, 4252, 100, 571, 5184.8400, 2557.6200, 376.8810), (3666, 4252, 101, 571, 5184.8000, 2549.6200, 374.0220), (3666, 4252, 102, 571, 5184.7600, 2541.6200, 371.0690), @@ -133135,7 +133135,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4351, 2917, 43, 1, 6621.8300, -4677.4900, 706.2640), (4351, 2917, 44, 1, 6619.3100, -4680.5900, 706.4590), (4351, 2917, 45, 1, 6616.7900, -4683.7000, 705.8390); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4351, 2917, 46, 1, 6611.7500, -4689.9100, 704.0980), (4351, 2917, 47, 1, 6611.7100, -4693.9100, 702.6980), (4351, 2917, 48, 1, 6612.3300, -4701.8900, 701.1800), @@ -134136,7 +134136,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (2566, 4047, 66, 1, 6099.3100, -4194.7800, 634.5530), (2566, 4047, 67, 1, 6095.3200, -4195.0200, 633.4260), (2566, 4047, 68, 1, 6091.3200, -4195.2500, 632.6190); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (2566, 4047, 69, 1, 6087.3300, -4195.4900, 632.7250), (2566, 4047, 70, 1, 6083.3400, -4195.7200, 632.9830), (2566, 4047, 71, 1, 6079.3400, -4195.9600, 633.3080), @@ -135137,7 +135137,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (3753, 4352, 170, 1, 7160.2300, -4582.2300, 627.5670), (3753, 4352, 171, 1, 7156.2600, -4582.7300, 628.8610), (3753, 4352, 172, 1, 7152.2900, -4583.2400, 629.8920); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (3753, 4352, 173, 1, 7148.3300, -4583.7400, 631.0920), (3753, 4352, 174, 1, 7144.3600, -4584.2500, 632.2630), (3753, 4352, 175, 1, 7140.3900, -4584.7500, 633.4730), @@ -136138,7 +136138,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4353, 54, 77, 571, 3476.4500, 777.0960, 81.6409), (4353, 54, 78, 571, 3477.0200, 785.0760, 82.7002), (4353, 54, 79, 571, 3477.3100, 789.0650, 82.7381); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4353, 54, 80, 571, 3478.6300, 796.9560, 82.2016), (4353, 54, 81, 571, 3479.9400, 804.8480, 81.6764), (4353, 54, 82, 571, 3481.2500, 812.7390, 81.2013), @@ -137139,7 +137139,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1248, 4339, 104, 309, -11506.0000, -1636.4000, 61.0920), (1248, 4339, 105, 309, -11508.4000, -1639.6400, 61.0072), (1248, 4339, 106, 309, -11516.4000, -1639.3400, 58.8410); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1248, 4339, 107, 309, -11520.4000, -1639.1900, 58.2581), (1248, 4339, 108, 309, -11528.3000, -1638.5800, 60.4512), (1248, 4339, 109, 309, -11532.3000, -1638.2700, 61.0920), @@ -138140,7 +138140,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (1800, 3962, 73, 568, 89.4958, 1265.7300, -23.3505), (1800, 3962, 74, 568, 89.6138, 1257.7300, -23.3701), (1800, 3962, 75, 568, 89.8945, 1253.7400, -23.7921); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (1800, 3962, 76, 568, 91.6573, 1245.9300, -24.0076), (1800, 3962, 77, 568, 93.4200, 1238.1300, -24.0492), (1800, 3962, 78, 568, 94.3015, 1234.2300, -23.6111), @@ -139141,7 +139141,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (934, 4339, 67, 309, -11522.9000, -1598.7200, 58.2985), (934, 4339, 68, 309, -11514.9000, -1599.1300, 52.3072), (934, 4339, 69, 309, -11510.9000, -1599.3400, 50.7575); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (934, 4339, 70, 309, -11505.7000, -1605.4500, 50.1587), (934, 4339, 71, 309, -11503.1000, -1608.5000, 50.1587), (934, 4339, 72, 309, -11500.6000, -1611.5500, 50.1587), @@ -140142,7 +140142,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4371, 787, 6, 1, -1430.0400, 2901.4200, 137.0430), (4371, 787, 7, 1, -1431.3700, 2893.5400, 134.7350), (4371, 787, 8, 1, -1432.6900, 2885.6500, 134.2380); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4371, 787, 9, 1, -1434.0200, 2877.7600, 135.2450), (4371, 787, 10, 1, -1435.4700, 2869.8900, 135.0050), (4371, 787, 11, 1, -1436.9200, 2862.0200, 130.8670), @@ -141143,7 +141143,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4379, 358, 13, 0, -10405.9000, -3826.8300, -2.4172), (4379, 358, 14, 0, -10407.6000, -3830.4300, -2.4016), (4379, 358, 15, 0, -10411.5000, -3829.7400, 1.8338); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4379, 358, 16, 0, -10415.5000, -3829.0500, 5.9583), (4379, 358, 17, 0, -10419.4000, -3828.3600, 10.0828), (4379, 358, 18, 0, -10423.4000, -3827.6700, 14.2073), @@ -142144,7 +142144,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4381, 447, 29, 1, 6906.2600, -2296.8900, 590.5040), (4381, 447, 30, 1, 6902.4200, -2303.9000, 589.0490), (4381, 447, 31, 1, 6898.5700, -2310.9200, 586.3630); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4381, 447, 32, 1, 6896.6500, -2314.4300, 585.2650), (4381, 447, 33, 1, 6892.8000, -2321.4400, 584.2020), (4381, 447, 34, 1, 6890.8800, -2324.9500, 583.0890), @@ -143145,7 +143145,7 @@ INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id (4396, 1676, 110, 0, -10240.2000, -4034.3900, -92.1197), (4396, 1676, 111, 0, -10236.2000, -4034.7600, -94.3571), (4396, 1676, 112, 0, -10232.2000, -4035.1200, -96.6041); -INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES +INSERT IGNORE INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES (4396, 1676, 113, 0, -10228.3000, -4035.4900, -98.5026), (4396, 1676, 114, 0, -10224.3000, -4035.8500, -98.9923), (4396, 1676, 115, 0, -10221.4000, -4033.1200, -99.0160),