From c63ad4ccfa6b0ba008f473636fc63145e38a0b56 Mon Sep 17 00:00:00 2001 From: MitchesD Date: Fri, 10 Oct 2014 14:42:06 +0200 Subject: DB/Creature: fixed issue when Valkyrs (Argent Tournament) could kill their guards and players in combat distance. --- sql/updates/world/2014_10_10_00_world.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/2014_10_10_00_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_00_world.sql b/sql/updates/world/2014_10_10_00_world.sql new file mode 100644 index 00000000000..3ac4e678fec --- /dev/null +++ b/sql/updates/world/2014_10_10_00_world.sql @@ -0,0 +1,5 @@ +UPDATE `creature_template` SET `unit_flags`=320, `flags_extra`=2 WHERE `entry` IN(36065,36066); +DELETE FROM `creature_template_addon` WHERE `entry` IN(36066, 36065); +INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(36066, 0, 0x2000000, 0x1, ''), +(36065, 0, 0x2000000, 0x1, ''); -- cgit v1.2.3 From 7a8c251c37230f15420f55f5f89cc024c2a1ac73 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 10 Oct 2014 17:33:14 +0200 Subject: DB/Gameobject: Add missing gameobject --- sql/updates/world/2014_10_10_01_world_335.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/2014_10_10_01_world_335.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_01_world_335.sql b/sql/updates/world/2014_10_10_01_world_335.sql new file mode 100644 index 00000000000..624286e6910 --- /dev/null +++ b/sql/updates/world/2014_10_10_01_world_335.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `gameobject_template` WHERE `entry` = 180671; +INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `data0`, `data1`, `VerifiedBuild`) VALUES +(180671,3,644,'Xandivious\' Demon Bag',43,17516,-18019); -- cgit v1.2.3 From 4888269c7f456d52d52e4c95aae8b1240e47d517 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 10 Oct 2014 18:16:25 +0200 Subject: DB/Loot: Toravon It should drop 2 Emblems of Frost in 10 and 25 player By Pirricli, closes #13293 --- sql/updates/world/2014_10_10_02_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/2014_10_10_02_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_02_world.sql b/sql/updates/world/2014_10_10_02_world.sql new file mode 100644 index 00000000000..8f971f8ad1e --- /dev/null +++ b/sql/updates/world/2014_10_10_02_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_loot_template` SET `item`=49426 WHERE `entry`=38433 AND `item`=47241; -- cgit v1.2.3 From 3b03798a48cb1ae4b39846b4dd772857df46e541 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 10 Oct 2014 18:19:14 +0200 Subject: DB/Gameobject: Add loot for The Root of All Evil --- sql/updates/world/2014_10_10_03_world.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/2014_10_10_03_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_03_world.sql b/sql/updates/world/2014_10_10_03_world.sql new file mode 100644 index 00000000000..2d21cb6d010 --- /dev/null +++ b/sql/updates/world/2014_10_10_03_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 17516; +INSERT INTO `gameobject_loot_template` (`Entry`,`Item`,`Chance`,`QuestRequired`) VALUES +(17516,21145,100,1); -- cgit v1.2.3 From 39362fe3d4653c9db9e22c1d158d0e8a4b123e89 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 10 Oct 2014 19:13:31 +0200 Subject: DB/Gameobject: Add 2 more missing gameobjects --- sql/updates/world/2014_10_10_04_world_335.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/2014_10_10_04_world_335.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_04_world_335.sql b/sql/updates/world/2014_10_10_04_world_335.sql new file mode 100644 index 00000000000..c32f68fb400 --- /dev/null +++ b/sql/updates/world/2014_10_10_04_world_335.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `gameobject_template` WHERE `entry` IN (202947,202948); +INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `data0`, `data1`, `VerifiedBuild`) VALUES +(202947,3,9467,'Cologne Neutralizer',93,28677,15211), +(202948,3,9468,'Perfume Neutralizer',93,28678,15211); -- cgit v1.2.3 From 4cc5c11b7e750dae2f3cffb6262a94c8dfc998ac Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 10 Oct 2014 19:15:43 +0200 Subject: DB/Gameobject: add loot for Cologne/Perfume Neutralizer --- sql/updates/world/2014_10_10_05_world.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/2014_10_10_05_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2014_10_10_05_world.sql b/sql/updates/world/2014_10_10_05_world.sql new file mode 100644 index 00000000000..0a93850972e --- /dev/null +++ b/sql/updates/world/2014_10_10_05_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE `Entry` IN (28677,28678); +INSERT INTO `gameobject_loot_template` (`Entry`,`Item`,`Chance`,`QuestRequired`) VALUES +(28677,49352,100,1), +(28678,49351,100,1); -- cgit v1.2.3