Search results

  1. Veracity

    New Content Sea Changes

    May as well have a general thread to note things. If you are not in the new challenge path, the Mer-Kin Temple is sea_merkin.php?action=temple. We currently detect the following adventure failures: // Looks like you've gotta be somebody special to get in there. // Even as High Priest...
  2. Veracity

    Feature - Implemented Sea Path requests (Grandpa storage, Abyss/Lasso progress)

    Here are quest progress things. questS01OldGuy unstarted started -> Old Guy talks about his boot step1 -> Buy damp old boot from Big Brother -> dampOldBootPurchased finished -> Old Guy snores - surprisingly, doesn't seem to detect what he says when you return the boot to him...
  3. Veracity

    Feature - Implemented Sea Path requests (Grandpa storage, Abyss/Lasso progress)

    FYI, here is canAdventure support: zones: if (this.rootZone.equals("The Sea")) { // The Sea opens when you speak to The Old Man if (!QuestDatabase.isQuestStarted(Quest.SEA_OLD_GUY)) { return false; } if (this.zone.equals("The Sea")) { // The Briny...
  4. Veracity

    Feature - Implemented Sea Path requests (Grandpa storage, Abyss/Lasso progress)

    r28664 tracks mom and lasso progress. gausie has an open PR for Grandpa questions. I could have sworn that we already tracked quest progress for opening all The Sea zones; I remember adding some when I added support for The Sea to canAdventure.
  5. Veracity

    Bug Build process no longer cleans out old jar files

    Yes. Rather than doing: $ ./gradlew jar $ java -jar dist/TAB I need a $ ./gradlew clean To start off with
  6. Veracity

    Bug Build process no longer cleans out old jar files

    Related: gradlew clean no longer deletes the file in dist.
  7. Veracity

    Bug Visiting the terrarium manually tricks mafia in to thinking the current familiar is a favorite

    FamiliarData.java, when visiting terrarium. if (familiarMatcher.find()) { current = FamiliarData.registerFamiliar(familiarMatcher, true); // There's no indication of whether your current familiar is a // favorite or not. Safest to assume it is...
  8. Veracity

    Bug - Not A Bug Mafia's breakfast used my PYEC

    If you don't want it used by autorecovery (a feature which I have always used), uncheck the "Platinum Yendorian Express Card" checkbox on the HP/MP Usage panel or change the mpAutoRecoveryItems property. FWIW, the default for that property is phonics down;knob goblin superseltzer;mountain...
  9. Veracity

    My personal Meat farming script

    Today, VMF looped trying to buy food. > unidentifiable dried fruit (0 cost; 21224 expected_profit) is better than snow crab (19854) ... Verifying ingredients for unidentifiable dried fruit (14)... Purchasing unidentifiable dried fruit (14 @ 350 Chroner)... Visiting the The Applecalypse...
  10. Veracity

    Feature shop.php support

    I just implemented a ShopRow coinmaster for "The Central Loathing Floral Mercantile Exchange" - the "flowertradein" shop that you get when you "use" a {rose, red tulip, white tulip, blue tulip} and can trade flowers for a (frequently changing) number of Chroner. (You can always do this; the Time...
  11. Veracity

    Spacegate

    Congrats!
  12. Veracity

    My personal Meat farming script

    I'm tired of not using my Mayam Calendar post-ascension, so I added support for it in VMF revision #20 PR notes: New preference "VMF.MayamCalendarConsiderations" defaults to: "resonance mayam spinach|rings yam meat yam clock|rings sword lightning cheese explosion". You can specify up to three...
  13. Veracity

    Bug - Fixed Mafia autosells bar skins

    What has changed in the game to make any piece of bar skin equipment "useful"?
  14. Veracity

    Bug - Fixed Obtaining Crown of the Goblin King changes the Preference questL05Goblin from unstarted to finished

    It's only acquisition of the item from a combat that is a trigger for quest completion. It doesn't include the response text, but we have access to the monster. That is how goblin water works. This could all be simplified a lot. I'm working on this right now.
  15. Veracity

    Bug - Fixed Obtaining Crown of the Goblin King changes the Preference questL05Goblin from unstarted to finished

    Huh. We set the quest completed if you: 1) get the Crown, Glass Balls, or Codpiece from an adventure 2) get goblin water from an adventure and we were fighting the Aquagoblin 3) defeat Ricardo Belmont, Hammer Brother, or Gobot King The last three are not the only Goblin King replacements that...
  16. Veracity

    Bastille

    Makes sense. When Ezandora moved from SVN to git on github, I uninstalled the SVN version and then installed the git version.
  17. Veracity

    Bastille

    I thought “git update” would update dependencies, too? I know that “svn update” would do that.
  18. Veracity

    Bug Candy Cane Sword Cane / Penultimate Fantasy Airship Choice Adv Issue

    Your DEBUG log is odd; if we redirect to choice.php, we call ChoiceManager.processRedirectedChoiceAdventure which will submit the redirect and process the responseText - which appears to be null in this case? Very peculiar. The PFA choice used to have 4 options: 1 -> enter combat 2 -> get...
Back
Top