Search results

  1. S

    Trick-Or-Treating script

    I added the following at the beginning of the script: string TRICK_OUTFIT = "trick"; string TREAT_OUTFIT = "treat"; if ( my_inebriety() > inebriety_limit() ) { TRICK_OUTFIT += "_drunk"; TREAT_OUTFIT += "_drunk"; } and replaced "trick" and "treat" with TRICK_OUTFIT and TREAT_OUTFIT in...
  2. S

    Official script registry - discussion

    I just wanted to point out that FaxBotDatabase knows how to parse XML files.
  3. S

    Bug - Fixed Everything is used one-by-one

    I was too late with my commit :)
  4. S

    Bug - Fixed Exception when calling maximizer() from ASH

    I fixed that in r12827. I probably barged in the middle of the implementation of the Folder Holder, so things might change.
  5. S

    New Content - Implemented Folder Holder: August's back to school IotM!

    I added the folderX slot names to EquipmentRequest because I was getting ArrayIndexOutOfBoundsException errors from net.sourceforge.kolmafia.maximizer.Maximizer.emitSlot(Maximizer.java:786). That made them available in ASH, but I don't think it's a drawback. I hope I didn't jump the gun too much.
  6. S

    raidlog override a la Dr. Evi1

    I'm glad I posted :) Apparently the version in /svn was up to date, but for some reason it wasn't being pushed to /relay. I blame the user. Too bad I find this out on the same day that I got my last Dread drop!
  7. S

    Maximizer commands

    Such as? You can use all the numerical and bitmap modifiers in a maximizer command. I think there is a vocabulary problem in your question. The Maximizer maximizes whatever list of modifiers you give it, each modi with its own weight wi (1 by default), and the result can be further refined by...
  8. S

    Bug - Fixed Mafia tries to use the beer garden's crafting when it isn't there

    I tried doing "create 1 can of Drooling Monk" in the gCLI without the ingredients on hand, with r12809. Mafia visited shop.php?whichshop=beergarden&action=buyitem&whichrow=215&quantity=1 but since it didn't try to gather ingredients first, the result was: You don't have enough clusters of...
  9. S

    Bug - Fixed Deep six-shooter pulverizes into sea salt crystal

    I think Darzil got all the items. I was just curious as to why aquamarine items and the rusty staff were missing from your output :)
  10. S

    raidlog override a la Dr. Evi1

    Actually, the script can adventure for you. If you choose Noncombats as your "Totals Table", you can right click each square to get a list of actions it can do for you. Currently, the actions the script can do are the various banishes and Freddy gathering. I would love to see all the choices...
  11. S

    Bug - Fixed Deep six-shooter pulverizes into sea salt crystal

    Did you have jewelry-making pliers in your inventory when you ran the script? For the rusty staff, did you either have a tenderizing hammer in your inventory OR have autoSatisfyWithNPCs set to true?
  12. S

    Maximizer commands

    When you say "command", do you mean "modifiers"? You can type modref in the gCLI to get a list.
  13. S

    Bug - Fixed Deep six-shooter pulverizes into sea salt crystal

    I used this script to get the list of Sea items that don't pulverize into sea salt crystals according to Mafia (PriceAdvisor is needed for its ingredients -> concoctions map). import <PriceAdvisor.ash> boolean [ item ] sea_items; boolean [ item ] sea_drops; void add_concoctions( item itm ) {...
  14. S

    Feature Adding grisly shell DR to maximizer

    We don't have any mechanism in CLI to "acquire effect X, then use item Y". Maybe it would be a good idea to implement something like "with X, use Y".
  15. S

    Bug - Fixed Performance issues

    I started reading up on deadlocks and realized that I probably hadn't made myself clear when I first posted. What I am seeing is the GUI being temporarily unresponsive, not a deadlock. I used to always be able to chat in the Mafia chat window, even when my adventuring was going slowly. Now the...
  16. S

    Bug - Fixed Performance issues

    When I run Mafia via Eclipse's "debug", I see freezes when doing intensive things like filtering my (large) inventory. However, none of the threads in the Debug panel becomes red. I'm not 100% sure I'm doing this right, but I think that means it's my computer's fault. I tried to run Java with...
  17. S

    Bug - Fixed runnable in event dispatch thread

    I started getting another one of these each time I log on: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= KoLmafia v16.0, Windows XP, Java 1.6.0_39 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Please note: do not post this log in the KoLmafia...
  18. S

    Bug - Fixed Performance issues

    I'll try!
Back
Top