Skip to content

Commit

Permalink
polish: teleports
Browse files Browse the repository at this point in the history
there are probably more optimal teleports, but this is the simplest one assuming the user has done twilight's promise
  • Loading branch information
pajlada committed Oct 1, 2024
1 parent 0f9bb89 commit 52b06ea
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ public void setupSteps()
/// 4
// TODO: recommend teleport?
talkToSpiceMerchantInBazaar = new NpcStep(this, NpcID.SPICE_MERCHANT, new WorldPoint(1685, 3101, 0), "Talk to the Spice Merchant in the Bazaar in the middle of Civitas illa Fortis about the missing delivery.");
talkToSpiceMerchantInBazaar.addTeleport(civitasIllaFortisTeleport);
talkToSpiceMerchantInBazaar.addDialogStep("I'm here about a missing delivery.");
talkToSpiceMerchantInBazaar.addDialogStep("Could I have a look at that locked box?");
talkToSpiceMerchantInBazaar.addDialogStep("About that missing delivery...");
Expand Down Expand Up @@ -246,6 +247,7 @@ public void setupSteps()
/// 6
// Can save 50% of the time by teleporting to Civitas illa Fortis & running south-east, or using a Quetzal whistle to (?), but I don't have a whistle!
returnToEmelio = new NpcStep(this, NpcID.EMELIO, new WorldPoint(1753, 3074, 0), "Return to Emelio in Outer Fortis at the south-eastern entrance of Civitas illa Fortis to find the perfect ratio of ingredients for the kebab.");
returnToEmelio.addTeleport(civitasIllaFortisTeleport);

/// 8
var giveRecipeToEmelio = new NpcStep(this, NpcID.EMELIO, new WorldPoint(1753, 3074, 0), "Tell Emelio the recipe is perfect.");
Expand Down Expand Up @@ -397,7 +399,8 @@ public List<ItemRequirement> getItemRecommended()
staminaPotion,
prayerPotion,
combatGear,
food
food,
civitasIllaFortisTeleport.quantity(3)
);
}

Expand Down

0 comments on commit 52b06ea

Please sign in to comment.