Gonging

For automating daily acquisition of Arcane in the Brain, these are the steps, no?

In the Choice Adventure's "Item" tab, set Llama Gong to "Mole";
Define CCS to "tunnel downwards" then attack;
use(1,$item[llama lama gong]);
adventure(8,$location[Mt. Molehill]); (6 combats, 2 noncombats)
???
Profit!

I've never really used the Item tab nor am I totally confident in my knowledge of ASH's interaction with mafia's automation.
 

Bale

Minion
You can simplify that a little bit with the command: cli_execute("gong mole"); It'll use a gong and choose moleform regardless of your item settings. Your method would work fine though.

or you could do this: set_property("gongPath", "2"); use(1,$item[llama lama gong]);
The first part will allow your script to set your property to automatically choose the form of the mole.
 
Last edited:

jwylot

Member
This is a snippet from my script which might help you. Probably suboptimal but it works.
PHP:
void molehill()
//Get Arcane in the Brain effect and a Digital Underground potion
{
set_property("choiceAdventure276","2");
use(1, $item[llama lama gong]);
while(have_effect($effect[Shape of...Mole!]) > 0)
	{
	visit_url("adventure.php?snarfblat=177");
	use_skill($skill[tunnel downwards]);
	run_combat();
	}
}
 
Top