From aa57744d2a271aa52e6969696d0c6982d9f13ae0 Mon Sep 17 00:00:00 2001 From: JohnsonMichaels123 <75835176+JohnsonMichaels123@users.noreply.github.com> Date: Sun, 13 Dec 2020 15:27:24 -0800 Subject: [PATCH] Lost City Rewards Added (#433) Lost City Reward gives the player 3 quest points and access to Zanaris. --- .../com/rebotted/game/content/quests/QuestRewards.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/2006Redone Server/src/main/java/com/rebotted/game/content/quests/QuestRewards.java b/2006Redone Server/src/main/java/com/rebotted/game/content/quests/QuestRewards.java index 54cc6384..9f52d6a3 100644 --- a/2006Redone Server/src/main/java/com/rebotted/game/content/quests/QuestRewards.java +++ b/2006Redone Server/src/main/java/com/rebotted/game/content/quests/QuestRewards.java @@ -160,4 +160,12 @@ public class QuestRewards { player.questPoints++; player.shieldArrav = 8; } + + public static void lostCityReward(Player player) { + questReward(player, "Lost City", "3 Quest Points", "Access to Zanaris", "", "", "", "", 0); + QUEST_NAME = "Lost City"; + player.getPacketSender().sendString("@gre@" + QUEST_NAME + "", 7367); + player.questPoints += 3; + player.lostCity = 3; + } }