I'm at the choice adventure in the Hidden Office Building for the first time. I am being offered the following spoilers:
Fight ancient protector spirit
Get random item
Fight pygmy witch accountant
skip adventure
I'd say that this comes from the foilowing code in QuestManager:
The comment says it is checking "accountant doesn't drop file" but "responseText.contains( "McClusky file" )" is checking that it DOES drop the file.
Fight ancient protector spirit
Get random item
Fight pygmy witch accountant
skip adventure
> get hiddenOfficeProgress
6
> inv mcclusky
McClusky file (page 1)
McClusky file (page 2)
McClusky file (page 3)
> inv binder
I'd say that this comes from the foilowing code in QuestManager:
Code:
else if ( monster.equalsIgnoreCase( "pygmy witch accountant" ) )
{
// If you don't have McClusky File (complete), or McClusky File 5, and accountant doesn't drop file, you must have unlocked office boss
if ( InventoryManager.getCount( ItemPool.MCCLUSKY_FILE ) == 0 && InventoryManager.getCount( ItemPool.MCCLUSKY_FILE_PAGE5 ) == 0 &&
Preferences.getInteger( "hiddenOfficeProgress" ) < 6 && responseText.contains( "McClusky file" ) )
{
Preferences.setInteger( "hiddenOfficeProgress", 6 );
}
}
Last edited: