From d80438c173f8aa5624137aaf634ded1fab99d444 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 4 Mar 2021 22:33:43 +0000 Subject: [PATCH] Quest 10975 and 10977 proper kill count messages. Contributed by manax182. --- .../Q10975_LetsPayRespectsToOurFallenBrethren.java | 2 +- .../quests/Q10977_TracesOfBattle/Q10977_TracesOfBattle.java | 3 ++- .../java/org/l2jmobius/gameserver/network/NpcStringId.java | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10975_LetsPayRespectsToOurFallenBrethren/Q10975_LetsPayRespectsToOurFallenBrethren.java b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10975_LetsPayRespectsToOurFallenBrethren/Q10975_LetsPayRespectsToOurFallenBrethren.java index 239459eb86..631e8a0065 100644 --- a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10975_LetsPayRespectsToOurFallenBrethren/Q10975_LetsPayRespectsToOurFallenBrethren.java +++ b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10975_LetsPayRespectsToOurFallenBrethren/Q10975_LetsPayRespectsToOurFallenBrethren.java @@ -180,7 +180,7 @@ public class Q10975_LetsPayRespectsToOurFallenBrethren extends Quest if ((qs != null) && qs.isCond(1)) { final Set holder = new HashSet<>(); - holder.add(new NpcLogListHolder(NpcStringId.KILL_MONSTERS_IN_THE_FIELDS_OF_MASSACRE.getId(), true, qs.getInt(KILL_COUNT_VAR))); + holder.add(new NpcLogListHolder(NpcStringId.KILL_MONSTERS_IN_THE_FIELDS_OF_MASSACRE_2.getId(), true, qs.getInt(KILL_COUNT_VAR))); return holder; } return super.getNpcLogList(player); diff --git a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10977_TracesOfBattle/Q10977_TracesOfBattle.java b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10977_TracesOfBattle/Q10977_TracesOfBattle.java index 9f14a2e17c..e641bb793b 100644 --- a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10977_TracesOfBattle/Q10977_TracesOfBattle.java +++ b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/scripts/quests/Q10977_TracesOfBattle/Q10977_TracesOfBattle.java @@ -177,7 +177,8 @@ public class Q10977_TracesOfBattle extends Quest if ((qs != null) && qs.isCond(1)) { final Set holder = new HashSet<>(); - holder.add(new NpcLogListHolder(NpcStringId.KILL_MONSTERS_ON_THE_PLAINS_OF_GLORY.getId(), true, qs.getInt(KILL_COUNT_VAR))); + holder.add(new NpcLogListHolder(NpcStringId.KILL_MONSTERS_ON_THE_WAR_TORN_PLAINS.getId(), true, qs.getInt(KILL_COUNT_VAR))); + holder.add(new NpcLogListHolder(NpcStringId.LEVEL_70_ACCOMPLISHED, player.getLevel() > 69 ? 1 : 0)); return holder; } return super.getNpcLogList(player); diff --git a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/NpcStringId.java index 223938d2dc..65cfa9414e 100644 --- a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/NpcStringId.java @@ -11656,6 +11656,9 @@ public class NpcStringId @ClientString(id = 529603, message = "|Lv. 81-99| Seven Signs, One Who Seeks the Power of the Seal (Completed)") public static NpcStringId LV_81_99_SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_COMPLETED; + @ClientString(id = 529806, message = "Level 70 accomplished") + public static NpcStringId LEVEL_70_ACCOMPLISHED; + @ClientString(id = 529901, message = "How to Stand Up For Yourself") public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF;