Bale
Minion
The final Amazing Idea has been found!
You put the lime in the coconut and you get item 5069, a Tiny black hole.
You put the lime in the coconut and you get item 5069, a Tiny black hole.
string mod_name(string name) {
matcher re;
re = create_matcher("<.+?>", name); //remove tags
name = replace_all(re, "");
re = create_matcher(" \\s+", name); //dedup spaces
name = replace_all(re, " ");
re = create_matcher(" ", name); //convert spaces
name = replace_all(re, "_");
// problemed entities on wiki
re = create_matcher("Ō", name); //convert umlaut O
name = replace_all(re, "O");
re = create_matcher("ū", name); //convert umlaut u
name = replace_all(re, "u");
re = create_matcher("◊", name); //remove odd char in bugged item
name = replace_all(re, "");
name = entity_decode(name); // convert remaining entities
// specific changes
re = create_matcher("#", name); //remove
name = replace_all(re, "");
re = create_matcher("\\?", name); //convert
name = replace_all(re, "%3F");
string fl = substring(name, 0, 1); // capitalize first letter
name = fl.to_upper_case()+substring(name, 1);
return name;
}
The script uses koldb to detect majority familiar runs, so it won't be picked up until you start a new run.Okay, I've got some weird problems with the snapshot.
If you check my ascension history (I'm wrldwzrd89 in-game) you'll see that my last ascension was a 100% Smiling Rat Fistcore.
However, my snapshot page isn't reflecting this... and there's a few other oddities I noticed (typos mostly).
Thanks, but I have ascended into a 100% Piano Cat casualcore... so it should be picked up by now.The script uses koldb to detect majority familiar runs, so it won't be picked up until you start a new run.