Bug Mafia can't find "sweat out"

devjoe

New member
Daily build 28541.
This is part of a personal .ash script that has worked for ages, and it worked yesterday in the same daily build. It's run after doing various morning prep that includes preparing the designer sweatpants, usually to 100 sweat:

boolean doCLI(string cmd)
{
try{ cli_execute(cmd); }
finally {return true;}
return false;
}
...
doCLI("outfit barfsweat");
doCLI("familiar jill-of-all-trades");
doCLI("equip familiar flaming familiar doppelganger");
doCLI("bjornify coffee pixie");
if (get_property("sweat").to_int()>=75) {
if (my_mp()<50) { use(1, $item[magical mystery juice]); }
doCLI("cast ode to booze");
doCLI("cast sweat out");
doCLI("cast sweat out");
doCLI("cast sweat out");
doCLI("acquire perfect negroni");
doCLI("drink perfect negroni");
doCLI("outfit barf");
doCLI("eat affirmation cookie");
print("Finished consuming. Finish barf fights.");
} else {
print("NOT ENOUGH SWEAT! CURRENT SWEAT LEVEL");
print(get_property("sweat"));
print("Do barf adventures until you have 75 and then latedrink.");
}

Today:
Could not find a known, usable skill of yours uniquely matching "sweat out"
Could not find a known, usable skill of yours uniquely matching "sweat out"
Could not find a known, usable skill of yours uniquely matching "sweat out"

And then I aborted the drinking.
Immediately afterward in the chat, "/cast sweat out" three times worked.
 
Same. Been running r28541 for a week so I expect this is caused by KoL.
1748453549490.png

Code I was running is

Code:
    while (my_inebriety() > 0 && get_property("sweat").to_int() > 24 && get_property("_sweatOutSomeBoozeUsed").to_int() < 3) {
      use_skill(1, $skill[Sweat Out Some Booze]);
    }
 
Same, except not a .ash script. /cast sweat manually typed into the gCLI did work, though.
Fails for me


Code:
> cast 3 sweat out

Could not find a known, usable skill of yours uniquely matching "3 sweat out"
Putting on designer sweatpants...
Equipment changed.

> cast 3 sweat out

Could not find a known, usable skill of yours uniquely matching "3 sweat out"
 
Fails for me


Code:
> cast 3 sweat out

Could not find a known, usable skill of yours uniquely matching "3 sweat out"
Putting on designer sweatpants...
Equipment changed.

> cast 3 sweat out

Could not find a known, usable skill of yours uniquely matching "3 sweat out"
snooty was talking about "/cast", which just sends the chat macro straight to kol; the cast cli command is indeed failing for me as well, unable to match a skill even when I just do "cast sweat out some booze"

EDIT: as another data point, I didn't encounter this post-ascension.
 
Last edited:
Back
Top