Skip to content

Commit

Permalink
Add more hidden periods
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Oct 1, 2023
1 parent f3bfdd1 commit 8ffcd66
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,40 +127,40 @@ protected void setupSteps()
));

pushSouthernMonolithUp = new NpcStep(getQuestHelper(), NpcID.BIG_MONOLITH, regionPoint(37, 21),
"Push the monolith north once");
"Push the monolith north once.");
pushSouthernMonolithUp.setMaxRoamRange(3);

getFirstShapes = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(39, 25),
"Open the chest for some shapes");
"Open the chest for some shapes.");
getFirstShapes.addSubSteps(pushSouthernMonolithUp);

pushSWMonolithNorth = new NpcStep(getQuestHelper(), NpcID.BIG_MONOLITH, regionPoint(35, 29),
"Push the south-west monolith north once");
"Push the south-west monolith north once.");
pushSWMonolithNorth.setMaxRoamRange(2);

pushNWMonolithEast = new NpcStep(getQuestHelper(), NpcID.BIG_MONOLITH, regionPoint(35, 33),
"Push the north-west monolith east once");
"Push the north-west monolith east once.");
pushNWMonolithEast.setMaxRoamRange(2);

getSecondShapes = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(36, 38),
"Open the chest for some more shapes. If the chest doesn't give you any shapes, drop the shapes in your inventory first, then click the chest, then pick up the shapes from the ground.");
getSecondShapes.addSubSteps(pushSWMonolithNorth, pushNWMonolithEast);

picklockChestForFirstKey = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49614, regionPoint(33, 37),
"Picklock the chest for a key");
"Picklock the chest for a key.");
picklockChestForFirstKey.addAlternateObjects(ObjectID.CHEST_49615);
picklockChestForFirstKey.addSubSteps(pushSWMonolithNorth, pushNWMonolithEast);

pushSmallMonolithSouth = new NpcStep(getQuestHelper(), NpcID.SMALL_MONOLITH, regionPoint(39, 33),
"Push the small monolith south once");
"Push the small monolith south once.");
pushSmallMonolithSouth.setMaxRoamRange(2);

pushNWMonolithWest = new NpcStep(getQuestHelper(), NpcID.BIG_MONOLITH, regionPoint(36, 33),
"Push the north-west monolith west once");
"Push the north-west monolith west once.");
pushNWMonolithWest.setMaxRoamRange(2);

openChestForCrystalChimeSeed = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49612, regionPoint(37, 34),
"Search the chest for the strongroom key and crystal chime seed");
"Search the chest for the strongroom key and crystal chime seed.");
openChestForCrystalChimeSeed.addSubSteps(pushSmallMonolithSouth, pushNWMonolithWest);

getThirdShapes = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(41, 29),
Expand All @@ -175,16 +175,16 @@ protected void setupSteps()
var machineRoomKey = new ItemRequirement("Strongroom key", ItemID.STRONGROOM_KEY, 1);

inspectSingingBowl = new ObjectStep(getQuestHelper(), ObjectID.SINGING_BOWL_49610, regionPoint(41, 32),
"Inspect the Singing bowl, then click it again to create the Crystal chime", crystalChimeSeed);
"Inspect the Singing bowl, then click it again to create the Crystal chime.", crystalChimeSeed);
inspectSingingBowl.addAlternateObjects(ObjectID.SINGING_BOWL_49611);
inspectSingingBowl.addDialogStep("Yes.");

pushSEMonolithWest = new NpcStep(getQuestHelper(), NpcID.BIG_MONOLITH, regionPoint(39, 29),
"Push the south-east monolith west once");
"Push the south-east monolith west once.");
pushSEMonolithWest.setMaxRoamRange(2);

unlockTheGate = new ObjectStep(getQuestHelper(), ObjectID.GATE_49657, regionPoint(30, 31),
"Unlock the gate to Yewnock's machine room", crystalChime, machineRoomKey);
"Unlock the gate to Yewnock's machine room.", crystalChime, machineRoomKey);
}

@Subscribe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,11 @@ public void startUp()
protected void setupSteps()
{
getMoreDiscs = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(34, 31), "Get more discs from the chests outside. You can drop discs before you get more. You can also use the exchanger next to Yewnock's machine.", true);
useExchanger = new ObjectStep(getQuestHelper(), ObjectID.YEWNOCKS_EXCHANGER, regionPoint(22, 31), "Use the exchanger to get the right discs");
useExchanger = new ObjectStep(getQuestHelper(), ObjectID.YEWNOCKS_EXCHANGER, regionPoint(22, 31), "Use the exchanger to get the right discs.");
clickMachine = new ObjectStep(getQuestHelper(), ObjectID.YEWNOCKS_MACHINE_49662, regionPoint(22, 32), "Operate Yewnock's machine. If you run out of discs you can get new ones from the regular chests in the previous room.");
clickMachineOnce = new ObjectStep(getQuestHelper(), ObjectID.YEWNOCKS_MACHINE_49662, regionPoint(22, 32), "Operate Yewnock's machine to calculate a solution.");
selectDisc = new DiscInsertionStep(getQuestHelper(), "Select the highlighted disc in your inventory");
exchangeDisc = new DiscInsertionStep(getQuestHelper(), "Select one of the highlighted discs in your inventory");
selectDisc = new DiscInsertionStep(getQuestHelper(), "Select the highlighted disc in your inventory.");
exchangeDisc = new DiscInsertionStep(getQuestHelper(), "Select one of the highlighted discs in your inventory.");

widgetOpen = new WidgetPresenceRequirement(848, 0);
exchangerWidgetOpen = new WidgetPresenceRequirement(849, 0);
Expand Down

0 comments on commit 8ffcd66

Please sign in to comment.