From 8993e9e8eb846b69e16d0a5432b967016b874a24 Mon Sep 17 00:00:00 2001 From: Justin Levine Date: Wed, 13 Nov 2024 16:15:44 -0800 Subject: [PATCH 1/2] Update HolyGrail.java Added reccomended Melee to Combat Gear and Black Titan Knight step, as using ranged or magic is like watching paint dry. --- .../com/questhelper/helpers/quests/holygrail/HolyGrail.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java b/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java index ff98bb8808..ef059ea9a1 100644 --- a/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java +++ b/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java @@ -160,7 +160,7 @@ protected void setupRequirements() sixtyCoins = new ItemRequirement("Coins", ItemCollections.COINS, 60); antipoison = new ItemRequirement("Antipoison", ItemID.ANTIPOISON4); food = new ItemRequirement("Food", ItemCollections.GOOD_EATING_FOOD, -1); - combatGear = new ItemRequirement("A weapon and armour", -1, -1).isNotConsumed(); + combatGear = new ItemRequirement("A weapon and armour (Melee Reccomended)", -1, -1).isNotConsumed(); combatGear.setDisplayItemId(BankSlotIcons.getCombatGear()); emptyInvSpot = new ItemRequirement("Empty Inventory Spot", -1, 1); goldFeather = new ItemRequirement("Magic gold feather", ItemID.MAGIC_GOLD_FEATHER); @@ -271,7 +271,7 @@ public void setupSteps() goToTeleportLocation1 = new DetailedQuestStep(this, teleportLocationPoint, "Go to the tower on Karamja near gold mine west of Brimhaven.", twoMagicWhistles, excalibur); blowWhistle1 = new ItemStep(this, "Blow the whistle once you are underneath of the tower.", highlightMagicWhistle1, excalibur); - attackTitan = new NpcStep(this, NpcID.BLACK_KNIGHT_TITAN, "Kill the Black Knight Titan with Excalibur. (You only need to deal the killing blow with excalibur!)", twoMagicWhistles, excalibur); + attackTitan = new NpcStep(this, NpcID.BLACK_KNIGHT_TITAN, "Kill the Black Knight Titan with Excalibur. Melee is reccomended as it has high Ranged and Magic Defense. (You only need to deal the killing blow with excalibur!)", twoMagicWhistles, excalibur); talkToFisherman = new NpcStep(this, NpcID.FISHERMAN_4065, new WorldPoint(2798, 4706, 0), "Talk to the fisherman by the river. After talking to him walk West to the castle."); talkToFisherman.addDialogStep("Any idea how to get into the castle?"); pickupBell = new DetailedQuestStep(this, new WorldPoint(2762, 4694, 0), "Pickup the bell outside of the castle."); From f2269dc7b7af2939ac53b9e4caaeca7b93915700 Mon Sep 17 00:00:00 2001 From: Zoinkwiz Date: Mon, 18 Nov 2024 22:42:41 +0000 Subject: [PATCH 2/2] Update HolyGrail.java --- .../com/questhelper/helpers/quests/holygrail/HolyGrail.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java b/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java index ef059ea9a1..1725845384 100644 --- a/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java +++ b/src/main/java/com/questhelper/helpers/quests/holygrail/HolyGrail.java @@ -160,7 +160,7 @@ protected void setupRequirements() sixtyCoins = new ItemRequirement("Coins", ItemCollections.COINS, 60); antipoison = new ItemRequirement("Antipoison", ItemID.ANTIPOISON4); food = new ItemRequirement("Food", ItemCollections.GOOD_EATING_FOOD, -1); - combatGear = new ItemRequirement("A weapon and armour (Melee Reccomended)", -1, -1).isNotConsumed(); + combatGear = new ItemRequirement("A weapon and armour (melee recommended)", -1, -1).isNotConsumed(); combatGear.setDisplayItemId(BankSlotIcons.getCombatGear()); emptyInvSpot = new ItemRequirement("Empty Inventory Spot", -1, 1); goldFeather = new ItemRequirement("Magic gold feather", ItemID.MAGIC_GOLD_FEATHER); @@ -271,7 +271,7 @@ public void setupSteps() goToTeleportLocation1 = new DetailedQuestStep(this, teleportLocationPoint, "Go to the tower on Karamja near gold mine west of Brimhaven.", twoMagicWhistles, excalibur); blowWhistle1 = new ItemStep(this, "Blow the whistle once you are underneath of the tower.", highlightMagicWhistle1, excalibur); - attackTitan = new NpcStep(this, NpcID.BLACK_KNIGHT_TITAN, "Kill the Black Knight Titan with Excalibur. Melee is reccomended as it has high Ranged and Magic Defense. (You only need to deal the killing blow with excalibur!)", twoMagicWhistles, excalibur); + attackTitan = new NpcStep(this, NpcID.BLACK_KNIGHT_TITAN, "Kill the Black Knight Titan with Excalibur. Melee is recommended as it has high Ranged and Magic defence. (You only need to deal the killing blow with excalibur!)", twoMagicWhistles, excalibur); talkToFisherman = new NpcStep(this, NpcID.FISHERMAN_4065, new WorldPoint(2798, 4706, 0), "Talk to the fisherman by the river. After talking to him walk West to the castle."); talkToFisherman.addDialogStep("Any idea how to get into the castle?"); pickupBell = new DetailedQuestStep(this, new WorldPoint(2762, 4694, 0), "Pickup the bell outside of the castle.");