Bale
Minion
Here's a little bit to make the most of my Reagnimated Gnome, so that I don't ever forget to get the daily bodypart. The kgnee is what I usually want, so I make sure to get it first and equip it.
I've got that in my once a day section so that it won't happen more than once even if I log in again.
Code:
int gnome() {
// Ensure that you have body parts with the following priority. Otherwise snag the kgnee
foreach i in $items[gnomish housemaid's kgnee, gnomish coal miner's lung, gnomish athlete's foot, gnomish swimmer's ears, gnomish tennis elbow]
if(available_amount(i) < 1) return (to_int(i) - 5767);
return 4;
}
// Get body part for Reagnimated Gnome every day
if(have_familiar($familiar[Reagnimated Gnome])) {
familiar f = my_familiar();
use_familiar($familiar[Reagnimated Gnome]);
visit_url("arena.php");
visit_url("choice.php?pwd&whichchoice=597&option="+gnome());
if(equipped_item($slot[familiar]) == $item[none])
equip($item[gnomish housemaid's kgnee]);
use_familiar(f); // Restore original familiar
}
I've got that in my once a day section so that it won't happen more than once even if I log in again.