Search results

  1. R

    Feature - Rejected Better file corruption support

    I think solving this outside Mafia is better because we've had a whole host of issues trying to fix this inside Mafia.
  2. R

    Bug maximizer's "acquire & genie wish" doesn't acquire pocket wish

    Same problem with the handheld radio. Evidently I didn't understand how this worked correctly when I implemented it...
  3. R

    Selling to The HMS Bounty Hunter

    Yes, I don't think we have a way to do this in ASH (for ShopRow coinmasters in general). You can use the Coinmasters Frame, or visit the URL directly. The Coinmasters Frame should sell multiple at the same time as of r28835.
  4. R

    Bug - Fixed Wet blanket is not a bed

    Thanks for the report, r28827.
  5. R

    Mood setup not activating mid-fight.

    > Round 0: givenom casts LUNGING THRUST-SMACK! (auto-attack) > Round 1: givenom executes a macro! You have an autoattack set, and something after that starts a macro. Assuming your macro is to run LTS repeatedly, Mafia doesn't get a look-in.
  6. R

    Feature - Implemented Tracking uses of a wand of pigification

    Thanks for the report, check `_wandOfPigificationUsed` in r28817.
  7. R

    How do I disable the "You can't hit anything there" warning?

    In Custom Combat, change your battle action to anything other than "attack". A custom combat script that just aborts would work well in case your autoattack fails for some reason.
  8. R

    Feature Cannot purchase meat-cost items from NPCCOIN coinmasters

    Various shops in Mafia are of type NPCCOIN, but only the non-meat-costing items can be bought while treating them as coinmasters (e.g., in the coinmaster frame or ASH). The exception is Cosmic Ray's Bazaar, where the meat-costing item is purchasable, as it's registered to the coinmaster and not...
  9. R

    Bug Haiku katana logs various fight stuff twice

    e.g. Encounter: LOV Enforcer Round 0: Ryo_Sangnoir wins initiative! Round 1: You're fighting Round 1: a LOV Enforcer Round 1: "Excuse me," you say, tapping the ENFORCER on the shoulder. Round 1: "Oh, sorry," he says, and moves to get out of your way. "...Hey, wait a minute! You ain't...
  10. R

    Bug - Fixed Getting stuck in Spelunky limit mode

    In your debug logs, when it loads the charpane, does ">Last Spelunk</a>" appear? That is, is it setting it back to Spelunky mode after setting it to None?
  11. R

    Bug - Fixed Getting stuck in Spelunky limit mode

    If you type "debug on" on the CLI, you'll get a debug log of every network request made and what the resulting pages were. Looking at postChoice2, it should set handlingChoice to the needed before calling your specific postChoice2 method: ChoiceManager.handlingChoice =...
  12. R

    Bug - Fixed Getting stuck in Spelunky limit mode

    So the code around the crash is the following in CharPaneRequest: // Are we in a limitmode? if (responseText.contains(">Last Spelunk</a>")) { KoLCharacter.setLimitMode(LimitMode.SPELUNKY); SpelunkyRequest.parseCharpane(responseText); return true; } if (responseText.contains("You're...
  13. R

    New Content Shrunken head

    Added charpane parsing already. We also want: * something that parses the skill message and removes the shrunken head from offhand / lefty, and adds the previously equipped item if there was one * print a message on zombie death and update the properties to remove the zombie * some of the zombie...
  14. R

    Bug - Fixed Using the replica Deck of Every Card via CLI causes an error state, even if successful

    retrieveItem sets MafiaState to ERROR if it fails; presumably something later aborts based on that. An easy fix would seem to be to move the replica deck check before the non-replica deck check.
  15. R

    Bug - Fixed Mafia loses track of which equipment can be used for CHEAT CODE skills

    KGB briefcase for sure. Probably the other ones in that block: e.g. pantogram, latte
  16. R

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

    if you can cast, you can use the chat command "/cast sweat out" to always cast it if KoL thinks you can. Sometimes Mafia becomes of the opinion that you don't have the skill, for conditional skills -- I don't know what causes this.
  17. R

    Bug - Not A Bug Frat House Availability incorrect?

    This is due to https://github.com/kolmafia/kolmafia/pull/3080, which was necessary for garbo's valuation of zones: it reads the monsters in a zone, then tries to force one of them, and problems occur if the monster can't be forced (e.g. if you have the wrong instance of a zone). If autoscend is...
  18. R

    Feature - Implemented Something to automatically prune git history

    As a trivial improvement, if we make installing only clone the latest commit that will reduce file size for new installs, and then if the user wants to remove accumulated commits they can always delete and reinstall. This thread mentions shallowly fetching as well: I think that's the wrong...
Back
Top