Does anyone have/know of a script that will automatically purchase parts for and assemble a meat maid?
create 1 meat maid
I was wondering, ifit was simple enough, to get a quick link on the BHH page that will send you directly to the zone of the selected bounty. Should be easy right?
You do your bounties manually? Isn't it easier to use the method that already exists? You select the bounty, KoLmafia automatically selects the area for automated adventuring. Click the checkbox that you want adventuring to stop after your bounty goal is reached, click Go. Wait until the goal is reached and KoLmafia turns your bounty in for you.
how about a script that camps hodgeman (our clan has free for all fridays)
sends a request every second to fight hodge
Why not set your CCS for fighting hodg, set the relevant choice adventure, then simply set a chatbot script. When someone sends a command (eg. kill him!) then your character will take the big man down. Reduces server hits and is generally a more refined technique.
string run_choice( string page_text )
{
matcher m_choice = create_matcher( "whichchoice value=(\\d+)" , page_text );
while( contains_text( page_text , "choice.php" ) )
{
m_choice.reset( page_text );
m_choice.find();
string choice_adv_num = m_choice.group( 1 );
string choice_adv_prop = "choiceAdventure" + choice_adv_num;
string choice_num = get_property( choice_adv_prop );
if( choice_num == "" ) abort( "Unsupported Choice Adventure!" );
if( choice_num == "0" ) abort ( "Manual Control Required, or future command..." );
string url = "choice.php?pwd&whichchoice=" + choice_adv_num + "&option=" + choice_num;
page_text = visit_url( url );
}
if( contains_text( page_text , "Combat" )) run_combat();
return page_text;
}
void main( string sender , string message )
{
if( contains_text( message.to_lower_case() , "kill" ) )
{
set_property( "choiceAdventure200" , "1" );
string page_text = visit_url( "adventure.php?snarfblat=167" );
if( contains_text( page_text , "Combat" ) )
{
run_combat();
}
else if( contains_text( page_text , "choice.php" ) )
{
page_text = run_choice( page_text );
if( contains_text( page_text , "Combat" ) )
{
run_combat();
}
}
}
}
set chatbotScript = hodgman.ash
set chatbotScript =