Raven434
Member
So here is what I am using. It is very simple but works well for me.
Code:
# http://kolmafia.us/showthread.php?3456-BRICKOS-summoning-%28hopefully-I-haven-t-butchered-the-ash-language!%29/page2
void main( int adv_to_use )
{
while ( adv_to_use > 0 )
{
if ( my_mp() > mp_cost($skill[Summon BRICKOs])+12 )
cli_execute("cast * BRICKOs");
adventure(1, $location[Giants Castle]);
adv_to_use = adv_to_use - 1;
}
}