From 9d9da7513383a7ebf4460ba3dcdb40ce5f153087 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:22:54 +0200 Subject: [PATCH 1/3] Update professions.sql Fix syntax errors --- sql/world/base/professions.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/world/base/professions.sql b/sql/world/base/professions.sql index bd4032e..85b327a 100644 --- a/sql/world/base/professions.sql +++ b/sql/world/base/professions.sql @@ -864,7 +864,8 @@ INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSki (4212, -380002, 0, 0, 0, 0); -- Master Leatherworking Trainer -INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (18754, -201028, 0, 0, 0, 0); +INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES +(18754, -201028, 0, 0, 0, 0), (18771, -201028, 0, 0, 0, 0), (19187, -201028, 0, 0, 0, 0), (21087, -201028, 0, 0, 0, 0), From cb90156bc47cd588017ea1255ea3f7858301b870 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:27:40 +0200 Subject: [PATCH 2/3] Update zone_eversong_woods.sql Fixed syntax error --- sql/world/base/zone_eversong_woods.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sql/world/base/zone_eversong_woods.sql b/sql/world/base/zone_eversong_woods.sql index 0561d32..b8439da 100644 --- a/sql/world/base/zone_eversong_woods.sql +++ b/sql/world/base/zone_eversong_woods.sql @@ -5,7 +5,9 @@ INSERT INTO `creature_questender` (`id`, `quest`) VALUES (15283, 8344); -- Windows to the Source (Warlock) DELETE FROM `creature_queststarter` WHERE `id`=15283 AND `quest`=8344; INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (15283, 8344); -INSERT INTO creature_loot_template (Entry, Item, Reference, Chance, QuestRequired, LootMode, GroupId, MinCount, MaxCount, Comment) VALUES + +DELETE FROM `creature_loot_template` WHERE `Entry`= 15298; +INSERT INTO `creature_loot_template` (Entry, Item, Reference, Chance, QuestRequired, LootMode, GroupId, MinCount, MaxCount, Comment) VALUES (15298, 20935, 0, 80, 1, 1, 0, 1, 1, 'Tainted Arcane Wraith - Tainted Wraith Essence'); -- Kanaria From 0bc28903106bd364a3c257041dc2959dd1f591d7 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:46:40 +0200 Subject: [PATCH 3/3] Update zone_eversong_woods.sql fix --- sql/world/base/zone_eversong_woods.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/world/base/zone_eversong_woods.sql b/sql/world/base/zone_eversong_woods.sql index b8439da..3714078 100644 --- a/sql/world/base/zone_eversong_woods.sql +++ b/sql/world/base/zone_eversong_woods.sql @@ -6,7 +6,7 @@ INSERT INTO `creature_questender` (`id`, `quest`) VALUES (15283, 8344); DELETE FROM `creature_queststarter` WHERE `id`=15283 AND `quest`=8344; INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (15283, 8344); -DELETE FROM `creature_loot_template` WHERE `Entry`= 15298; +DELETE FROM `creature_loot_template` WHERE `Entry`= 15298 AND `Item`=20935; INSERT INTO `creature_loot_template` (Entry, Item, Reference, Chance, QuestRequired, LootMode, GroupId, MinCount, MaxCount, Comment) VALUES (15298, 20935, 0, 80, 1, 1, 0, 1, 1, 'Tainted Arcane Wraith - Tainted Wraith Essence');