acidparade.ash : the acid parade farmer

halfvoid

Member
acidparade.ash: ver 1.1

Maximizes your +item% and uses all your adventures, maintaining 10 turns of In Your Cups and adventuring in The Electric Lemonade Acid Parade.

Thanks, and feedback / suggestions for improvements are more than welcome.

(072010) ver. 1.0 : initial release.
(072010) ver. 1.1 : best familiar and infinite loop fix.
 

Attachments

  • acidparade.ash
    543 bytes · Views: 114
Last edited:

Bale

Minion
That can get you caught in an endless loop. And please note that you can run out of adventures getting "In Your Cups" and not have an adventure left for the "Electric Acid Parade". Fix it like this:

Code:
cli_execute ("maximize item");

while (my_adventures() > 0)
   {
   while (have_effect($effect[In Your Cups]) < 10 [COLOR="#ff0000"][B]&& my_adventures() > 0[/B][/COLOR])
      {
      visit_url("inv_use.php?pwd&whichitem=4613&teacups=1");
      }
   [COLOR="#ff0000"][B]if(my_adventures() > 0)[/B][/COLOR]
      adventure ( 1, $location[Electric Lemonade Acid Parade] );
   }
 

halfvoid

Member
Updated with both suggestions. I've never used best familiar before so hopefully i implemented it right.
 
Top