Mercurial > eagle-eye
annotate README @ 43:1dbb3e3c8691
added database init sample in the README file.
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Fri, 17 Oct 2008 02:10:33 +0800 |
parents | 0644b53fd3af |
children | 4d59ba5905f6 |
rev | line source |
---|---|
41
5849b6fdc76c
removed my password from scripts.
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
diff
changeset
|
1 http://www.assembla.com/spaces/eagle-eye |
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 = | |
17 * 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
|
18 $ cat ikariam.sql|sqlite3 ikariam.sqlite |
42 | 19 * Create the config file, at ${HOME}/.eagleeye.pm. The file content are |
20 package main; | |
21 | |
22 $::server = 's2.ikariam.tw'; | |
23 $::user = "chihchun"; | |
24 $::pass = "YOUKNOW"; | |
25 | |
26 1; | |
27 | |
28 * Run the bot, 'perl inference.pl' | |
29 * Update the islands by runing 'perl scan.pl' | |
30 * List sheeps, 'perl sheep.pl' | |
31 |