Recent content by Opassa

  1. O

    New Content May 2026 IotM - Legendary Pasta Wand

    It also needs tracked preferences for: * Whether you have consumed your first food with level 11 spice ghost * How many 10000 MP restores out of 11 from level 11 lasagmbie * How many free rats killed with level 11 vermincelli I'll try to capture the message it displays for those 3 tomorrow.
  2. O

    New Content May 2026 IotM - Legendary Pasta Wand

    I got something working, feel free to use this code if you want, I'm not confident enough to submit it as a pull request, but it works for me. session/ResponseTextParser.java line 323 add: } else if (responseText.contains("How do you want to digest the legendary noodles?")) {...
  3. O

    New Content May 2026 IotM - Legendary Pasta Wand

    I've been debugging the eat requests on the noodles today. It turns out it's a lot more complicated than I thought. When you use a Loathing Idol Microphone or eat a legendary noodle dish, it calls inv_use.php or inv_eat.php. The response from KoL is a tiny page which sets the document url to...
  4. O

    New Content May 2026 IotM - Legendary Pasta Wand

    I also just discovered that it's not registering mayo as being consumed when eating legendary noodle dishes. This wouldn't really be a big deal, except that it then prevents you from taking new mayo until you've eaten something. Using the mayo isn't doing anything special, it's just this...
  5. O

    New Content May 2026 IotM - Legendary Pasta Wand

    Another thing that needs to be handled is Special Seasoning. When I eat the legendary noodle dishes, it throws off the count of Special Seasoning, so then when I go to closet them it fails because it tries to closet more than I have in inventory.
  6. O

    Bug Settings not being updated at the right time

    I've noticed 2 settings that don't get updated at the right time, because they caused issues with my scripting: 1. If you wear tearaway pants and visit the moxie guild, the state of setting questG08Moxie should advance from unstarted to finished. Instead it gets stuck at started. 2. When you...
  7. O

    New Content - Implemented Baseball Diamond

    Use: string page = visit_url("inventory.php?pwd=" + my_hash() + "&action=pball", false);
  8. O

    Feature Specify number of turns in the maximizer

    The maximizer is very useful for finding buffs. But the maximizer doesn't provide a way to specify how many turns to buff for, so I either have to go manually apply the buffs it suggests for that many turns, or rerun the maximizer every 5 to 10 turns to refresh expiring buffs. It would be...
  9. O

    Bug Printing the output page of Apriling band quad tom [play] link locks up KoLmafia

    When you click on the quad tom, it displays a message at the top of the screen with a link to fight.php that you're supposed to click on. You don't have to adventure anywhere.
  10. O

    Bug Printing the output page of Apriling band quad tom [play] link locks up KoLmafia

    Thanks, I was able to capture the output that way. The difference between the automatic script and manually clicking aprilplay didn't really help much, but I finally succeeded on my debugging by adding ", false" to the visit_url. Apparently it POSTs by default, instead of GET? I always...
  11. O

    Bug Printing the output page of Apriling band quad tom [play] link locks up KoLmafia

    I am trying to automate calling the Apriling band quad tom. I copied the link for [play] and call visit_url, and then try to print the result: When I call the script, it locks up KoLmafia while trying to print the page, and I have to manually kill the process. I'm trying to debug why the...
Back
Top