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

fix: Add better item recommended to Shilo Village #1819

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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 @@ -332,11 +332,12 @@ public void setupSteps()
beads.highlighted());

searchPalms = new ObjectStep(this, ObjectID.PALM_TREE, new WorldPoint(2916, 3093, 0),
"Search the palm trees in the north east of Karamja.", beadsOfTheDead.equipped(), boneShard, chisel, bones3,
combatGear);
"Search the palm trees in the north east of Karamja. Come equipped for a boss fight.",
List.of(beadsOfTheDead.equipped(), boneShard, chisel, bones3,
combatGear), List.of(crumbleUndead, food));

searchDoors = new ObjectStep(this, NullObjectID.NULL_34673, new WorldPoint(2916, 3091, 0),
"Right-click search the doors behind the palm trees.");
"Right-click search the doors behind the palm trees.", combatGear);

// 8180 opened?
makeKey = new DetailedQuestStep(this, "Use a chisel on the bone shard.", chisel.highlighted(), boneShard.highlighted());
Expand Down Expand Up @@ -431,7 +432,8 @@ public List<PanelDetails> getPanels()
allSteps.add(new PanelDetails("Free Raiysha",
Arrays.asList(searchRocksOnCairn, searchDolmen, useChiselOnPommel, useWireOnBeads, searchPalms,
searchDoors, makeKey, useKeyOnDoor, enterDoor, useBonesOnDoor, searchDolmenForFight, killNazastarool,
pickupCorpse, enterCairnAgain, useCorpseOnDolmen), chisel, bronzeWire, bones3));
pickupCorpse, enterCairnAgain, useCorpseOnDolmen), List.of(chisel, bronzeWire, bones3),
List.of(combatGear, food, crumbleUndead, prayerPotions)));

return allSteps;
}
Expand Down
Loading