0

好吧,为了启动和运行这个脚本已经花费了很长时间,现在我遇到的唯一问题是偶尔会导致它重新启动脚本的 GET 和 POST 错误,这很烦人。

sub Fight {
my($cpm);
$parsed = 0; while ($parsed == 0) {sleep(3);
$mech->get("http://www.lordsoflords.com/m3/fight_control.php");
$a = $mech->content();if ($a =~ m/Skeleton/) {$parsed = 1;}}
$mech->form_number(2);
$mech->field("Difficulty", $level);
$mech->click();
$cpm = $mech->content();
$cpm =~ m/(\<option\>208.*Duke)/;
$cpm = $1;
$cpm =~ s/ - Shadowlord Duke//g;
$cpm =~ s/\>209/\>/;
$cpm =~ s/<.*?>//g;
if($debug == 1) {
    print $cpm . "\n";
}
$mech->form_number(1);
$mech->select("Monster", $cpm);
$mech->click();
$a = $mech->content();
$a =~ m/(You win.*exp )/;
$a =~ m/(battle)/;
$a =~ m/(You have been jailed for violating our rules)/;
print $1 . "\n";
my $antal = 500 + int rand (500);
my $antal = 5000;
my $jail;

# REPEAT:
while($antal > 0) {
    sleep($loopwait); #default = 0.3
    $antal = $antal -1;
    $mech->reload();
    $a = $mech->content();
    $b = $a;
    $c = $a;

我遇到错误的一行是重复部分中的 $mech->reload() 命令,该命令返回的错误如下所示:“发布http://www.lordsoflords.com/m3/fight 时出错。 php : booyaka.pl 第 299 行的错误请求"。

有时还会返回此错误“获取http://www.lordsoflords.com/m3/steal.php时出错:无法在 booyaka.pl 第 97 行连接到 www.lordsoflords.com:80(错误主机名)”。

它附加的功能如下:

sub Stealwait {
    $stealwait = 3600;
    $stealtime = time;
    $stealtime = $stealtime + $stealwait; # if stealer can't be found, click for 1k seconds
    print time . "|" . $stealtime . "\n";
    print "stealtime: " . $stealtime . "\n";
    $parsed = 0; $stealcount = 0;
    while ($parsed == 0) {sleep(3);
    print $stealcount . "\n";
    $mech->get("http://www.lordsoflords.com/m3/steal.php");
    $a = $mech->content();
    if ($a =~ m/Parsed/) {$parsed = 1; $stealwait = 0;}
    $stealcount = $stealcount+1; if ($stealcount == 5) {
    }
if ($a =~ m/recover/)
{
    $a = $mech->content();
    $a =~ m/(Take.*This)/s;
    $b = $1;
    $b =~ s/<.*?>//sg;
    $b =~ m/(Take.*seconds)/s;
    $b = $1;
     print $b . "\n";
    $b =~ m/(for.*seconds)/s;
    $b = $1;
    $b =~ s/for//sg;
    $b =~ s/seconds//sg;
    $b =~ s/<.*?>//sg;
    $b =~ s/,//g;
            $b = 2*$b;
            $stealwait = $b;
            print "In recover, gotta wait " . $stealwait . " seconds before I can steal...\n";
            $stealtime = time;
            $stealtime = $stealtime + $stealwait;
    }


    sub Steal {
$parsed = 0; while ($parsed == 0) {sleep(3);
$mech->get("http://www.lordsoflords.com/m3/steal.php");
$a = $mech->content();if ($a =~ m/Parsed/) {$parsed = 1;}}
    $a = $mech->content();
    if ($a =~ m/Freeplay/) { # steal only if we have freeplay
            $a = "\<option\>" . "$stealchar" . ".*?\<\/option\>";
            $tmp = $mech->content();
            #print $tmp;
            if($tmp =~ m/($a)/) {print "Stealer found\n";} else {print "Stealer not found! - not stealing!\n"; return();}
            $tmp =~ m/($a)/s;
            $tmp = $1;
            $tmp =~ s/<.*?>//sg;
            print "Stealing from: " . $tmp;
            $mech->form_name(0);
            $mech->select("Opp", $tmp);
            $mech->click_button('value' => 'Steal Stats or Items');
            $a = $mech->content();
            $a =~ m/(sleepers.*This)/s;
            $b = $1;
            $b =~ s/<.*?>//sg;
            $b =~ s/sleepers//sg;
            $b =~ s/This//sg;
            print $b;
    } else {$stealtime = time; $stealtime = $stealtime + 2000; print "Freeplay not detected, stealing cancelled...\n";}
}

在编写脚本时,我不是专家,任何关于如何纠正此问题或覆盖 Mechanize 超时的见解将不胜感激。

4

1 回答 1

1

使用Try::Tiny或其他东西捕获异常,稍等(使用指数退避),然后重新发送请求。对重试上限进行硬编码是一种常见的 Internet 礼貌,这样您就不会最终敲打服务器。

于 2013-10-29T17:01:57.747 回答