Recent content by twistedmage1

  1. T

    Bug Maximizer ignores -tie for switching item modes

    If you enable the option "Consider foldable items in maximizer by default" mafia will adjust items like the Jurassic Parka and Backup Camera to match your target. If you then wear one of these items and attempt to run the maximizer for which none of the modes are relevant with "-tie" it will...
  2. T

    Bug - Fixed Turkey blasters not tracked correctly

    It's a minor thing, but I noticed today that the tracking of turkey blaster use (added in 17362) doesn't work. After using a turkey blaster (from a script if that's important), the property "_turkeyBlastersUsed" remains at zero. However, the log records the hp/mp restored and it appears to have...
  3. T

    New Content - Implemented Order of the Green Thumb: The Florist Friar

    I wrote a pretty nasty script a while ago that automated the friar for me within the context of a modified version of bumcheekcity's bumcheekascend. Below I've copied the function dealing with name parsing, which might help you make a start. It probably only contains ascension relevant and...
  4. T

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    I'm still a bit hungover from the conference banquet, and I've only had like 20 minutes to play with it. It looks like the problem now is, the matcher on line 432 finds "skill " and "use " with trailing spaces. The big comparison on line 435 looks for them without trailing spaces. I added a...
  5. T

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    You wouldn't happen to be at BMVC (British Machine Vision Conference) would you? :) Unfortunately item stuff in batfactors uses the index "item" not the index "use" (which is what the matcher finds). Also you are running contains_text() on the whole combat_rec object rather than just it's...
  6. T

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    I just popped back to the forums to see if a clever fix had appeared for the one time use stuff. Seems like it's still being dealt with, and it also seems my last post might have been lost in the midst of the Dr. Awkward discussion. Or more likely, I just explained things badly. I'll try and...
  7. T

    Bug Bad monster value: "" - revisited

    Last Crimbo bale created a thread about a bug, which can be found here http://kolmafia.us/showthread.php?8420-Bad-monster-value-quot-quot&highlight=bad+monster+value The bug was abandoned because of reproducability problems. I've been having the same problem, and after some fiddling I think I...
  8. T

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    I was having the same problem as Catch-22, when I had vampire fangs equipped WHAM would try to enqueue feed multiple times, then abort. I hacked my version specifically for that skill, without bothering with all the other "once" skills. Today I updated WHAM and saw you had added a more general...
  9. T

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    I was seeing some confusing behaviour today, and I've finally figured out what's causing it, but I don't know what the best solution would be. The script was attempting to spam attacks against monsters where I had 5% hit chance or less, until I died (WHAM_hitchance is set to 0.5). Running it...
  10. T

    BatMan Relay -- more info, less clicking

    Great script Zarqon, thanks for sharing. I'd like to make a suggestion for a simple modification. I use BumcheekCity's BUMRATS master override, and when I find useful scripts, I incorporate them into it. I've made a few small refactoring changes to the 3 .ash files and attached them at the end...
  11. T

    Bug - Fixed Mood aborts after canticle of carboloading

    It was a long time ago, so I wouldn't be surprised if it got fixed. It wasn't to do with canticle being in a mood. The bug occured if you tried to cast it through the CLI after it had already been cast. When you did that, all moods from that point onwards failed, until Mafia was closed and...
  12. T

    Universal Recovery Script

    On line 1351 calculate expected adventures from spleen usage. You calculate the number of items usable by spleen remaining, modulo 4. expec_adv += ((spleen_limit() - my_spleen_use()) % 4 * 1.88); Modulo returns the remainder though, I'm pretty sure that what you meant was: expec_adv +=...
  13. T

    Bug - Fixed Vegetable gremlin no-tool messages

    When doing the junkyard sidequest during the mysterious island war, encountering gremlins which may have the currently required tool shows the tool highlighted in pink as a possible drop. For all other gremlins, when their "no-tool" attack message occurs, the drop is greyed out. However the...
  14. T

    ZLib -- Zarqon's useful function library

    Recursive item checking Hey Zarqon, I've noticed a problem using FTF, which i managed to track down to has_goal in zlib. Most likely it's because i have done something that cocked it up, but anyway thought i'd mention it. Basically when fighting inside the knob kitchens: -FTF calls...
Top