First Commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
Please read [this](http://www.azerothcore.org/wiki/Dealing-with-SQL-files) before adding new SQL-update files.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,11 @@
|
||||
UPDATE `updates_include`
|
||||
SET `path` = '$/data/sql/playerbots/updates'
|
||||
WHERE `state` = 'RELEASED';
|
||||
|
||||
UPDATE `updates_include`
|
||||
SET `path` = '$/data/sql/playerbots/custom'
|
||||
WHERE `state` = 'CUSTOM';
|
||||
|
||||
UPDATE `updates_include`
|
||||
SET `path` = '$/data/sql/playerbots/archive'
|
||||
WHERE `state` = 'ARCHIVED';
|
||||
@@ -0,0 +1,4 @@
|
||||
-- Update max_level for TBC Heroic dungeons in `playerbots_dungeon_suggestion_definition`
|
||||
UPDATE `playerbots_dungeon_suggestion_definition`
|
||||
SET `max_level` = 73
|
||||
WHERE `id` IN (40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56);
|
||||
@@ -0,0 +1,12 @@
|
||||
INSERT INTO `playerbots_travelnode` (`id`, `name`, `map_id`, `x`, `y`, `z`, `linked`) VALUES
|
||||
(3780, 'Highlord Mograine', 533, 2524.32, -2951.28, 245.633, 1);
|
||||
|
||||
INSERT INTO `playerbots_travelnode_path` (`node_id`, `to_node_id`, `nr`, `map_id`, `x`, `y`, `z`) VALUES
|
||||
(3780, 472, 0, 533, 2524.32, -2951.28, 245.633),
|
||||
(3780, 472, 1, 533, 2528.79, -2948.58, 245.633),
|
||||
(3780, 757, 0, 533, 2524.32, -2951.28, 245.633),
|
||||
(3780, 757, 1, 533, 2517.62, -2959.38, 245.636);
|
||||
|
||||
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
|
||||
(3780, 472, 1, 0, 5.3221, 0, 0, 1, 83, 0, 0),
|
||||
(3780, 757, 1, 0, 10.6118, 0, 0, 1, 83, 0, 0);
|
||||
Reference in New Issue
Block a user