import <Zlib.ash>
import <NCF Bountyhunting.ash>
boolean USE_PUTTY = to_boolean(vars["neocowfarm_puttybounty"]);
BountyInfo currentBounty = find_BHH_object( get_property( "currentBountyItem" ).to_item() );
void main( int round, string opponent, string text )
{
buffer mac;
string macro(string mac)
{
return visit_url("fight.php?action=macro¯otext="+url_encode(mac), true, true);
}
mac.append( 'pickpocket; ');
if(USE_PUTTY)
{
if(get_property("spookyPuttyCopiesMade") != "5")
{
if(item_amount($item[spooky putty monster]) == 1)
abort("You have a spooky putty monster, use it!");
if(item_amount($item[spooky putty sheet]) == 0)
abort("No putty!");
if( item_drops(opponent.to_monster()) contains get_property("currentBountyItem").to_item() && currentBounty.bountyTarget - item_amount(currentBounty.bountyItem) > 1 )
)
mac.append( 'use spooky putty sheet; ' );
else
print("That monster doesn't drop your bounty item so putty was not used", "blue");
}
else
print("You're out of putties for today so spooky putty was not used", "blue");
}
else
print("You have opted not to use putty to speed up bounty hunting", "blue");
if(item_drops(opponent.to_monster()) contains get_property("currentBountyItem").to_item() ) // Only olfact if the monster drops your current bounty item
{
if(have_skill($skill[transcendent olfaction]))
mac.append( 'skill transcendent olfaction; ' );
}
else
print("That monster doesn't drop your bounty item so it was not olfacted", "blue");
mac.append( 'while !pastround 25; attack; endwhile;' );
macro(mac);
}