Bale
Minion
Plans? I laugh hysterically at the mere mention of plans! I'm exhaustively testing it out now. This script now takes the "Advisor" in its own name VERY seriously. Here's a sample:
It's now a nice "Stuff to do" list without all the cluttery "stuff I can't do" and "stuff I've already done." Though in some cases, like Softcore Hole in the Sky, listing the location really just reminds you that you haven't yet eaten enough pies or pulled your star hat.
Code:
switch(get_property("questL10Garbage")) {
case "unstarted": if(my_level() < 10) break;
case "started":
if(item_amount($item[giant castle map]) < 1)
kingdom[$location[Fantasy Airship]].useful = true;
kingdom[$location[Giant's Castle]].useful = true;
case "finished":
if(in_hardcore() && item_amount($item[intragalactic rowboat]) + item_amount($item[quantum egg]) < 1)
kingdom[$location[Giant's Castle]].useful = true;
if(item_amount($item[Richard's star key]) < 1 || item_amount($item[star hat]) < 1 ||
!($strings[Master of the Surprising Fist, Avatar of Boris] contains my_path() ||
item_amount($item[star sword]) + item_amount($item[star crossbow]) + item_amount($item[star staff]) > 0))
kingdom[$location[Hole in the Sky]].useful = true;
}
It's now a nice "Stuff to do" list without all the cluttery "stuff I can't do" and "stuff I've already done." Though in some cases, like Softcore Hole in the Sky, listing the location really just reminds you that you haven't yet eaten enough pies or pulled your star hat.
Last edited: