Search results

  1. A

    New Content deed to Oliver's Place

    The adventuring zone was originally marked outdoors. However, after I reported this as a KoL bug, it was changed to indoors.
  2. A

    How do I use .ash files?

    The normal way to use them is to put them in the scripts subdirectory of your KoLmafia installation. Then you can start them from the scripts menu or by entering the filename into the CLI. You shouldn't be copy-and-pasting entire scripts into the CLI. In order to execute any ASH command in the...
  3. A

    New Content October IOTM - Autumn-aton

    Try sticking it in the bbb function. Or, you could just add this as an unconditional mood trigger: ash if (item_amount($item[autumn-aton]) > 0) cli_execute("autumnaton send X"); (Replace X with the location you want to send it to.)
  4. A

    farm-barf-mountain.ash

    I'm not interested in the script, but I decided to look at its code. One thing you'd definitely want to change (or remove) is the handling of Knob Goblin pet-buffing spray and Knob Goblin nasal spray, since they're now spleen items instead of normal potions.
  5. A

    New Content October IOTM - Autumn-aton

    With the support the item now has, automating it to always go to location X should be as simple as: if (item_amount($item[autumn-aton]) > 0) { cli_execute("autumnaton send X"); }
  6. A

    Bug - Fixed Invalid adventure area: "The Barrel Full of Barrels"

    Just keep it commented out. The bug in question was that some things still considered the Barrel full of Barrels to be a zone, when it isn't one. So if a script still refers to it as a zone, that's also a bug in the script, and commenting out the line is probably the appropriate fix.
  7. A

    New Content October IOTM - Autumn-aton

    It's the turn number during which the quest will be completed. For turns remaining, you'd take that and subtract total_turns_played(). However, that doesn't explain why it changed after that adventure.
  8. A

    New Content Fall 2022 Challenge Path - Fall of the Dinosaurs

    According to the wiki, there's a difference in questL12War finished message depending on what side you fought for: "man destroys hippies" vs "man destroys frat boys".
  9. A

    Bug Melvign quest not detected from relay browser

    If you use the KoLmafia interface to use the Letter for Melvign the Gnome, it'll set the questM22Shirt to started. If you use the letter in the relay browser, this doesn't happen.
  10. A

    New Content Fall 2022 Challenge Path - Fall of the Dinosaurs

    I believe my ranged attack (accordion) also failed against a high-altitude pterodactyl. I don't want to jump to conclusions, but the immunity may be to attacks in general, not just melee.
  11. A

    BatBrain -- a central nervous system for consult scripts

    BatBrain will need handling of the new dino modifiers. I've preliminarily put this in my local copy: case "pterodactyl": setmatt("dodge","1"); break; case "dilophosaur": setmatt("autohit",""); break; case "velociraptor": setmatt("maxround","1"); break; case "archelon"...
  12. A

    New Content Fall 2022 Challenge Path - Fall of the Dinosaurs

    The verbs for what the dinosaur did to the original monster aren't matched up with the dinosaur types. I just encountered a glass-shelled archelon that "recently devoured" a monster, but KoLmafia couldn't identify it, since it assumes an archelon "consumed" the monster.
  13. A

    Bug - Fixed Recent change broke maximizing with accessory requirement

    I have a Powerful Glove in my inventory. And yet: > maximize item, equip powerful glove Maximizer: item, equip powerful glove Maximizing... 48 combinations checked, best score 314.31 (FAIL) Unable to meet all requirements via equipment changes. See the Modifier Maximizer for further...
  14. A

    Recent problems with batfellow.ash

    As suspected, that version of the script had the same issues. However, setting abortOnChoiceWhenNotInChoice to false allowed the script to run to completion. My conclusion is that the script has always been bugged, and that bug only became noticeable with that KoLmafia change. However, I don't...
  15. A

    Bug Maximizer unaware of unique item pull restriction

    I used the maximizer in ronin with the pullable/buyable option, and it suggested pull two of the same weapon to dual-wield. However, only one of each item can be pulled each day, so that second pull would be impossible. After pulling and equipping one of that weapon and updating the maximizer...
  16. A

    Bug Crimbo Cafe '21 still considered available

    The bread pie and clear Russian from last Crimbo are still showing up as possibilities in the food/booze tabs, even though that NPC store is no longer available.
  17. A

    Bug - Fixed Wrong fresh coat of paint modifiers on liberating king

    The modifiers on the fresh coat of paint change on liberating the king. At least, they just did for me. KoLmafia is unaware of this and continues to think it has the old stats, until the item description is loaded.
  18. A

    Feature ASH location_accessible function.

    I'm getting some unexpected behavior right now. I'm wearing the Frat War Ensemble, at level 12, trying to start the war. However, if I adventure in "Wartime Hippy Camp (Frat Disguise)", whether through the adventure tab or the gcli, it'll change my outfit to the War Hippy Fatigues before...
  19. A

    Feature Zone-native-only choiceadv as goal

    This is a long shot, but I'd find it very helpful. There are times when I want to adventure in a zone until I get a choice adventure indicating some sort of quest progress. However, thanks to the Hallowiener Dog and June Cleaver, I'm getting a bunch of free choice adventures no matter which zone...
  20. A

    Recent problems with batfellow.ash

    Comparing that to the version I have, the differences seem to just be some print() and wait() statements, whether apostrophes are escaped or not, and whether the main() works even if not currently reading a comic. It'll take some time for me to able to test it, but I suspect that version would...
Back
Top