Search results

  1. S

    Thwuck's 2-DAY SC Community Service script

    Why does the script adventure in the haunted kitchen?
  2. S

    Native Windows (x86) KoLmafia.exe

    This would be really useful to have.
  3. S

    Bug Modifier Maximizer isn't maximizing

    Stocking mimic. Hotform was not active.
  4. S

    Bug Modifier Maximizer isn't maximizing

    For what it's worth, I'm seeing bizarre behaviour with the maximizer today. I've never been very good with it, so it's possible that I simply don't know how to use it properly. In any case, here's what I'm seeing: (unequip everything) > maximize -tie, hot damage, dump Maximizing... SLOT 0...
  5. S

    Map literals

    This is perfect for what I need. Thanks!
  6. S

    Map literals

    Is there any way to get this to work with other types? I got it to work with booleans, but it doesn't seem to work with $item or any of the other KoL types.
  7. S

    Map literals

    What is the syntax for a map literal? For instance in python, it is possible to do my_list = [0, 1, 2, 10] What is the equivalent statement in ash using maps?
  8. S

    Bug - Fixed Mafia jumping to conclusions about using skillbooks

    Using the travelling trader's class-based skillbooks (inigo's, uncle romulus, etc) when you are the wrong class to learn the skill does nothing. However, mafia decrements the item amount by one and gives the message, "You learn a skill: x". This may also be the case for other conditional...
  9. S

    Intelligent cookie eating

    Yes, it returns the smallest cookie counter. If you want to access the second smallest cookie counter, replace puller.group(1) with puller.group(2).
  10. S

    Intelligent cookie eating

    Not sure if this is "neater": int now = my_turncount(); string txt = get_property("relayCounters"); matcher puller = create_matcher("(\\d+):Fortune Cookie:fortune.gif", txt); if (puller.find()) print(to_int(puller.group(1))-now);
  11. S

    How to force mood check

    Sometimes I like to perform tasks that require adventures by using visit_url(url). When I do this, even though adventures are spent, the moods are ignored and other between-adventure things do not trigger. This is obviously intended behavior as this would not be useful in most cases, but...
  12. S

    SmartStasis -- a complex script for a simple CCS

    Using "Break it on down" is usually a good idea, but it is counterproductive against the gremlins.
  13. S

    MacGuffin 2.0 -- level 11 quest, automated

    Yeah, it looks like the unexpected stone rose threw the script off.
  14. S

    MacGuffin 2.0 -- level 11 quest, automated

    Request 16 of 225 (Beach: Desert (Ultrahydrated)) in progress... [3694] Oasis in the Desert Encounter: All Across the Sands You acquire an item: stone rose Ultrahydration failed! [3695] Desert (Unhydrated) Encounter: What Were You Expecting? You acquire an effect: Sunburned (duration: 5...
  15. S

    KoLMafia Scripting Contest: Repair the Elves' Shield Generator

    Slyz, would you prefer that I use lastPorkoExpected for the porko section, or would you be interested in seeing my own solution for porko that I cobbled together before I realized mafia had it built in?
  16. S

    Feature Display what pieces are unavailable in an outfit

    How do I make it tell me? Here's what I tested. In the cli, "outfit foo" yields "You only put on part of that outfit." and nothing else. Using the gear changer, trying to put on foo results in "You only put on part of that outfit." appearing in a similar way with nothing else.
  17. S

    Feature Display what pieces are unavailable in an outfit

    If I have a custom outfit saved, and I try to equip it but there is a problem (like a stat requirement or a missing item), both KoL and Mafia will complain. However, KoL will also tell me what items in particular are troublesome in the outfit. Mafia doesn't do this (I think?), and I would like...
  18. S

    Universal Recovery Script

    Out of curiosity, what was this critical bug?
  19. S

    Feature - Implemented Can the Mad Tea Party also get the Daily Deeds Dropdown treatment?

    Use this alias to visit the tea party: alias teaparty => ashq if(have_effect($effect[down the rabbit hole])==0) use(1, $item["drink me" potion]); visit_url("rabbithole.php?action=teaparty"); visit_url("choice.php?pwd&whichchoice=441&option=1&choiceform1=Try+to+get+a+seat") As roippi said, you...
Top