Added Quest Completion Condition for Lost City (#440)

- Teleporting through Lumbridge Swamp Shed completes Lost City
- Reward is given (3QP + Access to Zanaris)
This commit is contained in:
JohnsonMichaels123
2020-12-15 05:00:05 -08:00
committed by GitHub
parent 59b9dbf460
commit 06ae65534c
@@ -1897,6 +1897,12 @@ public class ObjectsActions {
if (player.playerEquipment[player.playerWeapon] == 772) {
player.getPlayerAssistant().startTeleport(2452, 4470, 0, "modern");
player.getPacketSender().sendMessage("You are suddenly teleported away.");
if (player.lostCity == 2 || player.lostCity == 1)
{
player.getPacketSender().sendMessage("You have found the Lost City of Zanaris!");
QuestRewards.lostCityReward(player);
}
}
break;