Theraze
Active member
1) Are you using newLife? That's a 'feature' of newLife if you don't have a 100% familiar set.
2) Nope, it actually unlocks the gallery FIRST if you're a muscle class or in a bugbear run. Any chance you're using BBB or something else that might be messing up the script's attempts to unlock the gallery? Nothing we can do about you using other scripts that are conflicting.
3) Doesn't happen for me. It's always unlocked the peak. Do you have any logs or anything showing it aborting?
Regarding number 2.
Clearly showing that it's unlocking the gallery fully, including the conservatory adventuring, before it moves on to unlocking the second floor.
2) Nope, it actually unlocks the gallery FIRST if you're a muscle class or in a bugbear run. Any chance you're using BBB or something else that might be messing up the script's attempts to unlock the gallery? Nothing we can do about you using other scripts that are conflicting.
3) Doesn't happen for me. It's always unlocked the peak. Do you have any logs or anything showing it aborting?
Regarding number 2.
Code:
boolean bcascManorLibrary() {
if (checkStage("manorlibrary")) return true;
set_property("choiceAdventure80", "99"); //(Rise) - this always needs to be set. It's Fall that has the conservatory adventure.
set_property("choiceAdventure87", "2"); //(Read Fall) - May as well always set this to read Chapter 2.
if (my_primestat() == $stat[Muscle] || my_path() == "Bugbear Invasion") {
//If you're a muscle class, then you'll need to open the conservatory. It's an auto-stop.
while (get_property("lastGalleryUnlock") != my_ascensions()) {
set_property("choiceAdventure81", "1"); //(Fall) Get the Gallery adventure.
bumAdv($location[The Haunted Library], "", "", "1 choiceadv", "Unlocking the Gallery Adventure thingymajig", "-");
}
while (contains_text(visit_url("place.php?whichplace=spookyraven1"), "place=gallery")) {
bumAdv($location[The Haunted Conservatory], "", "", "1 Spookyraven Gallery Key", "Getting the Gallery Key", "-");
}
}
//Open up the second floor of the manor.
set_property("choiceAdventure81", "99"); //(Fall)
while (index_of(visit_url("place.php?whichplace=spookyraven1"), "sr1_stairs3") < 0) {
bumAdv($location[The Haunted Library], "", "", "1 choiceadv", "Opening Second floor of the Manor", "-");
}