Mercurial > eagle-eye
changeset 185:c6c6db6eea76
merged.
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Sun, 02 Nov 2008 21:17:50 +0800 |
parents | 857a67be1609 (current diff) c5e4ef45eaa7 (diff) |
children | fa34cdb6879a |
files | Ikariam.pm |
diffstat | 3 files changed, 23 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/Ikariam.pm Sun Nov 02 21:16:44 2008 +0800 +++ b/Ikariam.pm Sun Nov 02 21:17:50 2008 +0800 @@ -608,11 +608,19 @@ $self->{mech}->submit_form( form_number => 1, fields => { - cargo_army_302 => '2', - } + cargo_army_302 => '2', # 劍士 + } ); } else { - warn ($treaty); + # put the id in the friends.txt file. + Ikariam::Cities->has_a(user => 'Ikariam::User'); + my $city = Ikariam::Cities->retrieve($cityId); + my $sheep = $city->user; + + open(OUT, ">>friends.txt") or Carp::carp("can not open friends.txt"); + print OUT $sheep->name . "\n"; + close(OUT); + Carp::carp($treaty); } }
--- a/warfare.pl Sun Nov 02 21:16:44 2008 +0800 +++ b/warfare.pl Sun Nov 02 21:17:50 2008 +0800 @@ -53,6 +53,14 @@ return ($city->{transporters}->{avail} > 0) ? 1 : 0; } +sub is_port_available { + my ($self, $city) = @_; + foreach(1..2) { + return 1 if($city->{locations}[$_] eq 'port'); + } + return 0; +} + sub is_army_available { my ($self, $city) = @_; return ($city->{army}->{Swordsman} >= 2 ) ? 1 : 0;