Mercurial > eagle-eye
annotate README @ 47:f2065bdcaeb3
error message
author | billy3321@f3svr.f3.csu.edu.tw.f3.csu.edu.tw |
---|---|
date | Sat, 18 Oct 2008 22:21:42 +0800 |
parents | 9466964ae5bb |
children | 9356eafcdde7 |
rev | line source |
---|---|
46
9466964ae5bb
added url of debian packags.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
45
diff
changeset
|
1 Project Homepage: http://www.assembla.com/spaces/eagle-eye |
41
5849b6fdc76c
removed my password from scripts.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
diff
changeset
|
2 |
5849b6fdc76c
removed my password from scripts.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
diff
changeset
|
3 = Files = |
5849b6fdc76c
removed my password from scripts.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
diff
changeset
|
4 |
5849b6fdc76c
removed my password from scripts.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
diff
changeset
|
5 Ikariam.pm - Basic modules for collectoin information from web, and the web access/submit functions will be also implemented. |
42 | 6 |
7 ally.pl - list all the cities which owned by an ally. | |
8 enemy.pl - list all the islands and scores the enemy have. | |
9 freeland.pl - find the available place we can build the city. | |
10 inactive-map.pl - finding the sheep and list them in a map. | |
11 inference.pl - a simple proof-of-concept of decision making robot. | |
12 scan.pl - scan the islands and cities by coordinate or default world view. | |
13 scores.pl - scan and update the scores of accounts. | |
14 sheep.pl - find the sheep to kill, takes coordinate or default world view. | |
15 | |
16 = HOWTO = | |
45
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
17 * Install *many* perl modules. |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
18 libclass-dbi-autoloader-perl - Class::DBI::AutoLoader |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
19 libclass-dbi-perl - Class::DBI |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
20 libclass-dbi-sqlite-perl - Class::DBI::SQLite |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
21 libhtml-tagparser-perl - HTML::TagParser; |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
22 libio-compress-zlib-perl - IO::Uncompress::Gunzip |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
23 libwww-perl - LWP |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
24 libwww-mechanize-perl - WWW::Mechanize |
4d59ba5905f6
addressed the modules you need to install
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
43
diff
changeset
|
25 |
46
9466964ae5bb
added url of debian packags.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
45
diff
changeset
|
26 You can download missed debian packages from http://www.assembla.com/spaces/eagle-eye/documents |
9466964ae5bb
added url of debian packags.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
45
diff
changeset
|
27 |
42 | 28 * Create the sqlite3 database 'ikariam.sqlite' first, based on ikariam.sql |
43
1dbb3e3c8691
added database init sample in the README file.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
42
diff
changeset
|
29 $ cat ikariam.sql|sqlite3 ikariam.sqlite |
42 | 30 * Create the config file, at ${HOME}/.eagleeye.pm. The file content are |
31 package main; | |
32 | |
33 $::server = 's2.ikariam.tw'; | |
34 $::user = "chihchun"; | |
35 $::pass = "YOUKNOW"; | |
36 | |
37 1; | |
38 | |
39 * Run the bot, 'perl inference.pl' | |
40 * Update the islands by runing 'perl scan.pl' | |
41 * List sheeps, 'perl sheep.pl' | |
42 |