palpitations
New member
I've been using this for a while... I posted something similar a while back on the KoL forums, not using exactly this farming strategy, but close enough. At the time, I got a few negative comments for hiding the exact details. Of course, anyone who had a positive message likely got a message from me with enough details to help them figure this out... So I guess it sucks to be negative, huh?
My apologies to anyone who's been making meat off of this. I was too. ~300-500k a day on average, for quite a while. Hell, I sent it to someone else, and they made about 750,000 meat overnight with it (700k-750k, they got lucky and were able to sell Digital Underground Potions for 47.5k each I believe).
I've been watching the prices over the past few days. I told myself, when there were 3 days in a row where I could make more doing something else, I'd post it. And so here it is.
Disclaimer: I suck at this, and I had a lot to drink when I wrote it. I cobbled together something piss poor. Everyone who actually knows what they're doing - I know, I know... I have no doubt this could be drastically improved. Everyone else: it seems to work. And it made me somewhere between 1,200 and 4,800 meat per adventure. You just need to make sure you have llama lama gongs on hand, and it'll pick up digital underground potions. Simple enough. And, on a positive note, I'll need some Digital Underground Potions soon, so feel free to lower the price on them as much as you'd like
My apologies to anyone who's been making meat off of this. I was too. ~300-500k a day on average, for quite a while. Hell, I sent it to someone else, and they made about 750,000 meat overnight with it (700k-750k, they got lucky and were able to sell Digital Underground Potions for 47.5k each I believe).
I've been watching the prices over the past few days. I told myself, when there were 3 days in a row where I could make more doing something else, I'd post it. And so here it is.
Disclaimer: I suck at this, and I had a lot to drink when I wrote it. I cobbled together something piss poor. Everyone who actually knows what they're doing - I know, I know... I have no doubt this could be drastically improved. Everyone else: it seems to work. And it made me somewhere between 1,200 and 4,800 meat per adventure. You just need to make sure you have llama lama gongs on hand, and it'll pick up digital underground potions. Simple enough. And, on a positive note, I'll need some Digital Underground Potions soon, so feel free to lower the price on them as much as you'd like
Code:
void usegong()
{
if (my_adventures() < 12)
{
print("Not enough adventures to get another potion. Stopping.");
exit;
} else
{
if (item_amount($item[llama lama gong]) == 0)
{
print("No more gongs! Aborting.");
exit;
} else
{
set_property("choiceAdventure276","2");
use(1, $item[llama lama gong]);
}
}
}
void molehill()
{
if (my_adventures() == 0)
{
print("Out of adventures.");
exit;
} else
{
while((have_effect($effect[Shape of...Mole!]) > 0) && (my_adventures() > 0))
{
visit_url("adventure.php?snarfblat=177");
use_skill($skill[tunnel downwards]);
run_combat();
}
}
}
void checkuse()
{
if (my_adventures() == 0)
{
print("Out of adventures.");
exit;
} else
{
if ((have_effect($effect[Shape of...Mole!]) == 0) && (my_adventures() > 0))
usegong();
else molehill();
}
}
void main()
{
if (my_adventures() == 0)
{
print("Out of adventures.");
exit;
} else
{
while (my_adventures() > 0)
checkuse();
}
}
Last edited: