Lost City Rewards Added (#433)

Lost City Reward gives the player 3 quest points and access to Zanaris.
This commit is contained in:
JohnsonMichaels123
2020-12-13 15:27:24 -08:00
committed by GitHub
parent 38b4dbcf00
commit aa57744d2a
@@ -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;
}
}