Search results

  1. I

    Bug - Fixed Base max HP incorrect in Grey You

    In Grey You health is retrieved mainly from absorbs and equipment. However the absorbs for health isn't shown, so mafia must derive the max health using the current max health, then subtracting health modifiers. Which it doesn't do. Here is where it finds our base health. Here is where the base...
  2. I

    Bug - Not A Bug Mafia always updates internals for June Cleaver's choices, even when its the same choice.

    Yeah, just checked and you're correct, I can't seem to reproduce without visit_url. Sorry for the trouble.
  3. I

    Bug - Not A Bug Mafia always updates internals for June Cleaver's choices, even when its the same choice.

    Sorry for the confusion. I meant that I'd already skipped it 5 times, so I have no more skips available. Though I glitched and didn't recognize that in my script, and still tried to skip it despite not having a skip. The skips isn't really relevant here. It's more that I encounter choice...
  4. I

    Bug - Not A Bug Mafia always updates internals for June Cleaver's choices, even when its the same choice.

    I had the choices setup to select 4 (Skip) on the June Cleaver's NC, though I was out of skips. This obviously didn't work. But I noticed that the choice was being processed repeatedly, which would be a non-issue but that it was filling the queue with the same choice ID. I think the solution...
  5. I

    Combat Locket - What monsters do you lack?

    Updated the locket data with the sssshshfdhgdfhhgfdfdh, chef boy, and dolph. Not being able to wish for skeletal som would be a bug, but I'll leave it as it might be feasible to obtain.
  6. I

    Feature - Implemented Track Floundry fishing locations

    Because it sounds like you're aggressively chasing after people that don't "give back"
  7. 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...
  8. 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.
  9. 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...
  10. 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.
  11. 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.
  12. 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...
  13. 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
  14. 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"...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. I

    Combat Locket - What monsters do you lack?

    It goes in your locket_monsters.txt file
  20. I

    Combat Locket - What monsters do you lack?

    Just added "all" or "*" as a valid quantifier. Untested however.
Back
Top