Recent content by Ryo_Sangnoir

  1. R

    My personal Meat farming script

    Probably we should just add that one, and any other ones people were using in the wild.
  2. R

    ASH scripts now support 'var' for inferring types

    ASH scripts now support 'var' for local variable type inference, where the compiler will infer the type of a newly initialised variable. This should make dealing with records easier, as you can now do: var kit=black_and_white_apron_kit_contents(); print(`Main: {kit.main_ingredient} ->...
  3. R

    Bug How should KoLMafia consider Eternity Codpiece slots for 'have_equipped' and 'equipped_amount'

    This will also have knock-on effects for available_amount, which should return the gems you can unequip as available.
  4. R

    New Content Sword of S Words

    We pick the ID if there's a comment telling us what the ID is, and the name if we can't do that. So the ID is better and preferred, but in many cases we only get the name, and because names are ambiguous we can't safely convert it to an ID.
  5. R

    Bug - Fixed Changes to URL handling in KoL broke KoLmafia

    This bug was solely the change in the image server; your bug sounds more serious. I assume https://www.kingdomofloathing.com itself works fine? I know there have been PHP changes (they upgraded from 5 to 8), but I haven't heard anyone else having such serious issues. Also, as normal scripts...
  6. R

    Update to Ezandora's VotingBooth.ash

    Thanks, I've stuck this on loathers and updated autoscend's dependencies to use it.
  7. R

    Bug maximize 4 clownosity always fails now

    We should just set the max at the same time as the min to keep previous functionality (default max if the user doesn't set one).
  8. R

    Bug - Waiting for Info 29230 effects Monster Manual name checking

    KoL seem to be changing the encoding on their side, with HTML characters, latin-1 and utf-8 all being involved. Give it a few days to settle down and we'll see where we end up.
  9. R

    Bug - Fixed "%fn, sing a song of my prowess" not recognized as available?

    Yeah, I didn't wire anything up, and this is the first noncombat skill that requires having a particular familiar equipped to cast it, to my knowledge.
  10. R

    Bug Mafia flips "floristFriarAvailable" to 'true' then back to 'false' when logging in under Standard restrictions

    Some scripts check floristFriarChecked, that's why it was added back, for backwards compat. Intended behaviour: eh if it only happens once it's not a priority fix for me, but sure if isRefreshing avoids it you could do that.
  11. R

    Bug - Fixed Heartstone issue

    Might be fallout from r29199.
  12. R

    New Content Path: Blue vs. Red

    My inclination is #1, similar to monster parts. Though, given there's only three options, #2 or #3 is also viable. Probably I feel like separating it just because it's only relevant in one specific case: you're in BvR and want to look up the team of a monster you might be fighting (and we're...
  13. R

    New Content Interesting Coins

    We also want prefs for "XUses" for the liquid, intangible, toxic assets. And possibly soybean futures. And how many of the inflationary pricing things you've bought. And limits for the other stuff.
  14. R

    Bug Heartstone middle letter uses 'lastEncounter', which is not updated on monodent 'talk to some fish'.

    `lastEncounter` is the entity-decoded actual monster name. So I would need to check whether e.g. Legstrong bicycle and the monster modifier-added monsters still go through correctly.
  15. R

    Garbo Stuck in an Infinite Loop

    So there are two issues here, one Mafia and one garbage-collector. The Mafia issue is that can_adventure is returning true for the Middle Chamber when it shouldn't be. But we do actually have code for that so I'm not sure what is going on: if (this.zone.equals("Pyramid")) { if...
Back
Top