Search results

  1. ckb

    Bug McHugeLarge Avalanche skill available when it shouldn't be.

    Perhaps you want combat_skill_available() instead? have_skill() indicates that the skill is owned/permed/exists combat_skill_available() will tell you if it is available to use during combat > get _mcHugeLargeAvalancheUses 3 > ash have_skill($skill[McHugeLarge Avalanche]) Returned: false...
  2. ckb

    Bug - Fixed Wrong Choice Spoilers for The Shore

    Fixed in r28579
  3. ckb

    New Content Mobius Ring - Additional Prefs

    You can get your paradoxicity with the ash command: int my_paradoxicity( ) And you can automate the choice with a choiceadventure script and available_choice_options
  4. ckb

    Bug Gel Noob: KOL Mafia not recognising level-up during a session

    FWIW, I just finished a bunch of Noob runs and never noticed this issue. But maybe I am doing different things during my run than Autoscend. I was running via my own scripts, with an occasional manual Relay turn.
  5. ckb

    Feature - Implemented Summon Kokomo Resort Pass needs skillLevel property

    PR Submitted: https://github.com/kolmafia/kolmafia/pull/2975
  6. ckb

    Feature - Implemented Summon Kokomo Resort Pass needs skillLevel property

    This is mostly done, except Mafia does not know that [Summon Kokomo Resort Pass] cannot be multi-cast, and needs to be cast multiple times individually in Breakfast. For me, "skillLevel135" = 3 This happens in Breakfast: cast 3 Summon Kokomo Resort Pass You acquire an item: Kokomo Resort Pass...
  7. ckb

    New Content April Shower Thoughts shield

    #1-3 covered in r28570
  8. ckb

    Feature - Implemented Preference for April Shower Thoughts Northern Explosion drop force uses?

    This is mostly the same request as https://kolmafia.us/threads/april-shower-thoughts-shield.30546/ and should soon be covered by https://github.com/kolmafia/kolmafia/pull/2963
  9. ckb

    WTF Relay script collection

    This sounds like a Mafia TCRS issue and not a WTF issue. I don't remember exactly how Mafia handles TCRS, but you can regenerate the data files using "tcrs derive", I think? Maybe try that.
  10. ckb

    New Content - Implemented KoL color change broke Wumpus parsing

    This looks fixed in r28567
  11. ckb

    Bug - Fixed Gelatinous Noob modifiers

    r28568 for #1 and #3
  12. ckb

    Bug - Fixed Gelatinous Noob modifiers

    I am running Gelatinous Noob, using this post to track any bugs or issues I find. Mafia adds McHugeLarge bonuses as 'Outfit' bonuses, but they are not actually outfits in KoL because those bonuses do not apply from that equipment in GN I get a lot of familiar weight mismatches, which seems...
  13. ckb

    Bug maximizer shows advs to craft with free crafts

    When using maximize, it shows (1 adv) to craft items even when free crafts are available > ash free_crafts( ) Returned: 7 > get craftingPlansCharges 4
  14. ckb

    Bug - Cannot Reproduce Mafia can't find "sweat out"

    It appears that this was a KoL thing that got fixed as this is no longer giving errors, marking as closed.
  15. ckb

    Bug - Fixed Mafia autosells bar skins

    Yes, this. barskin loincloth is one of only a few power 25 pants, barskin hat is one of a few power 55 hats. Having more power variations allows for more variable busking options with the beret.
  16. ckb

    Bug - Fixed Mafia autosells bar skins

    r28565
  17. ckb

    Bug - Fixed Mafia autosells bar skins

    It seems that Mafia autosells bar skins via 'Tree's Last Stand' choice 504 in ChoiceManager.java: // If we have Bar Skins, sell them all if (InventoryManager.getCount(ItemPool.BAR_SKIN) > 1) { return "2"; } else if (InventoryManager.getCount(ItemPool.BAR_SKIN)...
  18. ckb

    Bug - Fixed hermit() command cannot grab jabanero peppers

    Lots of things work, just not all of them - probably due to that special character so it does not recognize the item > hermit pepper Visiting the Hermit... You acquire an item: jabañero pepper Hermit successfully looted! > hermit jaba Visiting the Hermit... You acquire an item: jabañero...
  19. ckb

    r28549 - What's Changed Functions for predicting Beret Busking effects by @gausie in #2941 Full Changelog: r28548...r28549

    Posting this here for future generations: int [effect] beret_busking_effects() reports what you would get if you cast it right now int [effect] beret_busking_effects(int power, int castsUsed) reports what you might get with the data provided. Note that the second param is 0-indexed. The return...
Back
Top