Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions data/sql/world/base/zzz_tcg_vendors_setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
-- ============================================================

-- Garel Redrock
DELETE FROM `creature` WHERE (`id1` = 16070);
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(700000, 16070, 0, 0, 0, 0, 0, 1, 1, 0, -4641.38, -1106.84, 501.306, 0.746907, 300, 0, 0, 1220, 0, 0, 0, 0, 0, '', 0, 0, NULL);
DELETE FROM `creature` WHERE (`id` = 16070);
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(700000, 16070, 0, 0, 0, 1, 1, 0, -4641.38, -1106.84, 501.306, 0.746907, 300, 0, 0, 1220, 0, 0, 0, 0, 0, '', 0, 0, NULL);

-- Gurky (The Pink Baby Murloc)
DELETE FROM `creature` WHERE (`id1` = 16069);
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(6498, 16069, 0, 0, 1, 0, 0, 1, 1, 0, 1989.83, -4656.83, 27.6781, 0.628319, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL),
(700001, 16069, 0, 0, 0, 0, 0, 1, 1, 0, -4639.76, -1107.97, 501.32, 0.64638, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL);
DELETE FROM `creature` WHERE (`id` = 16069);
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(6498, 16069, 1, 0, 0, 1, 1, 0, 1989.83, -4656.83, 27.6781, 0.628319, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL),
(700001, 16069, 0, 0, 0, 1, 1, 0, -4639.76, -1107.97, 501.32, 0.64638, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL);

-- Rotate Murky (The Blue Baby Murloc) next to Ransin Donner
DELETE FROM `creature` WHERE (`id1` = 15186);
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(1792, 15186, 0, 0, 0, 0, 0, 1, 1, 0, -4638.07, -1109.05, 501.427, 0.628319, 300, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL),
(6493, 15186, 0, 0, 1, 0, 0, 1, 1, 0, 1992.19, -4651.05, 27.3074, 6.14356, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL);
DELETE FROM `creature` WHERE (`id` = 15186);
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(1792, 15186, 0, 0, 0, 1, 1, 0, -4638.07, -1109.05, 501.427, 0.628319, 300, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL),
(6493, 15186, 1, 0, 0, 1, 1, 0, 1992.19, -4651.05, 27.3074, 6.14356, 120, 0, 0, 42, 0, 0, 0, 0, 0, '', 0, 0, NULL);


-- ============================================================
Expand Down