Quest 10975 and 10977 proper kill count messages.

Contributed by manax182.
This commit is contained in:
MobiusDevelopment
2021-03-04 22:33:43 +00:00
parent 1804500c33
commit d80438c173
3 changed files with 6 additions and 2 deletions

View File

@@ -180,7 +180,7 @@ public class Q10975_LetsPayRespectsToOurFallenBrethren extends Quest
if ((qs != null) && qs.isCond(1))
{
final Set<NpcLogListHolder> 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);

View File

@@ -177,7 +177,8 @@ public class Q10977_TracesOfBattle extends Quest
if ((qs != null) && qs.isCond(1))
{
final Set<NpcLogListHolder> 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);

View File

@@ -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;