Search results

  1. H

    Issue with constant messages wrt deprecated preference

    That PR has been merged onto the main branch, but hasn't yet made it to the Release branch. Track https://github.com/loathers/TourGuide/pull/258 if you want to see when the fix will be available.
  2. H

    Issue with constant messages wrt deprecated preference

    Well, I sent them https://github.com/loathers/TourGuide/pull/256 so we'll see when that gets merged.
  3. H

    Issue with constant messages wrt deprecated preference

    @gausie asserts that this was being caused by Mafia code (possibly related to the daily deeds manager, if I had to guess?), and that this should be fixed by r28615.
  4. H

    Issue with constant messages wrt deprecated preference

    That said, I also see an explicit reference in https://github.com/loathers/TourGuide/blob/main/Source/relay/TourGuide/Sets/Skills.ash#L209 which may be more relevant.
  5. H

    Issue with constant messages wrt deprecated preference

    Hm, but the deprecation warning is configured in defaults.txt. I suppose it wouldn't be too bad if libram checked for the deprecated attribute and stopped populating that.
  6. H

    Issue with constant messages wrt deprecated preference

    This is most likely coming from any one of the loathers scripts, due to https://github.com/loathers/libram/blob/main/src/propertyTypes.ts#L2 which in turn is autogenerated from all of the properties per the comment on line 1. I think the easiest workaround on our side is to remove it from...
  7. H

    autoscend - a sl_ascend fork/continuation

    FYI -- you'll have an easier time getting your change(s) accepted if you break up your PR into several smaller PRs so it's not as daunting to review all at once. (One PR per logical fix or perhaps per challenge path is a good rule of thumb. Bundling too many changes together makes it hard to...
  8. H

    Issues running java/kolmafia

    If you're using `java` from the command line, you'll need to specify `java -jar Kolmafia-28594.jar`.
  9. H

    I need some help troubleshooting my installation

    Hopefully you then reinstalled Java 21, since we require that at a minimum. fronobulax's suggestion to use multitool may also help.
  10. H

    Bug SMOOCH appearance rates sometimes starts off wrong

    appearance_rates has a two-parameter version. if you want stateful results, specify `true` as the second argument. This forces Mafia to call AreaCombatData.recalculate(), which in turn calls the code in adjustConditionalWeighting in the linked PR. Once recalculate() is called (one way or...
  11. H

    Bug - Fixed hermit() command cannot grab jabanero peppers

    https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/textui/command/HermitCommand.java#L61 Could probably be augmented to use the same fuzzy find that we use elsewhere. I may make that change over the weekend if nobody beats me to it.
  12. H

    trivialskills: Automate casting the "trivial" skills

    Ah, see, this is where I'd just write: // You could write 1000, 2000, 3000, 4000, 5000, 6000 if you wanted, but that's less obvious to the reader. foreach s in $skills[ Seal Clubbing Frenzy, Patience of the Tortoise, Manicotti Meditation, Sauce Contemplation, Disco Aerobics, Moxie of...
  13. H

    paid script request

    (obligatory instructions: install that as, say, scripts/buy_from_mall_stores.ash, then run it by invoking `call buy_from_mall_stores` in the graphical CLI.)
  14. H

    paid script request

    Actually, I looked into this. We only ban mall searches, not queries of individual mall stores. Individual mall stores are at mallstore.php. // Player ID -> item -> quantity int[int, item] items_to_buy { 121572: { $item[roll in the hay]: 2, $item[slap and tickle]: 1, }, 354981...
  15. H

    Feature Commit (or Close) PR #1889

    I'm curious if anyone has any experience with https://checkerframework.org/manual/#lock-checker (gradle plugin) or https://github.com/google/error-prone (specifically GuardedBy)? I could see enforcement of lock acquisition order being possible with @GuardedBy (namely: by stating that each lock...
  16. H

    Feature Commit (or Close) PR #1889

    So, I ("obviously") can't self-approve it, since I originated the PR. I have two remaining thoughts / concerns, but otherwise am fine with merging the commit and seeing what happens. 1. What are the performance implications of holding these locks on Preferences operations that can be invoked...
  17. H

    Bug - Confirmed Maximizer didn't equip a weapon

    Put simply, yes. The best way to help us figure out this problem is to help us figure out how to reproduce the problem consistently. In particular, if you have some setup that consistently triggers the bug across multiple characters with differing sets of skills, available items, ascension...
  18. H

    Feature Namespaces - "packages" - for ASH

    A possibly terrible idea I had when starting to read this post: what if we generalized this such that if you import a script with a conflicting function func (or, generally, any symbol), it's only imported as func@script? And otherwise (for backwards compatibility purposes), all other functions...
  19. H

    Bug Certain NPC purchasable items cannot be "acquire"d without purchasable currency

    Perhaps we should be checking InventoryManager.getAccessibleCount(TOXIC_GLOBULE) == 0, since in order to purchase anything from that coinmaster, you need toxic globules, which trivially satisfies the accessibility requirement.
Back
Top