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.
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.