Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bone Voyage TeleportItemRequirement and DeathToTheDorgeshuun highligh… #1284

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.questhelper.requirements.Requirement;
import com.questhelper.requirements.ZoneRequirement;
import com.questhelper.requirements.conditional.Conditions;
import com.questhelper.requirements.item.TeleportItemRequirement;
import com.questhelper.requirements.player.Favour;
import com.questhelper.requirements.player.FavourRequirement;
import com.questhelper.requirements.player.SkillRequirement;
Expand Down Expand Up @@ -156,14 +157,14 @@ public void setupRequirements()
vodka2 = new ItemRequirement("Vodka", ItemID.VODKA, 2);
marrentillPotionUnf = new ItemRequirement("Marrentill potion (unf)", ItemID.MARRENTILL_POTION_UNF);

digsiteTeleport = new ItemRequirement("Teleports to the Digsite", ItemID.DIGSITE_PENDANT_4);
digsiteTeleport = new TeleportItemRequirement("Teleports to the Digsite", ItemID.DIGSITE_PENDANT_4);
digsiteTeleport.addAlternates(ItemID.DIGSITE_PENDANT_5, ItemID.DIGSITE_TELEPORT);
woodcuttingGuildTeleport = new ItemRequirement("Teleport to the Woodcutting Guild", ItemCollections.SKILLS_NECKLACES);
woodcuttingGuildTeleport = new TeleportItemRequirement("Teleport to the Woodcutting Guild", ItemCollections.SKILLS_NECKLACES);
woodcuttingGuildTeleport.addAlternates(ItemID.XERICS_TALISMAN, ItemID.KHAREDSTS_MEMOIRS);
varrockTeleport = new ItemRequirement("Varrock teleport", ItemID.VARROCK_TELEPORT);
sarimTeleport = new ItemRequirement("Port Sarim teleport", ItemCollections.AMULET_OF_GLORIES);
varrockTeleport = new TeleportItemRequirement("Varrock teleport", ItemID.VARROCK_TELEPORT);
sarimTeleport = new TeleportItemRequirement("Port Sarim teleport", ItemCollections.AMULET_OF_GLORIES);
sarimTeleport.addAlternates(ItemID.DRAYNOR_MANOR_TELEPORT);
lumberyardTeleport = new ItemRequirement("Lumberyard teleport", ItemID.LUMBERYARD_TELEPORT);
lumberyardTeleport = new TeleportItemRequirement("Lumberyard teleport", ItemID.LUMBERYARD_TELEPORT);

hammer = new ItemRequirement("Hammer", ItemCollections.HAMMER);
ironBar = new ItemRequirement("Iron bar", ItemID.IRON_BAR);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ private void setupConditionalSteps()
goTalkToMistag.addStep(inMines, talkToMistag);
goTalkToMistag.addStep(inTunnels, talkToKazgar);
goTalkToMistag.addStep(inBasement, climbThroughHole);
goTalkToMistag.addDialogSteps("What is this favour?", "I'll act as a guide.");
goTalkToMistag.addDialogSteps("What is this favour?", "I'll act as a guide.", "Can you show me the way out of the mines?");

goTalkToZanik = new ConditionalStep(this, goDownToBasement, "Talk to Zanik in Lumbridge Castle's basement.", hamHood2, hamShirt2, hamRobe2, hamBoot2, hamGloves2, hamCloak2, hamLogo2);
goTalkToZanik.addStep(inMines, talkToMistagToTravel);
Expand All @@ -412,6 +412,7 @@ private void setupConditionalSteps()
if (client.getLocalPlayer() != null)
{
goTalkToZanik.addDialogStep("Yes, I'm " + client.getLocalPlayer().getName() + "!");
goTalkToZanik.addDialogStep("Yes, I have two sets of robes!");
}

goHaveZanikFollow = new ConditionalStep(this, goDownToBasement, "Talk to Zanik in Lumbridge Castle's basement.");
Expand Down