From ae22b9988854c8e070f55459b459311c82a98936 Mon Sep 17 00:00:00 2001 From: Trident101 Date: Wed, 13 Dec 2023 11:59:41 +0000 Subject: [PATCH] Added missing Zanaris examines Fixed temple, north staircase interaction --- Server/data/configs/npc_configs.json | 30 +++++++++++++++++++ .../game/global/action/SpecialLadders.java | 3 ++ 2 files changed, 33 insertions(+) diff --git a/Server/data/configs/npc_configs.json b/Server/data/configs/npc_configs.json index f40abb12c..9f1ab584b 100644 --- a/Server/data/configs/npc_configs.json +++ b/Server/data/configs/npc_configs.json @@ -6943,6 +6943,16 @@ "range_level": "1", "attack_level": "1" }, + { + "examine": "A being from a mysterious realm.", + "name": "Jukat", + "id": "564" + }, + { + "examine": "Is he invisible, or just floating clothing?", + "name": "Irksol", + "id": "566" + }, { "examine": "Looks strange and mysterious.", "melee_animation": "0", @@ -16521,6 +16531,11 @@ "range_level": "1", "attack_level": "25" }, + { + "examine": "She looks dangerous!", + "name": "Chaeldar", + "id": "1598" + }, { "examine": "A spiky crawling critter. ", "slayer_task": "16", @@ -31774,6 +31789,11 @@ "range_level": "1", "attack_level": "1" }, + { + "examine": "White and fluffy", + "name": "Sheep", + "id": "3310" + }, { "name": "Tanglefoot", "defence_level": "1", @@ -38364,6 +38384,11 @@ "range_level": "1", "attack_level": "1" }, + { + "examine": "A healing fairy.", + "name": "Fairy Nuff", + "id": "4434" + }, { "examine": "Horseplay.", "melee_animation": "0", @@ -44958,6 +44983,11 @@ "range_level": "1", "attack_level": "1" }, + { + "examine": "White and fluffy", + "name": "Sheep", + "id": "5164" + }, { "examine": "This goat belongs to the mountain camp people.", "melee_animation": "0", diff --git a/Server/src/main/core/game/global/action/SpecialLadders.java b/Server/src/main/core/game/global/action/SpecialLadders.java index 32f20d312..a2a88637f 100644 --- a/Server/src/main/core/game/global/action/SpecialLadders.java +++ b/Server/src/main/core/game/global/action/SpecialLadders.java @@ -56,6 +56,9 @@ public enum SpecialLadders implements LadderAchievementCheck { }, PORT_SARIM_RAT_PITS_UP(new Location(2962,9651,0), new Location(3018,3231,0)), ENTRANA_GLASSBLOWING_PIPE_HOUSE_DOWN(new Location(2816, 3352, 1), new Location(2817, 3352, 0)), + PATERDOMUS_TEMPLE_STAIRCASE_NORTH_UP(new Location(3415, 3490, 0), new Location(3415, 3491, 1)), + PATERDOMUS_TEMPLE_STAIRCASE_NORTH_DOWN(new Location(3415, 3491, 1), new Location(3414,3491,0)), + PATERDOMUS_TEMPLE_STAIRCASE_SOUTH_DOWN(new Location(3415, 3486,1), new Location(3414, 3486,0)), PHASMATYS_BAR_DOWN(new Location(3681,3498,0), new Location(3682,9961,0)), PHASMATYS_BAR_UP(new Location(3682,9962,0), new Location(3681,3497,0)), SEERS_VILLAGE_SPINNING_HOUSE_ROOFTOP_UP(new Location(2715,3472,1), new Location(2714,3472,3)) {