Search results

  1. I

    Feature - Implemented Track Floundry fishing locations

    Because it sounds like you're aggressively chasing after people that don't "give back"
  2. I

    Feature - Implemented Track Floundry fishing locations

    tbh I think you went a bit overboard with that. I do think Vlad's comment was a bit overboard, but the point of this feature request wasn't about that either. I think if a clan wants to track this sort of thing they'd be parsing the clan activity log, and this feature request would have...
  3. I

    Feature - Implemented Provide an easy way to fetch the currently owned zap wand

    get_zap_wand()? If you're happy to expose it as an ash function, I can whip up a PR for that. It feels like the best option if so.
  4. I

    Feature - Implemented Provide an easy way to fetch the currently owned zap wand

    Currently if a script wishes to know if a zap wand is available or not, they must loop over every zap wand item and see if there's one available. My thoughts on this are to store a preference containing the wand ID/name. With 0 or an empty string when wand has exploded or is not available. Of...
  5. I

    Bug - Fixed autoSatisfyWithStash can crash the application if you're clanless

    Using a new account, I mindlessly clicked on "autoSatisfyWithStash" in the preferences and the application promptly froze. Restarting the application had it in an endless loop trying to access the clan stash, until I switched the preference off again.
  6. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    Oh that completely slipped my mind about the system property. I blame lack of sleep. That itself would work as a fix, assuming we're able to hook it in early enough. I wonder if its possible to modify the build process so calls will set it in the invocation process of the jar.
  7. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    https://github.com/adoptium/jdk/blob/master/src/java.base/windows/classes/sun/net/www/content-types.properties https://github.com/adoptium/jdk/blob/master/src/java.base/unix/classes/sun/net/www/content-types.properties Probably these two files. URLConnection is FileURLConnection which is a sun...
  8. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    Here is a terrible terrible workaround. I'm not sure there's a better way without actually patching the issue in Rhino itself. https://github.com/kolmafia/kolmafia/commit/1edab1356cca91386a4123f98ca7ad3d27881da5
  9. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    The issue didn't exist for me until I switched to https://adoptium.net/ Now I can confirm I'm getting the issue. The issue is that adoptium has registered the .js mime type as "text/javascript" while other JDKs see it as "unknown/other" When Rhino sees the prefix of "text" it'll use "8859_1"...
  10. I

    Combat Locket - What monsters do you lack?

    Pushed an update to the script. You can now filter what monsters to show. The file doesn't actually use the same logic, just a warning. My favorite be "canadv", showing what monsters I can get from places I can access. A side effect from the update is that it'll hide monsters that are "not...
  11. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/textui/command/AshSingleLineCommand.java#L25 Yes, a few places in the source the strings are not read using UTF-8 This doesn't happen for js however, so not sure its related to this issue. Edit: Just realized there's...
  12. I

    Bug IOException: GOAWAY received

    Modified my client to log how many requests were sent, and it appears that every 10k requests; A goaway is sent. response = getClient().send(request, BodyHandlers.ofInputStream()); if (request.method().equalsIgnoreCase("get")) { getRequestsSent++; }else if...
  13. I

    Bug IOException: GOAWAY received

    This GOAWAY error is annoying. I ascended, and received the error. Ascend as a Casual Female Seal Clubber under the Wombat sign on no path, banking 85 Karma. IOException retrieving server reply...
  14. I

    Combat Locket - What monsters do you lack?

    It goes in your locket_monsters.txt file
  15. I

    Combat Locket - What monsters do you lack?

    Just added "all" or "*" as a valid quantifier. Untested however.
  16. I

    Bug csend with commas acts unexpectedly when sending meat

    Slowly looks around, and tries to put the worms back in the can.
  17. I

    Bug csend with commas acts unexpectedly when sending meat

    csend 1,000,000 meat to buffy You would expect this to send 1 million meat to buffy, however the commas has this act in an unexpected manner. Instead CLI will spam a few unexpected item found errors, and send all your meat to buffy. Only a few million meat in my case, but still a nasty...
  18. I

    Feature Store get_locket_monsters() for when reminisce is unavailable and mafia has restarted.

    The combat lover's locket works as expected, the function showing you what monsters you have stored in there. But if you've used all three reminisces, the locket page will no longer tell you what monsters you do know. This is a non-issue as mafia has it stored in a variable, until you restart...
  19. I

    Bug - Fixed Maximizer doesn't like outfits with weapons

    When there's an outfit with a weapon, maximizer avoids that weapon even when the outfit is the only solution. Such as Gel Noob, Gladiatorial Glad Rags is the only suitable outfit that grants adventures; but as it involves a weapon, Maximizer will avoid it if you are not already holding the...
  20. I

    Bug IOException: GOAWAY received

    With the HTTP Migration from HTTP1 to HTTP2 which has offered tremendous speed gains, there is a new issue where every so rarely often the mafia client will receive an IOException. Summed up, it's as the title says. GOAWAY received. It's not the devs trying to tell us we're unwelcome either...
Back
Top