Turn report browser

Rich Skrenta (skrenta@candid.rt.com)
Thu, 25 Nov 93 16:11:00 EST

I'd be ecstatic if someone wrote an interactive turn report browser/post
processor (a PD one that I could give away to new Olympia players).

Olympia outputs an intermediate form of the turn report, which a little
C program turns into the reports which are mailed to players. If someone
had a better client, I could mail them the raw report instead of the
formatted one, and they could process it with whatever client they liked.

I expect that a turn browser would require some changes to my intermediate
output format. I'm willing to make whatever changes are necessary. Let
me know what you need.

Report formatter and a sample raw turn report:

# This is a shell archive. Remove anything before this line,
# then unpack it by saving it in a file and typing "sh file".
#
# This archive contains:
# rep.c 100
#

echo x - rep.c
cat >rep.c <<'@EOF'

#include <stdio.h>

#define iswhite(c) ((c) == ' ' || (c) == '\t')
#define LEN 2048
#define TRUE 1
#define FALSE 0

int indent;
int second_indent;
int day;

main(argc, argv)
int argc;
char **argv;
{
FILE *fp;

if (argc < 2)
{
fprintf(stderr, "usage: %s report-file\n", argv[0]);
exit(1);
}

fp = fopen(argv[1], "r");
if (fp == NULL)
{
fprintf(stderr, "can't read %s: ", argv[1]);
perror("");
exit(1);
}

init_spaces();
parse_includes(fp);
fclose(fp);

exit(0);
}

output(s)
char *s;
{
char *p;

for (p = s; *p; p++)
if (*p == '~')
*p = ' ';

if (day >= 0)
printf("%2d: %s\n", day, s);
else
printf("%s\n", s);
}

/*
* Word wrapper
*/

static char cur[LEN];
static int wrap_pos;
static char *spaces;
static int spaces_len;
static int wrap_output;

init_spaces()
{
int i;
extern char *malloc();

spaces_len = 150;
spaces = malloc(spaces_len+1);

if (spaces == NULL)
{
fprintf(stderr, "out of memory\n");
exit(1);
}

for (i = 0; i < spaces_len; i++)
spaces[i] = ' ';

spaces[spaces_len] = '\0';
}

/*
* To use:
* wrap_set(who);
* wrap(s, ...) as many as needed
* wrap_done();
*/

void
wrap_start()
{

strcpy(cur, &spaces[spaces_len - indent]);
wrap_output = FALSE;
}

wrap_done_sup()
{

output(cur);
strcpy(cur, &spaces[spaces_len - indent]);
wrap_output = TRUE;
}

wrap_done()
{
char *p;

for (p = cur; *p && iswhite(*p); p++)
;

if (*p || !wrap_output)
wrap_done_sup();
}

char *
word_split(s, pos)
char *s;
int pos;
{
int len;

len = strlen(s);
if (pos >= strlen(s))
return(&s[len]);

while (pos > 0 && s[pos] != ' ')
pos--;

if (pos <= 0)
return(NULL);

s[pos] = '\0';

return(&s[pos + 1]);
}

wrap_append(s, t)
char *s;
char *t;
{
int slen;

if (strcmp(t, "\"") != 0) {
slen = strlen(s);

if (slen > 0 && s[slen - 1] != ' ' && s[slen - 1] != '"') {
strcat(s, " ");
slen++;
}

if (slen > 1 &&
(s[slen - 2] == '.'
|| s[slen - 2] == ':'
|| s[slen - 2] == '?'
|| s[slen - 2] == '!') )
strcat(s, " ");
}

strcat(s, t);
}

wrap(s)
char *s;
{
char *t;
int len;

len = strlen(cur);

if (strlen(s) + len < wrap_pos)
wrap_append(cur, s);
else {
t = word_split(s, wrap_pos - len);
if (t == NULL) {
wrap_done_sup();
wrap(s);
} else {
wrap_append(cur, s);
wrap_done_sup();
wrap(t);
}
}
}

/*
* box-num:indent::text
* box-num:indent:day:text
* box-num:indent/second-indent:day:text
* box-num:indent/second-indent::text
*/

char *
strip_stuff(s)
char *s;
{

/*
* Pull off box number
*/

while (*s && *s != ':')
s++;
if (*s == ':')
s++;

/*
* Now get indentation: %d or %d/%d
*/

indent = atoi(s);

while (*s && *s != ':' && *s != '/')
s++;

if (*s == '/')
{
s++;
second_indent = atoi(s);
while (*s && *s != ':')
s++;
}
else
second_indent = 0;

if (*s == ':')
s++;

/*
* Now get day, if any
*/

if (*s == ':')
day = -1;
else
day = atoi(s);

while (*s && *s != ':')
s++;

if (*s == ':')
s++;

return s;
}

out_line(s)
char *s;
{
char *p;

for (p = s; *p && *p != '\n'; p++)
;
*p = '\0';

if (day >= 0)
wrap_pos = 72; /* left margin has 2d: on it */
else
wrap_pos = 76;

#if 0
if (strlen(s) < wrap_pos)
output(s);
else
{
#endif
wrap_start();
indent += second_indent;
wrap(s);
wrap_done();
indent -= second_indent;
}

out_line_include(fp, s)
FILE *fp;
char *s;
{

if (strncmp(s, "#include ", 9) == 0)
print_by_num(fp, atoi(&s[9]));
else
out_line(s);
}

print_by_num(fp, num)
FILE *fp;
int num;
{
char buf[LEN];
long l;

l = ftell(fp);
rewind(fp);

while (fgets(buf, LEN, fp) != NULL)
{
if (atoi(buf) == num)
out_line(strip_stuff(buf));
}

fseek(fp, l, 0);
}

parse_includes(fp)
FILE *fp;
{
char buf[LEN];

while (fgets(buf, LEN, fp) != NULL)
{
if (atoi(buf) == 1)
out_line_include(fp, strip_stuff(buf));
}
}

@EOF

chmod 600 rep.c

echo x - 100
cat >100 <<'@EOF'
22766:0:1:City~[ew66] bought 100~fish~[87] from Sylvia~[4763] for 100~gold.
22766:0:1:City~[ew66] bought nine~clay pots~[95] from Rilian~[2993] for 27~gold.
22766:0:1:City~[ew66] bought 15~woven baskets~[94] from Rilian~[2993] for 45~gold.
2104:0:1:> name "Captain McCook"
2104:0:1:Arkat WolfRunner~[2104] will now be known as Captain McCook~[2104].
5220:0:1:> move df26
5220:0:1:Travel to Mountain~[df26] will take ten days.
18526:0:1:Savages~[5220], number: 6, left for Mountain~[df26].
17022:0:1:Alobar~[3299], lord~660, with ten~peasants, 25~workers, 18~soldiers, arrived from Silverhorn~[ga35].
15928:0:1:Mongo the Mage~[2339], lord~3637, with 11~peasants, left for Forest~[cg27].
4562:0:1:> move cy27
4562:0:1:Travel to Mountain~[cy27] will take ten days.
17726:0:1:Savages~[4562], number: 6, left for Mountain~[cy27].
17022:0:1:Trevor the Even More Intrepid~[4893], lord~4055, left for Plain~[cs22].
22766:0:1:Meagaera~[4047], lord~2071, left for Forest~[cu26].
17022:0:1:Alobar~[3299], lord~660, with 25~workers, left for Passage-to-Nowhere~[ku60].
22766:0:1:Rashid~[3763], lord~2993, with one~riding horse, left for Forest~[cu26].
2204:0:1:> raze
2398:0:1:> raze
16819:0:1:Sne~[4920], lord~4825, with 30~peasants, left for Forest~[cp18], accompanied~by:
16819:3/3:1:Fla~[2637], lord~4920
2104:0:1:> message 3 2929
2104:0:1:Message delivered.
16444:0:1:Zeldar~[4776], lord~4859, with four~workers, seven~soldiers, five~archers, two~riding horses, arrived from City~[ev18], accompanied~by:
16444:3/3:1:Rupert van Fang~[5830], unsworn, prisoner
17326:0:1:Rashid~[3763], lord~2993, with one~riding horse, arrived from City~[ew66].
16922:0:1:Zehndar~[2131], lord~2402, arrived from Oleg's City~[kh44].
17326:0:1:Meagaera~[4047], lord~2071, arrived from City~[ew66].
16924:0:2:Snipet~[4055], lord~3775, left for Mountain View~[lj36], accompanied~by:
16924:3/3:2:Eltanin~[2040], lord~5999
17326:0:2:Rashid~[3763], lord~2993, with one~riding horse, left for Forest~[cu25].
17326:0:2:Meagaera~[4047], lord~2071, left for Forest~[cu25].
16922:0:2:Zehndar~[2131], lord~2402, left for Plain~[cp22].
2104:0:2:> message 1 2929
2104:0:2:Line length of message text exceeds 60 characters.
2104:0:2:Message rejected.
16824:0:2:Clytemnestra~[3524], lord~2924, with ten~peasants, arrived from Plain~[cp25].
16924:0:3:Melany~[4454], lord~4918, with ten~peasants, arrived from Mountain View~[lj36].
16824:0:3:Clytemnestra~[3524], lord~2924, with ten~peasants, left for Tower Bloodstone~[kq27].
16924:0:3:Melany~[4454], lord~4918, with ten~peasants, left for Forest~[cr24].
17022:0:4:Frodo~[3326] quarried 89~stone.
17022:0:5:Frodo~[3326], lord~3299, with 13~workers, ten~peasants, 18~soldiers, left for Plain~[cs22].
17326:0:6:Candar~[3586], lord~4001, with ten~peasants, arrived from Forest~[ct26].
17326:0:7:Carl~[2028], lord~2993, with ten~workers, 12~riding horses, arrived.
3298:0:7:Savages~[3298] gained seven health.
3738:0:7:Savages~[3738] gained 14 health.
22766:0:8:Ryba~[4001], lord~2071, left for Forest~[cu26].
17326:0:8:Carl~[2028], lord~2993, with ten~workers, 12~riding horses, left for City~[ew66].
17326:0:8:Ryba~[4001], lord~2071, arrived from City~[ew66].
22766:0:8:Carl~[2028], lord~2993, with ten~workers, 12~riding horses, arrived from Forest~[cu26].
17326:0:9:Vellos Knoss~[4603], lord~5327, left.
17326:0:9:Ryba~[4001], lord~2071, left for Forest~[ct26].
16924:0:10:Greyyd~[4918], lord~3241, with 25~workers, 14~soldiers, left for Well, Well, Well~[jx75].
5220:0:10:Arrival at Mountain~[df26].
18426:0:10:Savages~[5220], number: 6, arrived from Forest~[dg26].
4562:0:10:Arrival at Mountain~[cy27].
17727:0:10:Savages~[4562], number: 6, arrived from Plain~[cy26].
16824:0:10:Legolas~[3102], lord~3882, arrived from City~[ev77].
17120:0:11:Garion~[4618], lord~3299, with 48~peasants, left for Plain~[cs21].
16824:0:11:Legolas~[3102], lord~3882, left for Mountain~[cq24].
5220:0:11:> use 98 1
5220:0:11:Savages~[5220] sounds a slow drumbeat.
18426:0:11:Savages~[5220] sounds a slow drumbeat.
18526:0:11:Slow beating drums may be heard to the north.
5220:0:11:> wait time 39
5829:0:11:> move df26
5829:0:11:Travel to Mountain~[df26] will take ten days.
18326:0:11:Savages~[5829], number: 8, left for Mountain~[df26].
5564:0:11:> move df26
5564:0:11:Travel to Mountain~[df26] will take ten days.
18526:0:11:Savages~[5564], number: 7, left for Mountain~[df26].
2266:0:11:> move df26
2266:0:11:Travel to Mountain~[df26] will take ten days.
18427:0:11:Savages~[2266], number: 9, left for Mountain~[df26].
4562:0:11:> use 98 1
4562:0:11:Savages~[4562] sounds a slow drumbeat.
17727:0:11:Savages~[4562] sounds a slow drumbeat.
17726:0:11:Slow beating drums may be heard to the east.
4562:0:11:> wait time 45
2602:0:11:> move cy27
2602:0:11:Travel to Mountain~[cy27] will take ten days.
17726:0:11:Savages~[2602], number: 6, left for Mountain~[cy27].
3298:0:14:Savages~[3298] gained five health.
3738:0:14:Savages~[3738] gained 15 health.
17022:0:15:Alobar~[3299], lord~660, with 25~workers, arrived from Passage-to-Nowhere~[ku60].
16444:0:15:Kari~[5418], lord~4776, with ten~peasants, arrived from Forest~[cl45].
16924:0:16:Greyyd~[4918], lord~3241, with 24~workers, 14~soldiers, arrived from Well, Well, Well~[jx75].
16444:0:16:Kari~[5418], lord~4776, with ten~peasants, left for City~[ev18].
16927:0:17:Knight of Swords~[3691] attacks Savages~[3298]!
16927:3:17:
16927:3:17:Knight of Swords~[3691], lord~3856, with seven~peasants, ten~soldiers, 19~pikemen, accompanied~by:
16927:6/3:17:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
16927:3:17:
16927:3:17:Savages~[3298]
3298:0:17:Knight of Swords~[3691] attacks us!
16927:0:17:
16927:0:17:Knight of Swords~[3691] is victorious!
3298:0:17:We lost!
16927:0:17:
16927:3:17:Savages~[3298] was killed.
16927:0:17:
3298:0:17:*** Savages has died ***
3298:0::
16514:0:17:Angry mob~[4043], number: 20 has formed to resist pillaging.
4043:0:18:> guard 1
4043:0:18:Will guard Mountain~[cm14].
16927:0:18:Knight of Swords~[3691] attacks Savages~[3738]!
16927:3:18:
16927:3:18:Knight of Swords~[3691], lord~3856, with seven~peasants, ten~soldiers, 19~pikemen, accompanied~by:
16927:6/3:18:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
16927:3:18:
16927:3:18:Savages~[3738]
3738:0:18:Knight of Swords~[3691] attacks us!
16927:0:18:
16927:0:18:Knight of Swords~[3691] is victorious!
3738:0:18:We lost!
16927:0:18:
16927:3:18:Knight of Swords lost one~peasant.
16927:0:18:
16927:3:18:Savages~[3738] was killed.
16927:0:18:
3738:0:18:*** Savages has died ***
3738:0::
17326:0:18:Beorn~[4375], lord~2947, with one~warmount, arrived from Forest~[ct26].
16927:0:19:Knight of Swords~[3691], lord~3856, with six~peasants, ten~soldiers, 19~pikemen, left for Crossroads Inn~[ii64], accompanied~by:
16927:3/3:19:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
31764:0:19:Knight of Swords~[3691], lord~3856, with six~peasants, ten~soldiers, 19~pikemen, arrived from Plain~[cq27], accompanied~by:
31764:3/3:19:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
17326:0:19:Beorn~[4375], lord~2947, with one~warmount, left for City~[ew66].
31764:0:19:Knight of Swords~[3691] attacks Savages~[2398]!
31764:3:19:
31764:3:19:Knight of Swords~[3691], lord~3856, with six~peasants, ten~soldiers, 19~pikemen, accompanied~by:
31764:6/3:19:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
31764:3:19:
31764:3:19:Savages~[2398]
2398:0:19:Knight of Swords~[3691] attacks us!
31764:0:19:
31764:0:19:Knight of Swords~[3691] is victorious!
2398:0:19:We lost!
31764:0:19:
31764:3:19:Savages~[2398] was killed.
31764:0:19:
2398:0:19:*** Savages has died ***
2398:0::
16444:0:19:Zeldar~[4776] cut 30~wood.
22766:0:19:Beorn~[4375], lord~2947, with one~warmount, arrived from Forest~[cu26].
31764:0:20:Knight of Swords~[3691], lord~3856, with six~peasants, ten~soldiers, 19~pikemen, left for Plain~[cq27], accompanied~by:
31764:3/3:20:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
16927:0:20:Knight of Swords~[3691], lord~3856, with six~peasants, ten~soldiers, 19~pikemen, arrived from Crossroads Inn~[ii64], accompanied~by:
16927:3/3:20:Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
22766:0:20:Sylvia~[4763], lord~4375, with ten~soldiers, left for Forest~[cu26].
5829:0:20:Arrival at Mountain~[df26].
18426:0:20:Savages~[5829], number: 8, arrived from Mountain~[de26].
5564:0:20:Arrival at Mountain~[df26].
18426:0:20:Savages~[5564], number: 7, arrived from Forest~[dg26].
2266:0:20:Arrival at Mountain~[df26].
18426:0:20:Savages~[2266], number: 9, arrived from Forest~[df27].
2602:0:20:Arrival at Mountain~[cy27].
17727:0:20:Savages~[2602], number: 6, arrived from Plain~[cy26].
17326:0:20:Sylvia~[4763], lord~4375, with ten~soldiers, arrived from City~[ew66].
16924:0:20:Legolas~[3102], lord~3882, arrived from Mountain~[cp24].
5829:0:21:> stack 5220
5829:0:21:Savages~[5829] stacks beneath Savages~[5220].
5220:0:21:Savages~[5829] stacks beneath us.
5564:0:21:> stack 5220
5564:0:21:Savages~[5564] stacks beneath Savages~[5220].
5220:0:21:Savages~[5564] stacks beneath us.
2266:0:21:> stack 5220
2266:0:21:Savages~[2266] stacks beneath Savages~[5220].
5220:0:21:Savages~[2266] stacks beneath us.
2602:0:21:> stack 4562
2602:0:21:Savages~[2602] stacks beneath Savages~[4562].
4562:0:21:Savages~[2602] stacks beneath us.
16924:0:21:Legolas~[3102], lord~3882, left for Mountain~[cq23].
17326:0:21:Sylvia~[4763], lord~4375, with ten~soldiers, left for Forest~[cu25].
16924:0:22:Greyyd~[4918], lord~3241, with 24~workers, 14~soldiers, six~peasants, left.
17819:0:22:Angry mob~[4328], number: 8 has formed to resist pillaging.
16924:0:22:Well, Well, Well~[jx75] collapses!
4328:0:23:> guard 1
4328:0:23:Will guard Forest~[cz19].
17819:0:23:Budster Bud~[2468], lord~4288, with eight~workers, two~soldiers, left for Mountain~[da19].
16514:0:23:Thorak the Silent~[4882], lord~3930, with six~peasants, eight~workers, one~riding horse, left for Forest~[cm15].
4328:0:23:> attack 2468
17819:0:23:Angry mob~[4328] attacks Budster Bud~[2468]!
17819:3:23:
17819:3:23:Angry mob~[4328], number: 8
17819:3:23:
17819:3:23:Budster Bud~[2468], lord~4288, with eight~workers, two~soldiers
4328:0:23:Attack Budster Bud~[2468].
17819:0:23:
17819:0:23:Angry mob~[4328] is victorious!
4328:0:23:We won!
17819:0:23:
17819:3:23:Angry mob lost seven~peasants.
4328:0:23:Angry mob~[4328] lost seven~peasants.
17819:0:23:
17819:3:23:Budster Bud lost eight~workers, two~soldiers.
17819:3:23:Budster Bud~[2468] was taken prisoner.
17819:0:23:
4328:0:23:Budster Bud~[2468] is taken prisoner by Angry mob~[4328].
4328:0:23:Taken from Budster Bud~[2468]:
4328:3:23:850~gold~[1]
4328:3:23:16~wood~[77]
16924:0:23:Greyyd~[4918], lord~3241, with 24~workers, 14~soldiers, six~peasants, arrived.
17727:0:23:Hugh Von Klugstein~[4197] quarried 50~stone.
16817:0:24:Angry mob~[3353], number: 9 has formed to resist pillaging.
17516:0:24:Angry crowd~[3803], number: 18 has formed to resist pillaging.
3353:0:25:> guard 1
3353:0:25:Will guard Forest~[cp17].
3803:0:25:> guard 1
3803:0:25:Will guard Plain~[cw16].
17022:0:25:Alobar~[3299], lord~660, with ten~peasants, 25~workers, left for Silverhorn~[ga35].
3803:0:25:> attack 3624
17516:0:25:Angry crowd~[3803] attacks Eric the Explorer~[3624]!
17516:3:25:
17516:3:25:Angry crowd~[3803], number: 18
17516:3:25:
17516:3:25:Eric the Explorer~[3624], lord~5755, with 20~peasants
3803:0:25:Attack Eric the Explorer~[3624].
17516:0:25:
17516:0:25:Eric the Explorer~[3624] is victorious!
3803:0:25:We lost!
17516:0:25:
17516:3:25:Eric the Explorer lost 16~peasants.
17516:0:25:
17516:3:25:Angry crowd lost 17~peasants.
3803:0:25:Angry crowd~[3803] lost 17~peasants.
17516:3:25:Angry crowd~[3803] was wounded.
17516:0:25:
3803:0:25:Angry crowd~[3803] is wounded. Health is now 70.
3803:0:25:Angry crowd~[3803] has fallen ill.
5394:0:26:Wait finished: 46 days have passed.
16924:0:26:Leonardo~[2845], lord~3299, with 13~workers, arrived from Forest~[cr24].
17022:0:26:Bolgor the Woodsman~[2043], lord~5631, with ten~peasants, arrived from Plain~[cs22].
5394:0:27:> attack jx75
5394:0:27:Well, Well, Well~[jx75] is unoccupied.
5394:0:27:We have taken Well, Well, Well~[jx75].
17022:0:27:Bolgor the Woodsman~[2043], lord~5631, with ten~peasants, left for Plain~[cr21].
17436:0:27:Crowd of men~[4216], number: 15 has formed to resist pillaging.
4216:0:28:> guard 1
4216:0:28:Will guard Forest~[cv36].
3803:0:28:Angry crowd~[3803] lost 14 health.
17726:0:29:HMS Preserver~[kx72], roundship, 1,000~gold to enter, arrived from Ocean~[cx26], owner:
17726:0/6:29: Lionel~[3313], lord~5327, with eight~sailors
3425:0:29:Wait finished: 49 days have passed.
3425:0:30:> attack jn04
16824:0:30:Savages~[3425] attacks EarthWound~[jn04]!
16824:3:30:
16824:3:30:Savages~[3425], number: 6, accompanied~by:
16824:6/3:30:Savages~[5998], number: 7
16824:6/3:30:Savages~[3188], number: 11
16824:3:30:
16824:3:30:EarthWound~[jn04], mine, depth~3, 5%~damaged, accompanied~by:
16824:6/3:30:Master Reinhold~[3080], lord~5043, with seven~workers
3425:0:30:Attack EarthWound~[jn04].
5998:0:30:Savages~[3425] leads us in an attack against EarthWound~[jn04].
3188:0:30:Savages~[3425] leads us in an attack against EarthWound~[jn04].
16824:0:30:
16824:0:30:Savages~[3425] is victorious!
3425:0:30:We won!
5998:0:30:We won!
3188:0:30:We won!
16824:0:30:
16824:3:30:Savages lost four~savages.
3425:0:30:Savages~[3425] lost one~savage.
3188:0:30:Savages~[3188] lost three~savages.
16824:0:30:
16824:3:30:Master Reinhold lost seven~workers.
16824:3:30:Master Reinhold~[3080] was wounded.
16824:0:30:
3425:0:30:We have taken EarthWound~[jn04].
5998:0:30:We have taken EarthWound~[jn04].
3188:0:30:We have taken EarthWound~[jn04].
3425:0:30:Master Reinhold~[3080] flees to Mountain~[cp24].
17536:0:30:Angry mob~[3901], number: 23 has formed to resist pillaging.
16924:0:30:Leonardo~[2845] quarried 50~stone.
4609:0:30:Paid maintenance of 35~gold.
15928:0::
15928:0::Routes leaving Forest~[cg28]:
15928:3::North, to Ocean~[cf28], Atnos Sea, 1~day
15928:3::East, to Forest~[cg29], 8~days
15928:3::South, to Forest~[ch28], 8~days
15928:3::West, to Forest~[cg27], 8~days
15928:0::
15928:0::Inner locations:
15928:3::Graveyard~[eu32], graveyard, 1 day
15928:0::
15928:0::Seen here:
15928:0/3:: * Angry mob~[2345], number: 16, on guard
16344:0::
16344:0::Routes leaving Forest~[ck44]:
16344:3::North, to Ocean~[cj44], Atnos Sea, 1~day
16344:3::East, to Forest~[ck45], 8~days
16344:3::South, to Forest~[cl44], 8~days
16344:3::West, to Ocean~[ck43], Atnos Sea, 1~day
16344:0::
16344:0::Seen here:
16344:0/3:: * Targer Wolf~[4609], unsworn, "pondering over what to do next.", with five~soldiers, five~pikemen, five~crossbowmen
16444:0::
16444:0::Routes leaving Forest~[cl44]:
16444:3::North, to Forest~[ck44], 8~days
16444:3::East, to Forest~[cl45], 8~days
16444:3::South, to Ocean~[cm44], Atnos Sea, impassable
16444:3::West, to Ocean~[cl43], Atnos Sea, impassable
16444:0::
16444:0::Inner locations:
16444:3::City~[ev18], port city, 1 day
16444:0::
16444:0::Seen here:
16444:0/3:: * Crowd of men~[4126], number: 21, on guard
16444:0/3:: Zeldar~[4776], lord~4859, with four~workers, seven~soldiers, five~archers, two~riding horses, nine~peasants, one~crossbowman, accompanied~by:
16444:0/6:: * Rupert van Fang~[5830], unsworn, prisoner
16514:0::
16514:0::Recovery from recent pillaging will take one month.
16514:0::
16514:0::Routes leaving Mountain~[cm14]:
16514:3::East, to Forest~[cm15], 8~days
16514:3::South, to Forest~[cn14], 8~days
16514:3::West, to Mountain~[cm13], 10~days
16514:0::
16514:0::Inner locations:
16514:3::Peloria~[kr48], city, 1 day
16514:3::Stygian Deeps~[ic79], mine, depth~5, 28%~damaged, owner:
16514:0/9:: Baranfin~[4335], lord~3930, with four~workers
16514:0::
16514:0::Seen here:
16514:0/3:: Tode~[2835], lord~3930, with one~riding horse
16514:0/3:: * Angry mob~[4043], number: 20, on guard
16722:0::
16722:0::Routes leaving Forest~[co22]:
16722:3::North, to Forest~[cn22], 8~days
16722:3::East, to Plain~[co23], 7~days
16722:3::South, to Plain~[cp22], 7~days
16722:3::West, to Forest~[co21], 8~days
16722:0::
16722:0::Seen here:
16722:0/3:: * Peasant gang~[5061], number: 13, on guard
16817:0::
16817:0::Recovery from recent pillaging will take two months.
16817:0::
16817:0::Routes leaving Forest~[cp17]:
16817:3::North, to Ocean~[co17], Atnos Sea, 1~day
16817:3::East, to Forest~[cp18], 8~days
16817:3::South, to Forest~[cq17], 8~days
16817:3::West, to Ocean~[cp16], Atnos Sea, 1~day
16817:0::
16817:0::Seen here:
16817:0/3:: Pic~[5981], lord~4825, with 20~peasants, accompanied~by:
16817:0/6:: Sam~[5570], lord~5981
16817:0/3:: * Angry mob~[3353], number: 9, on guard
16819:0::
16819:0::Routes leaving Forest~[cp19]:
16819:3::North, to Forest~[co19], 8~days
16819:3::East, to Forest~[cp20], 8~days
16819:3::South, to Forest~[cq19], 8~days
16819:3::West, to Forest~[cp18], 8~days
16819:0::
16819:0::Seen here:
16819:0/3:: * Peasant mob~[4610], number: 18, on guard
16824:0::
16824:0::Routes leaving Mountain~[cp24]:
16824:3::North, to Plain~[co24], 7~days
16824:3::East, to Plain~[cp25], 7~days
16824:3::South, to Mountain~[cq24], 10~days
16824:3::West, to Plain~[cp23], 7~days
16824:0::
16824:0::Inner locations:
16824:3::City~[ev77], city, 1 day
16824:3::Tower Bloodstone~[kq27], tower, defense~20, owner:
16824:0/9:: Baron Blood~[5043], lord~778, with 46~soldiers, five~elite guard, 32~pikemen, 45~swordsmen
16824:0/9:: Hans Volker~[2924], lord~3080, with 19~crossbowmen, 12~elite archers
16824:0/9:: Diana~[4638], lord~5043, with ten~peasants
16824:0/9:: Clytemnestra~[3524], lord~2924, with ten~peasants
16824:3::EarthWound~[jn04], mine, depth~3, 16%~damaged, owner:
16824:0/9:: * Savages~[3425], number: 5
16824:0/9:: * Savages~[5998], number: 7
16824:0/9:: * Savages~[3188], number: 8
16824:0::
16824:0::Seen here:
16824:0/3:: Master Reinhold~[3080], lord~5043, "a dissipated greybeard"
16827:0::
16827:0::Routes leaving Forest~[cp27]:
16827:3::North, to Forest~[co27], 8~days
16827:3::East, to Forest~[cp28], 8~days
16827:3::South, to Plain~[cq27], 7~days
16827:3::West, to Plain~[cp26], 7~days
16827:0::
16827:0::Seen here:
16827:0/3:: * Tylor~[2905], unsworn
16916:0::
16916:0::Recovery from pillaging will take two months.
16916:0::
16916:0::Routes leaving Forest~[cq16]:
16916:3::North, to Ocean~[cp16], Atnos Sea, 1~day
16916:3::East, to Forest~[cq17], 8~days
16916:3::South, to Forest~[cr16], 8~days
16916:3::West, to Ocean~[cq15], Atnos Sea, 1~day
16916:0::
16916:0::Seen here:
16916:0/3:: * Angry crowd~[3435], number: 25, on guard
16916:0/3:: Det~[4825], lord~815, "A young noble", with 21~peasants
16922:0::
16922:0::Routes leaving Mountain~[cq22]:
16922:3::North, to Plain~[cp22], 7~days
16922:3::East, to Mountain~[cq23], 10~days
16922:3::South, to Mountain~[cr22], 10~days
16922:3::West, to Plain~[cq21], 7~days
16922:0::
16922:0::Inner locations:
16922:3::The Crystal Tower~[kp37], tower, defense~20, owner:
16922:0/9:: Argar-Master Trader~[2256], lord~4900, with ten~peasants, six~pikemen
16922:3::The White Tower~[ld70], tower, 10,001~gold to enter, defense~20, owner:
16922:0/9:: Oleg's Thespian~[5982], lord~2929
16922:3::New Mine~[gr24], mine, depth~3, 10%~damaged
16922:3::Oleg's City~[kh44], city, 500~gold to enter, 1 day
16922:0::
16922:0::Seen here:
16922:0/3:: Popeye - Assistant Digger~[2402], lord~4705, with 15~peasants, two~workers
16922:0/3:: Sampson - Explorer of Worlds~[4900], lord~3637, with 117~workers
16922:0/3:: * Angry mob~[3076], number: 7, on guard
16924:0::
16924:0::Routes leaving Mountain~[cq24]:
16924:3::North, to Mountain~[cp24], 10~days
16924:3::East, to Plain~[cq25], 7~days
16924:3::South, to Forest~[cr24], 8~days
16924:3::West, to Mountain~[cq23], 10~days
16924:0::
16924:0::Inner locations:
16924:3::Mountain View~[lj36], tower, defense~20, owner:
16924:0/9:: Eltanin~[2040], lord~5999
16924:3::Well, Well, Well~[jx75], collapsed mine, depth~9, 100%~damaged, owner:
16924:0/9:: * Savages~[5394], number: 6
16924:0::
16924:0::Seen here:
16924:0/3:: Greyyd~[4918], lord~3241, with 24~workers, 14~soldiers, six~peasants
16924:0/3:: Leonardo~[2845], lord~3299, with 13~workers
16927:0::
16927:0::Routes leaving Plain~[cq27]:
16927:3::North, to Forest~[cp27], 8~days
16927:3::East, to Forest~[cq28], 8~days
16927:3::South, to Forest~[cr27], 8~days
16927:3::West, to Plain~[cq26], 7~days
16927:0::
16927:0::Inner locations:
16927:3::Ring of stones~[fc61], ring of stones, 1 day, owner:
16927:0/9:: Oleg the Loudmouth~[2929], lord~816
16927:3::Crossroads Inn~[ii64], inn, 29%~damaged
16927:0::
16927:0::Seen here:
16927:0/3:: Knight of Swords~[3691], on guard, lord~3856, with six~peasants, ten~soldiers, 19~pikemen, accompanied~by:
16927:0/6:: Donoblas~[5480], lord~2638, with five~peasants, 13~soldiers, two~pikemen
16931:0::
16931:0::Routes leaving Ocean~[cq31]:
16931:3::North, to Ocean~[cp31], 4~days
16931:3::East, to Ocean~[cq32], 4~days
16931:3::South, to Ocean~[cr31], 4~days
16931:3::West, to Ocean~[cq30], 4~days
16931:0::
16931:0::Ships sighted:
16931:3/3::Selkie's Delight~[ft32], roundship, 28%~damaged, owner:
16931:0/9:: * Dreamer~[2676], unsworn
17016:0::
17016:0::Recovery from pillaging will take two months.
17016:0::
17016:0::Routes leaving Forest~[cr16]:
17016:3::North, to Forest~[cq16], 8~days
17016:3::East, to Forest~[cr17], 8~days
17016:3::South, to Ocean~[cs16], Atnos Sea, impassable
17016:3::West, to Ocean~[cr15], Atnos Sea, impassable
17016:0::
17016:0::Inner locations:
17016:3::City~[ew13], port city, 1 day
17016:0::
17016:0::Seen here:
17016:0/3:: * Angry crowd~[3123], number: 22, on guard
17022:0::
17022:0::Routes leaving Mountain~[cr22]:
17022:3::North, to Mountain~[cq22], 10~days
17022:3::South, to Plain~[cs22], 7~days
17022:3::West, to Plain~[cr21], 7~days
17022:0::
17022:0::Inner locations:
17022:3::Graveyard~[ew19], graveyard, 1 day
17022:3::Silverhorn~[ga35], tower, 3,000~gold to enter, defense~20, owner:
17022:0/9:: Elrond~[4279], lord~3299, with 17~crossbowmen
17022:3::Passage-to-Nowhere~[ku60], mine, depth~7, 4%~damaged
17022:0::
17022:0::Seen here:
17022:0/3:: * Group of men~[5308], number: 11, on guard
17022:0/3:: Bolgor the Woodsman~[2043], lord~5631, "carrying an Axe", with ten~peasants
17026:0::
17026:0::Recovery from pillaging will take one month.
17026:0::
17026:0::Routes leaving Plain~[cr26]:
17026:3::North, to Plain~[cq26], 7~days
17026:3::East, to Forest~[cr27], 8~days
17026:3::South, to Forest~[cs26], 8~days
17026:3::West, to Plain~[cr25], 7~days
17026:0::
17026:0::Seen here:
17026:0/3:: Inquisitor Hemlock~[5289], lord~5043, with ten~peasants
17026:0/3:: * Peasant gang~[5380], number: 11, on guard
17120:0::
17120:0::Recovery from pillaging will take one month.
17120:0::
17120:0::Routes leaving Forest~[cs20]:
17120:3::North, to Forest~[cr20], 8~days
17120:3::East, to Plain~[cs21], 7~days
17120:3::South, to Forest~[ct20], 8~days
17120:3::West, to Forest~[cs19], 8~days
17120:0::
17120:0::Seen here:
17120:0/3:: * Angry mob~[4480], number: 13, on guard
17326:0::
17326:0::Routes leaving Forest~[cu26]:
17326:3::North, to Forest~[ct26], 8~days
17326:3::East, to Ocean~[cu27], Atnos Sea, impassable
17326:3::South, to Ocean~[cv26], Atnos Sea, impassable
17326:3::West, to Forest~[cu25], 8~days
17326:0::
17326:0::Inner locations:
17326:3::City~[ew66], port city, safe haven, 1 day
17326:0::
17326:0::Seen here:
17326:0/3:: * Captain McCook~[2104], unsworn, with two~riding horses
17326:0/3:: * Peasant gang~[3334], number: 22, on guard
17326:0/3:: Candar~[3586], lord~4001, "a gnarly, bow-legged man with a seamans gait", with 20~peasants
17436:0::
17436:0::Recovery from recent pillaging will take one month.
17436:0::
17436:0::Routes leaving Forest~[cv36]:
17436:3::North, to Forest~[cu36], 8~days
17436:3::East, to Forest~[cv37], 8~days
17436:3::South, to Forest~[cw36], 8~days
17436:3::West, to Forest~[cv35], 8~days
17436:0::
17436:0::Seen here:
17436:0/3:: Thelgar Ironhand~[3907], lord~2147, "Grim Norse Lord", with ten~peasants
17436:0/3:: * Crowd of men~[4216], number: 15, on guard
17516:0::
17516:0::Recovery from recent pillaging will take one month.
17516:0::
17516:0::Routes leaving Plain~[cw16]:
17516:3::North, to Ocean~[cv16], Atnos Sea, 1~day
17516:3::East, to Mountain~[cw17], 10~days
17516:3::South, to Plain~[cx16], 7~days
17516:3::West, to Plain~[cw15], 7~days
17516:0::
17516:0::Seen here:
17516:0/3:: Eric the Explorer~[3624], lord~5755, with four~peasants
17516:0/3:: * Angry crowd~[3803]
17536:0::
17536:0::Recovery from recent pillaging will take one month.
17536:0::
17536:0::Routes leaving Forest~[cw36]:
17536:3::North, to Forest~[cv36], 8~days
17536:3::East, to Forest~[cw37], 8~days
17536:3::South, to Ocean~[cx36], South Sea, 1~day
17536:3::West, to Ocean~[cw35], South Sea, 1~day
17536:0::
17536:0::Seen here:
17536:0/3:: Cat, Cool as can be~[3002], lord~2147, "With a nose for trouble", with eight~sailors, two~peasants
17536:0/3:: Lister the digusting~[4797], lord~2719
17536:0/3:: Kryton Ice cube head~[2613], lord~3002
17536:0/3:: * Angry mob~[3901], number: 23
17536:0::
17536:0::Ships docked at port:
17536:3/3::Red Dwarf~[kx21], roundship, 5,000~gold to enter, owner:
17536:0/9:: Rimmer the Hologram~[3561], lord~3223
17720:0::
17720:0::Recovery from pillaging will take one month.
17720:0::
17720:0::Routes leaving Plain~[cy20]:
17720:3::North, to Ocean~[cx20], South Sea, 1~day
17720:3::East, to Plain~[cy21], 7~days
17720:3::South, to Forest~[cz20], 8~days
17720:3::West, to Plain~[cy19], 7~days
17720:0::
17720:0::Seen here:
17720:0/3:: * Peasant mob~[3074], number: 21, on guard
17722:0::
17722:0::Routes leaving Plain~[cy22]:
17722:3::North, to Ocean~[cx22], South Sea, 1~day
17722:3::East, to Plain~[cy23], 7~days
17722:3::South, to Forest~[cz22], 8~days
17722:3::West, to Plain~[cy21], 7~days
17722:0::
17722:0::Inner locations:
17722:3::Orthanc~[gh92], tower, 10,000~gold to enter, defense~20, 75%~damaged, owner:
17722:0/9:: * Savages~[2204], number: 4
17722:0/9:: * Savages~[5732], number: 7
17722:0/9:: * Savages~[5047], number: 7
17722:0/9:: Curumo~[4533], lord~681, prisoner
17726:0::
17726:0::Routes leaving Plain~[cy26]:
17726:3::North, to Ocean~[cx26], South Sea, 1~day
17726:3::East, to Mountain~[cy27], 10~days
17726:3::South, to Plain~[cz26], 7~days
17726:3::West, to Plain~[cy25], 7~days
17726:0::
17726:0::Ships docked at port:
17726:3/3::Blood on the Water~[jz79], roundship
17726:3/3::HMS Preserver~[kx72], roundship, 1,000~gold to enter, owner:
17726:0/9:: Lionel~[3313], lord~5327, with eight~sailors
17727:0::
17727:0::Routes leaving Mountain~[cy27]:
17727:3::North, to Ocean~[cx27], South Sea, impassable
17727:3::East, to Ocean~[cy28], South Sea, impassable
17727:3::South, to Plain~[cz27], 7~days
17727:3::West, to Plain~[cy26], 7~days
17727:0::
17727:0::Inner locations:
17727:3::Great Tower of Oz~[ja36], tower, 5,000~gold to enter, defense~20, owner:
17727:0/9:: Krator~[5327], lord~568
17727:3::A dark hole~[gz30], mine, depth~9, 30%~damaged
17727:3::The Red Tower~[jx32], tower, 5,000~gold to enter, defense~20, owner:
17727:0/9:: Loroth Iolarian~[3178], lord~3528
17727:3::The Blue Tower~[kq93], tower, 5,000~gold to enter, defense~20, owner:
17727:0/9:: Lady Katherine~[3528], lord~5327
17727:0::
17727:0::Seen here:
17727:0/3:: Hugh Von Klugstein~[4197], lord~5327, with three~warmounts, three~workers
17727:0/3:: Henry~[5619], lord~5327, with 18~workers
17727:0/3:: * Savages~[4562], number: 6, accompanied~by:
17727:0/6:: * Savages~[2602], number: 6
17819:0::
17819:0::Recovery from recent pillaging will take one month.
17819:0::
17819:0::Routes leaving Forest~[cz19]:
17819:3::North, to Plain~[cy19], 7~days
17819:3::East, to Forest~[cz20], 8~days
17819:3::South, to Mountain~[da19], 10~days
17819:3::West, to Forest~[cz18], 8~days
17819:0::
17819:0::Seen here:
17819:0/3:: * Angry mob~[4328], on guard, accompanied~by:
17819:0/6:: Budster Bud~[2468], lord~4288, prisoner
17825:0::
17825:0::Recovery from pillaging will take one month.
17825:0::
17825:0::Routes leaving Plain~[cz25]:
17825:3::North, to Plain~[cy25], 7~days
17825:3::East, to Plain~[cz26], 7~days
17825:3::South, to Forest~[da25], 8~days
17825:3::West, to Plain~[cz24], 7~days
17825:0::
17825:0::Seen here:
17825:0/3:: * Group of men~[4660], number: 23, on guard
18024:0::
18024:0::Recovery from pillaging will take one month.
18024:0::
18024:0::Routes leaving Forest~[db24]:
18024:3::North, to Forest~[da24], 8~days
18024:3::East, to Forest~[db25], 8~days
18024:3::South, to Mountain~[dc24], 10~days
18024:3::West, to Mountain~[db23], 10~days
18024:0::
18024:0::Seen here:
18024:0/3:: * Peasant mob~[4240], number: 9, on guard
18326:0::
18326:0::Routes leaving Mountain~[de26]:
18326:3::North, to Mountain~[dd26], 10~days
18326:3::East, to Mountain~[de27], 10~days
18326:3::South, to Mountain~[df26], 10~days
18426:0::
18426:0::Routes leaving Mountain~[df26]:
18426:3::North, to Mountain~[de26], 10~days
18426:3::East, to Forest~[df27], 8~days
18426:3::South, to Forest~[dg26], 8~days
18426:3::West, to Mountain~[df25], 10~days
18426:0::
18426:0::Inner locations:
18426:3::Tower Bloodstone~[le83], tower, defense~20, owner:
18426:0/9:: Frida~[4202], lord~5679
18426:0::
18426:0::Seen here:
18426:0/3:: * Savages~[5220], number: 6, accompanied~by:
18426:0/6:: * Savages~[5829], number: 8
18426:0/6:: * Savages~[5564], number: 7
18426:0/6:: * Savages~[2266], number: 9
18427:0::
18427:0::Routes leaving Forest~[df27]:
18427:3::North, to Mountain~[de27], 10~days
18427:3::East, to Forest~[df28], 8~days
18427:3::South, to Forest~[dg27], 8~days
18427:3::West, to Mountain~[df26], 10~days
18526:0::
18526:0::Routes leaving Forest~[dg26]:
18526:3::North, to Mountain~[df26], 10~days
18526:3::East, to Forest~[dg27], 8~days
18526:3::South, to Forest~[dh26], 8~days
18526:3::West, to Forest~[dg25], 8~days
22713:0::
22713:0::Routes leaving City~[ew13]:
22713:3::South, to Ocean~[cs16], Atnos Sea, 1~day
22713:3::West, to Ocean~[cr15], Atnos Sea, 1~day
22713:3::Out, to Forest~[cr16], 1~day
22713:0::
22713:0::Skills taught here:
22713:3::Shipcraft~[120], Combat~[121], Stealth~[122], Construction~[125], Alchemy~[126], Forestry~[128], Scrying~[162]
22713:0::
22713:0::Market report:
22713:3::
22713:3::trade who price qty item
22713:3::----- --- ----- --- ----
22713:3:: buy ew13 23 20 spice~[88]
22713:3:: buy ew13 4 15 woven baskets~[94]
22713:3:: buy ew13 2 100 fish~[87]
22713:3:: buy ew13 8 9 clay pots~[95]
22713:3:: sell ew13 5 25 fish oil~[97]
22713:0::
22713:0::Seen here:
22713:0/3:: Rif~[3582], lord~4825, with four~peasants, ten~workers
22713:0/3:: * Group of men~[5442], number: 17, on guard
22766:0::
22766:0::Routes leaving City~[ew66]:
22766:3::East, to Ocean~[cu27], Atnos Sea, 1~day
22766:3::South, to Ocean~[cv26], Atnos Sea, 1~day
22766:3::Out, to Forest~[cu26], 1~day
22766:0::
22766:0::Cities rumored to be nearby:
22766:3::City~[ev77], in Mountain~[cp24]
22766:3::City~[ew50], in Forest~[ct27]
22766:0::
22766:0::Skills taught here:
22766:3::Shipcraft~[120], Combat~[121], Stealth~[122], Beastmastery~[123], Persuasion~[124], Construction~[125], Alchemy~[126], Forestry~[128], Mining~[129], Magic~[160], Gatecraft~[163]
22766:0::
22766:0::Market report:
22766:3::
22766:3::trade who price qty item
22766:3::----- --- ----- --- ----
22766:3:: buy ew66 2 100 fish~[87]
22766:3:: buy ew66 7 9 clay pots~[95]
22766:3:: buy ew66 4 15 woven baskets~[94]
22766:3:: sell 2993 1 100 fish~[87]
22766:3:: sell 4375 2 86 fish~[87]
22766:3:: sell 2993 3 12 woven baskets~[94]
22766:3:: sell 2993 3 36 clay pots~[95]
22766:3:: sell 4375 4 70 woven baskets~[94]
22766:3:: sell 4375 7 14 clay pots~[95]
22766:3:: sell ew66 5 25 fish oil~[97]
22766:0::
22766:0::Seen here:
22766:0/3:: Rilian~[2993], lord~679, with five~peasants, four~workers, one~soldier, three~archers, three~pikemen, four~elite archers, two~riding horses, accompanied~by:
22766:0/6:: Vincent~[5379], lord~2993, with two~wild horses, three~riding horses, eight~warmounts
22766:0/6:: Carl~[2028], lord~2993, with ten~workers, 12~riding horses
22766:0/3:: Moe Bogomil~[5663], lord~4788, "looking for some smelly peasants to hire"
22766:0/3:: Larry Bogomil~[4419], lord~4788, "with a song in his heart and a stick in his hand"
22766:0/3:: O'thila~[2071], lord~594, "a man in his twenties, looking slightly perplexed"
22766:0/3:: * Peasant mob~[4015], number: 24, on guard
22766:0/3:: Beorn~[4375], lord~2947, with one~warmount
22766:0::
22766:0::Ships docked at port:
22766:3/3::Knife of Humakt~[jb82], galley, defense~10, 17%~damaged, owner:
22766:0/9:: Galthor Two-Blade~[4151], lord~3930
25032:0::
25032:0::Ocean routes:
25032:3::North, to Ocean~[cp31], 4~days
25032:3::East, to Ocean~[cq32], 4~days
25032:3::South, to Ocean~[cr31], 4~days
25032:3::West, to Ocean~[cq30], 4~days
25032:0::No current exits from Selkie's Delight~[ft32]
25032:0::
25032:0::Seen here:
25032:0/3:: * Dreamer~[2676], unsworn
26492:0::
26492:0::Routes leaving Orthanc~[gh92]:
26492:3::Out, to Plain~[cy22], 0~days
26492:0::
26492:0::Seen here:
26492:0/3:: * Savages~[2204], number: 4, accompanied~by:
26492:0/6:: * Savages~[5732], number: 7
26492:0/6:: * Savages~[5047], number: 7
26492:0/6:: Curumo~[4533], lord~681, prisoner
31764:0::
31764:0::Routes leaving Crossroads Inn~[ii64]:
31764:3::Out, to Plain~[cq27], 0~days
34804:0::
34804:0::Routes leaving EarthWound~[jn04]:
34804:3::Out, to Mountain~[cp24], 0~days
34804:0::
34804:0::Seen here:
34804:0/3:: * Savages~[3425], number: 5, accompanied~by:
34804:0/6:: * Savages~[5998], number: 7
34804:0/6:: * Savages~[3188], number: 8
35875:0::
35875:0::Routes leaving Well, Well, Well~[jx75]:
35875:3::Out, to Mountain~[cq24], 0~days
35875:0::
35875:0::Seen here:
35875:0/3:: * Savages~[5394], number: 6
5:0::
5:0::begin 100 # Independent player
5:0::
5:0::unit 4609 # Targer Wolf
5:0::
5:0::unit 2905 # Tylor
5:0::
5:0::unit 2676 # Dreamer
5:0::
5:0::unit 2104 # Captain McCook
5:0::
5:0::unit 5830 # Rupert van Fang
5:0::
5:0::unit 2204 # Savages
5:3::# > raze (still~executing)
5:0::
5:0::unit 5732 # Savages
5:0::
5:0::unit 5047 # Savages
5:0::
5:0::unit 3425 # Savages
5:0::
5:0::unit 5394 # Savages
5:0::
5:0::unit 4240 # Peasant mob
5:0::
5:0::unit 5061 # Peasant gang
5:0::
5:0::unit 4480 # Angry mob
5:0::
5:0::unit 3123 # Angry crowd
5:0::
5:0::unit 5998 # Savages
5:0::
5:0::unit 3188 # Savages
5:0::
5:0::unit 3334 # Peasant gang
5:0::
5:0::unit 4015 # Peasant mob
5:0::
5:0::unit 3076 # Angry mob
5:0::
5:0::unit 3435 # Angry crowd
5:0::
5:0::unit 5442 # Group of men
5:0::
5:0::unit 4126 # Crowd of men
5:0::
5:0::unit 5308 # Group of men
5:0::
5:0::unit 4610 # Peasant mob
5:0::
5:0::unit 3074 # Peasant mob
5:0::
5:0::unit 4660 # Group of men
5:0::
5:0::unit 5380 # Peasant gang
5:0::
5:0::unit 2345 # Angry mob
5:0::
5:0::unit 4562 # Savages
5:3::# > wait time 45 (still~executing)
5:3::attack ja36
5:0::
5:0::unit 5220 # Savages
5:3::# > wait time 39 (still~executing)
5:3::attack le83
5:0::
5:0::unit 2266 # Savages
5:0::
5:0::unit 5564 # Savages
5:0::
5:0::unit 5829 # Savages
5:0::
5:0::unit 2602 # Savages
5:0::
5:0::unit 4043 # Angry mob
5:0::
5:0::unit 4328 # Angry mob
5:0::
5:0::unit 3353 # Angry mob
5:0::
5:0::unit 3803 # Angry crowd
5:0::
5:0::unit 4216 # Crowd of men
5:0::
5:0::unit 3901 # Angry mob
5:0::
5:0::end
2104:3::
2104:3/16::Location: Forest~[cu26], in Lesser Atnos
2104:3/16::Sworn to: Independent player~[100]
2104:3::Loyalty: Unsworn-0
2104:3::Health: 100%
2104:3::Behind: 0 (front line in combat)
2104:3::Will pay fee: none
2104:3::
2104:3::Skills known:
2104:6/6:: 123 Beastmastery
2104:12/6::9517 Catch wild horses, apprentice
2104:12/6::9529 Train wild horse to riding horse, journeyman
2104:3::
2104:3::Inventory:
2104:3:: qty name weight
2104:3:: --- ---- ------
2104:3:: 200 gold~[1] 0
2104:3:: 2 riding horses~[52] 600 cap 300
2104:3:: ======
2104:3:: 600
2104:3::
2104:3/20::Carrying capacity: 0/400 walking (0%), 100/300 mounted (33%)
2104:3::
2204:3::
2204:3/16::Location: Orthanc~[gh92], in province Plain~[cy22], in West Camaris
2204:3/16::Sworn to: Independent player~[100]
2204:3::Loyalty: Npc-0
2204:3::Stacked over: Savages~[5732]
2204:3:: Savages~[5047]
2204:3::Health: 100%
2204:3::Behind: 0 (front line in combat)
2204:3::Will pay fee: none
2204:3::Prisoners: Curumo~[4533], health 51
2204:3::
2204:3::Skills known:
2204:6::none
2204:3::
2204:3::Inventory:
2204:3:: qty name weight
2204:3:: --- ---- ------
2204:3:: 220 gold~[1] 0
2204:3:: 3 savages~[32] 300 cap 300
2204:3:: 22 woven baskets~[94] 22
2204:3:: 29 clay pots~[95] 58
2204:3:: 1 drum~[98] 2
2204:3:: ======
2204:3:: 382
2204:3::
2204:3/20::Carrying capacity: 82/400 walking (20%), 482/0 mounted
2204:3::
2266:3::
2266:3/16::Location: Mountain~[df26], in West Camaris
2266:3/16::Sworn to: Independent player~[100]
2266:3::Loyalty: Summon-2
2266:3/16::Stacked under: Savages~[5220]
2266:3::Health: 100%
2266:3::Behind: 0 (front line in combat)
2266:3::Will pay fee: none
2266:3::
2266:3::Skills known:
2266:6::none
2266:3::
2266:3::Inventory:
2266:3:: qty name weight
2266:3:: --- ---- ------
2266:3:: 8 savages~[32] 800 cap 800
2266:3:: 1 drum~[98] 2
2266:3:: ======
2266:3:: 802
2266:3::
2266:3/20::Carrying capacity: 2/900 walking (0%), 902/0 mounted
2266:3::
2345:3::
2345:3/16::Location: Forest~[cg28], in Greater Atnos
2345:3/16::Sworn to: Independent player~[100]
2345:3::Loyalty: Npc-0
2345:3::Health: 100%
2345:3::Behind: 0 (front line in combat)
2345:3::Will pay fee: none
2345:3::
2345:3::Skills known:
2345:6::none
2345:3::
2345:3::Inventory:
2345:3:: qty name weight
2345:3:: --- ---- ------
2345:3:: 15 peasants~[10] 1,500 cap 1,500
2345:3:: ======
2345:3:: 1,500
2345:3::
2345:3/20::Carrying capacity: 0/1,600 walking (0%), 1,600/0 mounted
2345:3::
2602:3::
2602:3/16::Location: Mountain~[cy27], in West Camaris
2602:3/16::Sworn to: Independent player~[100]
2602:3::Loyalty: Summon-2
2602:3/16::Stacked under: Savages~[4562]
2602:3::Health: 100%
2602:3::Behind: 0 (front line in combat)
2602:3::Will pay fee: none
2602:3::
2602:3::Skills known:
2602:6::none
2602:3::
2602:3::Inventory:
2602:3:: qty name weight
2602:3:: --- ---- ------
2602:3:: 5 savages~[32] 500 cap 500
2602:3:: 1 drum~[98] 2
2602:3:: ======
2602:3:: 502
2602:3::
2602:3/20::Carrying capacity: 2/600 walking (0%), 602/0 mounted
2602:3::
2676:3::
2676:3/16::Location: Selkie's Delight~[ft32], in Ocean~[cq31], in Atnos Sea
2676:3/16::Sworn to: Independent player~[100]
2676:3::Loyalty: Unsworn-0
2676:3::Health: 100%
2676:3::Behind: 0 (front line in combat)
2676:3::Will pay fee: none
2676:3::
2676:3::Skills known:
2676:6/6:: 120 Shipcraft
2676:12/6::9502 Sailing, apprentice
2676:12/6::9503 Shipbuilding, apprentice
2676:3::
2676:3::Inventory:
2676:3:: qty name weight
2676:3:: --- ---- ------
2676:3:: 50 wood~[77] 1,500
2676:3:: 33 clay pots~[95] 66
2676:3:: ======
2676:3:: 1,566
2676:3::
2676:3/20::Carrying capacity: 1,566/100 walking (1566%), 1,666/0 mounted
2676:3::
2676:3::Pending trades:
2676:3::
2676:6::trade price qty item
2676:6::----- ----- --- ----
2676:6:: sell 2 20 clay pot~[95]
2676:6:: sell 2 26 woven basket~[94]
2676:3::
2905:3::
2905:3/16::Location: Forest~[cp27], in Lesser Atnos
2905:3/16::Sworn to: Independent player~[100]
2905:3::Loyalty: Unsworn-0
2905:3::Health: 100%
2905:3::Behind: 0 (front line in combat)
2905:3::Will pay fee: none
2905:3::
2905:3::Skills known:
2905:6/6:: 120 Shipcraft
2905:3::
2905:3::Tylor~[2905] has no possessions.
2905:3::
2905:3/20::Carrying capacity: 0/100 walking (0%), 100/0 mounted
2905:3::
2905:3::Pending trades:
2905:3::
2905:6::trade price qty item
2905:6::----- ----- --- ----
2905:6:: sell 30 7 clay pot~[95]
2905:6:: sell 2 50 tax cookie~[96]
2905:6:: sell 30 4 woven basket~[94]
2905:3::
3074:3::
3074:3/16::Location: Plain~[cy20], in West Camaris
3074:3/16::Sworn to: Independent player~[100]
3074:3::Loyalty: Npc-0
3074:3::Health: 100%
3074:3::Behind: 0 (front line in combat)
3074:3::Will pay fee: none
3074:3::
3074:3::Skills known:
3074:6::none
3074:3::
3074:3::Inventory:
3074:3:: qty name weight
3074:3:: --- ---- ------
3074:3:: 20 peasants~[10] 2,000 cap 2,000
3074:3:: ======
3074:3:: 2,000
3074:3::
3074:3/20::Carrying capacity: 0/2,100 walking (0%), 2,100/0 mounted
3074:3::
3076:3::
3076:3/16::Location: Mountain~[cq22], in Lesser Atnos
3076:3/16::Sworn to: Independent player~[100]
3076:3::Loyalty: Npc-0
3076:3::Health: 100%
3076:3::Behind: 0 (front line in combat)
3076:3::Will pay fee: none
3076:3::
3076:3::Skills known:
3076:6::none
3076:3::
3076:3::Inventory:
3076:3:: qty name weight
3076:3:: --- ---- ------
3076:3:: 6 peasants~[10] 600 cap 600
3076:3:: ======
3076:3:: 600
3076:3::
3076:3/20::Carrying capacity: 0/700 walking (0%), 700/0 mounted
3076:3::
3123:3::
3123:3/16::Location: Forest~[cr16], in Lesser Atnos
3123:3/16::Sworn to: Independent player~[100]
3123:3::Loyalty: Npc-0
3123:3::Health: 100%
3123:3::Behind: 0 (front line in combat)
3123:3::Will pay fee: none
3123:3::
3123:3::Skills known:
3123:6::none
3123:3::
3123:3::Inventory:
3123:3:: qty name weight
3123:3:: --- ---- ------
3123:3:: 21 peasants~[10] 2,100 cap 2,100
3123:3:: ======
3123:3:: 2,100
3123:3::
3123:3/20::Carrying capacity: 0/2,200 walking (0%), 2,200/0 mounted
3123:3::
3188:3::
3188:3/16::Location: EarthWound~[jn04], in province Mountain~[cp24], in Lesser Atnos
3188:3/16::Sworn to: Independent player~[100]
3188:3::Loyalty: Summon-1
3188:3/16::Stacked under: Savages~[3425]
3188:3::Health: 100%
3188:3::Behind: 0 (front line in combat)
3188:3::Will pay fee: none
3188:3::
3188:3::Skills known:
3188:6::none
3188:3::
3188:3::Inventory:
3188:3:: qty name weight
3188:3:: --- ---- ------
3188:3:: 7 savages~[32] 700 cap 700
3188:3:: 1 drum~[98] 2
3188:3:: ======
3188:3:: 702
3188:3::
3188:3/20::Carrying capacity: 2/800 walking (0%), 802/0 mounted
3188:3::
3334:3::
3334:3/16::Location: Forest~[cu26], in Lesser Atnos
3334:3/16::Sworn to: Independent player~[100]
3334:3::Loyalty: Npc-0
3334:3::Health: 100%
3334:3::Behind: 0 (front line in combat)
3334:3::Will pay fee: none
3334:3::
3334:3::Skills known:
3334:6::none
3334:3::
3334:3::Inventory:
3334:3:: qty name weight
3334:3:: --- ---- ------
3334:3:: 21 peasants~[10] 2,100 cap 2,100
3334:3:: ======
3334:3:: 2,100
3334:3::
3334:3/20::Carrying capacity: 0/2,200 walking (0%), 2,200/0 mounted
3334:3::
3353:3::
3353:3/16::Location: Forest~[cp17], in Lesser Atnos
3353:3/16::Sworn to: Independent player~[100]
3353:3::Loyalty: Npc-0
3353:3::Health: 100%
3353:3::Behind: 0 (front line in combat)
3353:3::Will pay fee: none
3353:3::
3353:3::Skills known:
3353:6::none
3353:3::
3353:3::Inventory:
3353:3:: qty name weight
3353:3:: --- ---- ------
3353:3:: 8 peasants~[10] 800 cap 800
3353:3:: ======
3353:3:: 800
3353:3::
3353:3/20::Carrying capacity: 0/900 walking (0%), 900/0 mounted
3353:3::
3425:3::
3425:3/16::Location: EarthWound~[jn04], in province Mountain~[cp24], in Lesser Atnos
3425:3/16::Sworn to: Independent player~[100]
3425:3::Loyalty: Npc-0
3425:3::Stacked over: Savages~[5998]
3425:3:: Savages~[3188]
3425:3::Health: 100%
3425:3::Behind: 0 (front line in combat)
3425:3::Will pay fee: none
3425:3::
3425:3::Skills known:
3425:6::none
3425:3::
3425:3::Inventory:
3425:3:: qty name weight
3425:3:: --- ---- ------
3425:3:: 4 savages~[32] 400 cap 400
3425:3:: 1 drum~[98] 2
3425:3:: ======
3425:3:: 402
3425:3::
3425:3/20::Carrying capacity: 2/500 walking (0%), 502/0 mounted
3425:3::
3435:3::
3435:3/16::Location: Forest~[cq16], in Lesser Atnos
3435:3/16::Sworn to: Independent player~[100]
3435:3::Loyalty: Npc-0
3435:3::Health: 100%
3435:3::Behind: 0 (front line in combat)
3435:3::Will pay fee: none
3435:3::
3435:3::Skills known:
3435:6::none
3435:3::
3435:3::Inventory:
3435:3:: qty name weight
3435:3:: --- ---- ------
3435:3:: 24 peasants~[10] 2,400 cap 2,400
3435:3:: ======
3435:3:: 2,400
3435:3::
3435:3/20::Carrying capacity: 0/2,500 walking (0%), 2,500/0 mounted
3435:3::
3803:3::
3803:3/16::Location: Plain~[cw16], in West Camaris
3803:3/16::Sworn to: Independent player~[100]
3803:3::Loyalty: Npc-0
3803:3::Health: 56% (getting worse)
3803:3::Behind: 0 (front line in combat)
3803:3::Will pay fee: none
3803:3::
3803:3::Skills known:
3803:6::none
3803:3::
3803:3::Angry crowd~[3803] has no possessions.
3803:3::
3803:3/20::Carrying capacity: 0/100 walking (0%), 100/0 mounted
3803:3::
3901:3::
3901:3/16::Location: Forest~[cw36], in Ossicus
3901:3/16::Sworn to: Independent player~[100]
3901:3::Loyalty: Npc-0
3901:3::Health: 100%
3901:3::Behind: 0 (front line in combat)
3901:3::Will pay fee: none
3901:3::
3901:3::Skills known:
3901:6::none
3901:3::
3901:3::Inventory:
3901:3:: qty name weight
3901:3:: --- ---- ------
3901:3:: 22 peasants~[10] 2,200 cap 2,200
3901:3:: ======
3901:3:: 2,200
3901:3::
3901:3/20::Carrying capacity: 0/2,300 walking (0%), 2,300/0 mounted
3901:3::
4015:3::
4015:3/16::Location: City~[ew66], in province Forest~[cu26], in Lesser Atnos
4015:3/16::Sworn to: Independent player~[100]
4015:3::Loyalty: Npc-0
4015:3::Health: 100%
4015:3::Behind: 0 (front line in combat)
4015:3::Will pay fee: none
4015:3::
4015:3::Skills known:
4015:6::none
4015:3::
4015:3::Inventory:
4015:3:: qty name weight
4015:3:: --- ---- ------
4015:3:: 23 peasants~[10] 2,300 cap 2,300
4015:3:: ======
4015:3:: 2,300
4015:3::
4015:3/20::Carrying capacity: 0/2,400 walking (0%), 2,400/0 mounted
4015:3::
4043:3::
4043:3/16::Location: Mountain~[cm14], in Greater Atnos
4043:3/16::Sworn to: Independent player~[100]
4043:3::Loyalty: Npc-0
4043:3::Health: 100%
4043:3::Behind: 0 (front line in combat)
4043:3::Will pay fee: none
4043:3::
4043:3::Skills known:
4043:6::none
4043:3::
4043:3::Inventory:
4043:3:: qty name weight
4043:3:: --- ---- ------
4043:3:: 19 peasants~[10] 1,900 cap 1,900
4043:3:: ======
4043:3:: 1,900
4043:3::
4043:3/20::Carrying capacity: 0/2,000 walking (0%), 2,000/0 mounted
4043:3::
4126:3::
4126:3/16::Location: Forest~[cl44], in Charrick Island
4126:3/16::Sworn to: Independent player~[100]
4126:3::Loyalty: Npc-0
4126:3::Health: 100%
4126:3::Behind: 0 (front line in combat)
4126:3::Will pay fee: none
4126:3::
4126:3::Skills known:
4126:6::none
4126:3::
4126:3::Inventory:
4126:3:: qty name weight
4126:3:: --- ---- ------
4126:3:: 20 peasants~[10] 2,000 cap 2,000
4126:3:: ======
4126:3:: 2,000
4126:3::
4126:3/20::Carrying capacity: 0/2,100 walking (0%), 2,100/0 mounted
4126:3::
4216:3::
4216:3/16::Location: Forest~[cv36], in Ossicus
4216:3/16::Sworn to: Independent player~[100]
4216:3::Loyalty: Npc-0
4216:3::Health: 100%
4216:3::Behind: 0 (front line in combat)
4216:3::Will pay fee: none
4216:3::
4216:3::Skills known:
4216:6::none
4216:3::
4216:3::Inventory:
4216:3:: qty name weight
4216:3:: --- ---- ------
4216:3:: 14 peasants~[10] 1,400 cap 1,400
4216:3:: ======
4216:3:: 1,400
4216:3::
4216:3/20::Carrying capacity: 0/1,500 walking (0%), 1,500/0 mounted
4216:3::
4240:3::
4240:3/16::Location: Forest~[db24], in West Camaris
4240:3/16::Sworn to: Independent player~[100]
4240:3::Loyalty: Npc-0
4240:3::Health: 100%
4240:3::Behind: 0 (front line in combat)
4240:3::Will pay fee: none
4240:3::
4240:3::Skills known:
4240:6::none
4240:3::
4240:3::Inventory:
4240:3:: qty name weight
4240:3:: --- ---- ------
4240:3:: 8 peasants~[10] 800 cap 800
4240:3:: ======
4240:3:: 800
4240:3::
4240:3/20::Carrying capacity: 0/900 walking (0%), 900/0 mounted
4240:3::
4328:3::
4328:3/16::Location: Forest~[cz19], in West Camaris
4328:3/16::Sworn to: Independent player~[100]
4328:3::Loyalty: Npc-0
4328:3::Health: 100%
4328:3::Behind: 0 (front line in combat)
4328:3::Will pay fee: none
4328:3::Prisoners: Budster Bud~[2468], health 75
4328:3::
4328:3::Skills known:
4328:6::none
4328:3::
4328:3::Inventory:
4328:3:: qty name weight
4328:3:: --- ---- ------
4328:3:: 850 gold~[1] 0
4328:3:: 16 wood~[77] 480
4328:3:: ======
4328:3:: 480
4328:3::
4328:3/20::Carrying capacity: 480/100 walking (480%), 580/0 mounted
4328:3::
4480:3::
4480:3/16::Location: Forest~[cs20], in Lesser Atnos
4480:3/16::Sworn to: Independent player~[100]
4480:3::Loyalty: Npc-0
4480:3::Health: 100%
4480:3::Behind: 0 (front line in combat)
4480:3::Will pay fee: none
4480:3::
4480:3::Skills known:
4480:6::none
4480:3::
4480:3::Inventory:
4480:3:: qty name weight
4480:3:: --- ---- ------
4480:3:: 12 peasants~[10] 1,200 cap 1,200
4480:3:: ======
4480:3:: 1,200
4480:3::
4480:3/20::Carrying capacity: 0/1,300 walking (0%), 1,300/0 mounted
4480:3::
4562:3::
4562:3/16::Location: Mountain~[cy27], in West Camaris
4562:3/16::Sworn to: Independent player~[100]
4562:3::Loyalty: Npc-0
4562:3::Stacked over: Savages~[2602]
4562:3::Health: 100%
4562:3::Behind: 0 (front line in combat)
4562:3::Will pay fee: none
4562:3::
4562:3::Skills known:
4562:6::none
4562:3::
4562:3::Inventory:
4562:3:: qty name weight
4562:3:: --- ---- ------
4562:3:: 5 savages~[32] 500 cap 500
4562:3:: 1 drum~[98] 2
4562:3:: ======
4562:3:: 502
4562:3::
4562:3/20::Carrying capacity: 2/600 walking (0%), 602/0 mounted
4562:3::
4609:3::
4609:3/16::Location: Forest~[ck44], in Charrick Island
4609:3/16::Sworn to: Independent player~[100]
4609:3::Loyalty: Unsworn-0
4609:3::Health: 100%
4609:3::Behind: 0 (front line in combat)
4609:3::Will pay fee: none
4609:3::
4609:3::Skills known:
4609:6/6:: 121 Combat
4609:12/6::9580 Swordplay, apprentice
4609:12/6::9581 Weaponsmithing, apprentice
4609:3::
4609:3::Inventory:
4609:3:: qty name weight
4609:3:: --- ---- ------
4609:3:: 2 gold~[1] 0
4609:3:: 5 soldiers~[12] 500 cap 500
4609:3:: 5 pikemen~[16] 500 cap 500
4609:3:: 5 crossbowmen~[21] 500 cap 500
4609:3:: 5 pikes~[75] 25
4609:3:: 5 crossbows~[85] 50
4609:3:: ======
4609:3:: 1,575
4609:3::
4609:3/20::Carrying capacity: 75/1,600 walking (4%), 1,675/0 mounted
4609:3::
4610:3::
4610:3/16::Location: Forest~[cp19], in Lesser Atnos
4610:3/16::Sworn to: Independent player~[100]
4610:3::Loyalty: Npc-0
4610:3::Health: 100%
4610:3::Behind: 0 (front line in combat)
4610:3::Will pay fee: none
4610:3::
4610:3::Skills known:
4610:6::none
4610:3::
4610:3::Inventory:
4610:3:: qty name weight
4610:3:: --- ---- ------
4610:3:: 17 peasants~[10] 1,700 cap 1,700
4610:3:: ======
4610:3:: 1,700
4610:3::
4610:3/20::Carrying capacity: 0/1,800 walking (0%), 1,800/0 mounted
4610:3::
4660:3::
4660:3/16::Location: Plain~[cz25], in West Camaris
4660:3/16::Sworn to: Independent player~[100]
4660:3::Loyalty: Npc-0
4660:3::Health: 100%
4660:3::Behind: 0 (front line in combat)
4660:3::Will pay fee: none
4660:3::
4660:3::Skills known:
4660:6::none
4660:3::
4660:3::Inventory:
4660:3:: qty name weight
4660:3:: --- ---- ------
4660:3:: 22 peasants~[10] 2,200 cap 2,200
4660:3:: ======
4660:3:: 2,200
4660:3::
4660:3/20::Carrying capacity: 0/2,300 walking (0%), 2,300/0 mounted
4660:3::
5047:3::
5047:3/16::Location: Orthanc~[gh92], in province Plain~[cy22], in West Camaris
5047:3/16::Sworn to: Independent player~[100]
5047:3::Loyalty: Summon-0
5047:3/16::Stacked under: Savages~[2204]
5047:3::Health: 100%
5047:3::Behind: 0 (front line in combat)
5047:3::Will pay fee: none
5047:3::
5047:3::Skills known:
5047:6::none
5047:3::
5047:3::Inventory:
5047:3:: qty name weight
5047:3:: --- ---- ------
5047:3:: 6 savages~[32] 600 cap 600
5047:3:: 1 drum~[98] 2
5047:3:: ======
5047:3:: 602
5047:3::
5047:3/20::Carrying capacity: 2/700 walking (0%), 702/0 mounted
5047:3::
5061:3::
5061:3/16::Location: Forest~[co22], in Lesser Atnos
5061:3/16::Sworn to: Independent player~[100]
5061:3::Loyalty: Npc-0
5061:3::Health: 100%
5061:3::Behind: 0 (front line in combat)
5061:3::Will pay fee: none
5061:3::
5061:3::Skills known:
5061:6::none
5061:3::
5061:3::Inventory:
5061:3:: qty name weight
5061:3:: --- ---- ------
5061:3:: 12 peasants~[10] 1,200 cap 1,200
5061:3:: ======
5061:3:: 1,200
5061:3::
5061:3/20::Carrying capacity: 0/1,300 walking (0%), 1,300/0 mounted
5061:3::
5220:3::
5220:3/16::Location: Mountain~[df26], in West Camaris
5220:3/16::Sworn to: Independent player~[100]
5220:3::Loyalty: Npc-0
5220:3::Stacked over: Savages~[5829]
5220:3:: Savages~[5564]
5220:3:: Savages~[2266]
5220:3::Health: 100%
5220:3::Behind: 0 (front line in combat)
5220:3::Will pay fee: none
5220:3::
5220:3::Skills known:
5220:6::none
5220:3::
5220:3::Inventory:
5220:3:: qty name weight
5220:3:: --- ---- ------
5220:3:: 5 savages~[32] 500 cap 500
5220:3:: 1 drum~[98] 2
5220:3:: ======
5220:3:: 502
5220:3::
5220:3/20::Carrying capacity: 2/600 walking (0%), 602/0 mounted
5220:3::
5308:3::
5308:3/16::Location: Mountain~[cr22], in Lesser Atnos
5308:3/16::Sworn to: Independent player~[100]
5308:3::Loyalty: Npc-0
5308:3::Health: 100%
5308:3::Behind: 0 (front line in combat)
5308:3::Will pay fee: none
5308:3::
5308:3::Skills known:
5308:6::none
5308:3::
5308:3::Inventory:
5308:3:: qty name weight
5308:3:: --- ---- ------
5308:3:: 10 peasants~[10] 1,000 cap 1,000
5308:3:: ======
5308:3:: 1,000
5308:3::
5308:3/20::Carrying capacity: 0/1,100 walking (0%), 1,100/0 mounted
5308:3::
5380:3::
5380:3/16::Location: Plain~[cr26], in Lesser Atnos
5380:3/16::Sworn to: Independent player~[100]
5380:3::Loyalty: Npc-0
5380:3::Health: 100%
5380:3::Behind: 0 (front line in combat)
5380:3::Will pay fee: none
5380:3::
5380:3::Skills known:
5380:6::none
5380:3::
5380:3::Inventory:
5380:3:: qty name weight
5380:3:: --- ---- ------
5380:3:: 10 peasants~[10] 1,000 cap 1,000
5380:3:: ======
5380:3:: 1,000
5380:3::
5380:3/20::Carrying capacity: 0/1,100 walking (0%), 1,100/0 mounted
5380:3::
5394:3::
5394:3/16::Location: Well, Well, Well~[jx75], in province Mountain~[cq24], in Lesser Atnos
5394:3/16::Sworn to: Independent player~[100]
5394:3::Loyalty: Npc-0
5394:3::Health: 100%
5394:3::Behind: 0 (front line in combat)
5394:3::Will pay fee: none
5394:3::
5394:3::Skills known:
5394:6::none
5394:3::
5394:3::Inventory:
5394:3:: qty name weight
5394:3:: --- ---- ------
5394:3:: 5 savages~[32] 500 cap 500
5394:3:: 1 drum~[98] 2
5394:3:: ======
5394:3:: 502
5394:3::
5394:3/20::Carrying capacity: 2/600 walking (0%), 602/0 mounted
5394:3::
5442:3::
5442:3/16::Location: City~[ew13], in province Forest~[cr16], in Lesser Atnos
5442:3/16::Sworn to: Independent player~[100]
5442:3::Loyalty: Npc-0
5442:3::Health: 100%
5442:3::Behind: 0 (front line in combat)
5442:3::Will pay fee: none
5442:3::
5442:3::Skills known:
5442:6::none
5442:3::
5442:3::Inventory:
5442:3:: qty name weight
5442:3:: --- ---- ------
5442:3:: 16 peasants~[10] 1,600 cap 1,600
5442:3:: ======
5442:3:: 1,600
5442:3::
5442:3/20::Carrying capacity: 0/1,700 walking (0%), 1,700/0 mounted
5442:3::
5564:3::
5564:3/16::Location: Mountain~[df26], in West Camaris
5564:3/16::Sworn to: Independent player~[100]
5564:3::Loyalty: Summon-2
5564:3/16::Stacked under: Savages~[5220]
5564:3::Health: 100%
5564:3::Behind: 0 (front line in combat)
5564:3::Will pay fee: none
5564:3::
5564:3::Skills known:
5564:6::none
5564:3::
5564:3::Inventory:
5564:3:: qty name weight
5564:3:: --- ---- ------
5564:3:: 6 savages~[32] 600 cap 600
5564:3:: 1 drum~[98] 2
5564:3:: ======
5564:3:: 602
5564:3::
5564:3/20::Carrying capacity: 2/700 walking (0%), 702/0 mounted
5564:3::
5732:3::
5732:3/16::Location: Orthanc~[gh92], in province Plain~[cy22], in West Camaris
5732:3/16::Sworn to: Independent player~[100]
5732:3::Loyalty: Summon-0
5732:3/16::Stacked under: Savages~[2204]
5732:3::Health: 100%
5732:3::Behind: 0 (front line in combat)
5732:3::Will pay fee: none
5732:3::
5732:3::Skills known:
5732:6::none
5732:3::
5732:3::Inventory:
5732:3:: qty name weight
5732:3:: --- ---- ------
5732:3:: 6 savages~[32] 600 cap 600
5732:3:: 1 drum~[98] 2
5732:3:: ======
5732:3:: 602
5732:3::
5732:3/20::Carrying capacity: 2/700 walking (0%), 702/0 mounted
5732:3::
5829:3::
5829:3/16::Location: Mountain~[df26], in West Camaris
5829:3/16::Sworn to: Independent player~[100]
5829:3::Loyalty: Summon-2
5829:3/16::Stacked under: Savages~[5220]
5829:3::Health: 100%
5829:3::Behind: 0 (front line in combat)
5829:3::Will pay fee: none
5829:3::
5829:3::Skills known:
5829:6::none
5829:3::
5829:3::Inventory:
5829:3:: qty name weight
5829:3:: --- ---- ------
5829:3:: 7 savages~[32] 700 cap 700
5829:3:: 1 drum~[98] 2
5829:3:: ======
5829:3:: 702
5829:3::
5829:3/20::Carrying capacity: 2/800 walking (0%), 802/0 mounted
5829:3::
5830:3::Rupert van Fang~[5830] is being held prisoner.
5830:3::
5998:3::
5998:3/16::Location: EarthWound~[jn04], in province Mountain~[cp24], in Lesser Atnos
5998:3/16::Sworn to: Independent player~[100]
5998:3::Loyalty: Summon-1
5998:3/16::Stacked under: Savages~[3425]
5998:3::Health: 100%
5998:3::Behind: 0 (front line in combat)
5998:3::Will pay fee: none
5998:3::
5998:3::Skills known:
5998:6::none
5998:3::
5998:3::Inventory:
5998:3:: qty name weight
5998:3:: --- ---- ------
5998:3:: 6 savages~[32] 600 cap 600
5998:3:: 1 drum~[98] 2
5998:3:: ======
5998:3:: 602
5998:3::
5998:3/20::Carrying capacity: 2/700 walking (0%), 702/0 mounted
5998:3::
0:0::From: olympia@rt.com (Olympia PBM)
0:0::Reply-To: orders@olympia.rt.com
0:0::Subject: Olympia turn 54 report
0:0::
0:0::Olympia turn 54 report for Independent player~[100].
0:0::Season "Harvest", month 6, in the year 7.
0:0::
0:0::Noble points: 15 (0 gained, 0 spent)
0:0::
0:0::unit loc undr lord loyal heal B CA gold peas work sail figh name
0:0::---- ---- ---- ---- ----- ---- - -- ---- ---- ---- ---- ---- ----
0:0::4609 ck44 100 u0 100 0 2 15 Targer Wolf
0:0::2905 cp27 100 u0 100 0 Tylor
0:0::2676 ft32 100 u0 100 0 Dreamer
0:0::2104 cu26 100 u0 100 0 200 Captain McCook
0:0::5830 ?? ?? 100 u0 54+ 0 Rupert van Fang
0:0::2204 gh92 100 s0 100 0 220 Savages
0:0::5732 gh92 2204 100 100 0 Savages
0:0::5047 gh92 2204 100 100 0 Savages
0:0::3425 jn04 100 s0 100 0 Savages
0:0::5394 jx75 100 s0 100 0 Savages
0:0::4240 db24 100 s0 100 0 8 Peasant mob
0:0::5061 co22 100 s0 100 0 12 Peasant gang
0:0::4480 cs20 100 s0 100 0 12 Angry mob
0:0::3123 cr16 100 s0 100 0 21 Angry crowd
0:0::5998 jn04 3425 100 100 0 Savages
0:0::3188 jn04 3425 100 100 0 Savages
0:0::3334 cu26 100 s0 100 0 21 Peasant gang
0:0::4015 ew66 100 s0 100 0 23 Peasant mob
0:0::3076 cq22 100 s0 100 0 6 Angry mob
0:0::3435 cq16 100 s0 100 0 24 Angry crowd
0:0::5442 ew13 100 s0 100 0 16 Group of men
0:0::4126 cl44 100 s0 100 0 20 Crowd of men
0:0::5308 cr22 100 s0 100 0 10 Group of men
0:0::4610 cp19 100 s0 100 0 17 Peasant mob
0:0::3074 cy20 100 s0 100 0 20 Peasant mob
0:0::4660 cz25 100 s0 100 0 22 Group of men
0:0::5380 cr26 100 s0 100 0 10 Peasant gang
0:0::2345 cg28 100 s0 100 0 15 Angry mob
0:0::4562 cy27 100 s0 100 0 Savages
0:0::5220 df26 100 s0 100 0 Savages
0:0::2266 df26 5220 100 100 0 Savages
0:0::5564 df26 5220 100 100 0 Savages
0:0::5829 df26 5220 100 100 0 Savages
0:0::2602 cy27 4562 100 100 0 Savages
0:0::4043 cm14 100 s0 100 0 19 Angry mob
0:0::4328 cz19 100 s0 100 0 850 Angry mob
0:0::3353 cp17 100 s0 100 0 8 Angry mob
0:0::3803 cw16 100 s0 56- 0 Angry crowd
0:0::4216 cv36 100 s0 100 0 14 Crowd of men
0:0::3901 cw36 100 s0 100 0 22 Angry mob
0:0:: ==== ==== ==== ==== ====
0:0:: 1272 320 15
0:0::
0:0::Location Stack
0:0::-------- -----
0:0::Greater Atnos
0:0:: Forest~[cg28] Angry mob~[2345]
0:0::Charrick Island
0:0:: Forest~[ck44] Targer Wolf~[4609]
0:0:: Forest~[cl44] Crowd of men~[4126]
0:0:: Mountain~[cm14] Angry mob~[4043]
0:0::Lesser Atnos
0:0:: Forest~[co22] Peasant gang~[5061]
0:0:: Forest~[cp17] Angry mob~[3353]
0:0:: Forest~[cp19] Peasant mob~[4610]
0:0:: Mountain~[cp24]
0:0:: EarthWound~[jn04] Savages~[3425]
0:0:: Savages~[5998]
0:0:: Savages~[3188]
0:0:: Forest~[cp27] Tylor~[2905]
0:0:: Forest~[cq16] Angry crowd~[3435]
0:0:: Mountain~[cq22] Angry mob~[3076]
0:0:: Mountain~[cq24]
0:0:: Well, Well, Well~[jx75] Savages~[5394]
0:0::Atnos Sea
0:0:: Ocean~[cq31]
0:0:: Selkie's Delight~[ft32] Dreamer~[2676]
0:0:: Forest~[cr16] Angry crowd~[3123]
0:0:: City~[ew13] Group of men~[5442]
0:0:: Mountain~[cr22] Group of men~[5308]
0:0:: Plain~[cr26] Peasant gang~[5380]
0:0:: Forest~[cs20] Angry mob~[4480]
0:0:: Forest~[cu26] Captain McCook~[2104]
0:0:: Peasant gang~[3334]
0:0:: City~[ew66] Peasant mob~[4015]
0:0::Ossicus
0:0:: Forest~[cv36] Crowd of men~[4216]
0:0::West Camaris
0:0:: Plain~[cw16] Angry crowd~[3803]
0:0:: Forest~[cw36] Angry mob~[3901]
0:0:: Plain~[cy20] Peasant mob~[3074]
0:0:: Plain~[cy22]
0:0:: Orthanc~[gh92] Savages~[2204]
0:0:: Savages~[5732]
0:0:: Savages~[5047]
0:0:: Curumo~[4533] *
0:0:: Mountain~[cy27] Savages~[4562]
0:0:: Savages~[2602]
0:0:: Forest~[cz19] Angry mob~[4328]
0:0:: Budster Bud~[2468] *
0:0:: Plain~[cz25] Group of men~[4660]
0:0:: Forest~[db24] Peasant mob~[4240]
0:0:: Mountain~[df26] Savages~[5220]
0:0:: Savages~[5829]
0:0:: Savages~[5564]
0:0:: Savages~[2266]
0:0::
0:0:: * -- unit belongs to another faction
0:0::
0:0::stack total wt walk wt walk cap ride wt ride cap
0:0::----- -------- ------- -------- ------- --------
0:0:: 4609 1,675 75 1,600 4% 1,675 0
0:0:: 2905 100 0 100 0% 100 0
0:0:: 2676 1,666 1,566 100 1566% 1,666 0
0:0:: 2104 700 0 400 0% 100 300 33%
0:0:: 5830 100 0 100 0% 100 0
0:0:: 2204 1,994 94 1,900 4% 1,994 0
0:0:: 5732 702 2 700 0% 702 0
0:0:: 5047 702 2 700 0% 702 0
0:0:: 3425 2,006 6 2,000 0% 2,006 0
0:0:: 5394 602 2 600 0% 602 0
0:0:: 4240 900 0 900 0% 900 0
0:0:: 5061 1,300 0 1,300 0% 1,300 0
0:0:: 4480 1,300 0 1,300 0% 1,300 0
0:0:: 3123 2,200 0 2,200 0% 2,200 0
0:0:: 5998 702 2 700 0% 702 0
0:0:: 3188 802 2 800 0% 802 0
0:0:: 3334 2,200 0 2,200 0% 2,200 0
0:0:: 4015 2,400 0 2,400 0% 2,400 0
0:0:: 3076 700 0 700 0% 700 0
0:0:: 3435 2,500 0 2,500 0% 2,500 0
0:0:: 5442 1,700 0 1,700 0% 1,700 0
0:0:: 4126 2,100 0 2,100 0% 2,100 0
0:0:: 5308 1,100 0 1,100 0% 1,100 0
0:0:: 4610 1,800 0 1,800 0% 1,800 0
0:0:: 3074 2,100 0 2,100 0% 2,100 0
0:0:: 4660 2,300 0 2,300 0% 2,300 0
0:0:: 5380 1,100 0 1,100 0% 1,100 0
0:0:: 2345 1,600 0 1,600 0% 1,600 0
0:0:: 4562 1,204 4 1,200 0% 1,204 0
0:0:: 5220 3,008 8 3,000 0% 3,008 0
0:0:: 2266 902 2 900 0% 902 0
0:0:: 5564 702 2 700 0% 702 0
0:0:: 5829 802 2 800 0% 802 0
0:0:: 2602 602 2 600 0% 602 0
0:0:: 4043 2,000 0 2,000 0% 2,000 0
0:0:: 4328 680 480 200 240% 680 0
0:0:: 3353 900 0 900 0% 900 0
0:0:: 3803 100 0 100 0% 100 0
0:0:: 4216 1,500 0 1,500 0% 1,500 0
0:0:: 3901 2,300 0 2,300 0% 2,300 0
0:0::
1:0::#include 0
1:0::
1:0::Targer Wolf~[4609]
1:0::------------------------------------------------------------------------
1:0::#include 4609
1:0::Tylor~[2905]
1:0::------------------------------------------------------------------------
1:0::#include 2905
1:0::Dreamer~[2676]
1:0::------------------------------------------------------------------------
1:0::#include 2676
1:0::Captain McCook~[2104]
1:0::------------------------------------------------------------------------
1:0::#include 2104
1:0::Rupert van Fang~[5830]
1:0::------------------------------------------------------------------------
1:0::#include 5830
1:0::Savages~[2204]
1:0::------------------------------------------------------------------------
1:0::#include 2204
1:0::Savages~[5732]
1:0::------------------------------------------------------------------------
1:0::#include 5732
1:0::Savages~[5047]
1:0::------------------------------------------------------------------------
1:0::#include 5047
1:0::Savages~[3425]
1:0::------------------------------------------------------------------------
1:0::#include 3425
1:0::Savages~[5394]
1:0::------------------------------------------------------------------------
1:0::#include 5394
1:0::Peasant mob~[4240]
1:0::------------------------------------------------------------------------
1:0::#include 4240
1:0::Peasant gang~[5061]
1:0::------------------------------------------------------------------------
1:0::#include 5061
1:0::Angry mob~[4480]
1:0::------------------------------------------------------------------------
1:0::#include 4480
1:0::Angry crowd~[3123]
1:0::------------------------------------------------------------------------
1:0::#include 3123
1:0::Savages~[5998]
1:0::------------------------------------------------------------------------
1:0::#include 5998
1:0::Savages~[3188]
1:0::------------------------------------------------------------------------
1:0::#include 3188
1:0::Peasant gang~[3334]
1:0::------------------------------------------------------------------------
1:0::#include 3334
1:0::Peasant mob~[4015]
1:0::------------------------------------------------------------------------
1:0::#include 4015
1:0::Angry mob~[3076]
1:0::------------------------------------------------------------------------
1:0::#include 3076
1:0::Angry crowd~[3435]
1:0::------------------------------------------------------------------------
1:0::#include 3435
1:0::Group of men~[5442]
1:0::------------------------------------------------------------------------
1:0::#include 5442
1:0::Crowd of men~[4126]
1:0::------------------------------------------------------------------------
1:0::#include 4126
1:0::Group of men~[5308]
1:0::------------------------------------------------------------------------
1:0::#include 5308
1:0::Peasant mob~[4610]
1:0::------------------------------------------------------------------------
1:0::#include 4610
1:0::Peasant mob~[3074]
1:0::------------------------------------------------------------------------
1:0::#include 3074
1:0::Group of men~[4660]
1:0::------------------------------------------------------------------------
1:0::#include 4660
1:0::Peasant gang~[5380]
1:0::------------------------------------------------------------------------
1:0::#include 5380
1:0::Angry mob~[2345]
1:0::------------------------------------------------------------------------
1:0::#include 2345
1:0::Savages~[4562]
1:0::------------------------------------------------------------------------
1:0::#include 4562
1:0::Savages~[5220]
1:0::------------------------------------------------------------------------
1:0::#include 5220
1:0::Savages~[2266]
1:0::------------------------------------------------------------------------
1:0::#include 2266
1:0::Savages~[5564]
1:0::------------------------------------------------------------------------
1:0::#include 5564
1:0::Savages~[5829]
1:0::------------------------------------------------------------------------
1:0::#include 5829
1:0::Savages~[2602]
1:0::------------------------------------------------------------------------
1:0::#include 2602
1:0::Angry mob~[4043]
1:0::------------------------------------------------------------------------
1:0::#include 4043
1:0::Angry mob~[4328]
1:0::------------------------------------------------------------------------
1:0::#include 4328
1:0::Angry mob~[3353]
1:0::------------------------------------------------------------------------
1:0::#include 3353
1:0::Angry crowd~[3803]
1:0::------------------------------------------------------------------------
1:0::#include 3803
1:0::Crowd of men~[4216]
1:0::------------------------------------------------------------------------
1:0::#include 4216
1:0::Angry mob~[3901]
1:0::------------------------------------------------------------------------
1:0::#include 3901
1:0::Savages~[2398]
1:0::------------------------------------------------------------------------
1:0::#include 2398
1:0::Savages~[3298]
1:0::------------------------------------------------------------------------
1:0::#include 3298
1:0::Savages~[3738]
1:0::------------------------------------------------------------------------
1:0::#include 3738
1:0::Forest~[cg28], forest, in Greater Atnos
1:0::------------------------------------------------------------------------
1:0::#include 15928
1:0::
1:0::Forest~[ck44], forest, in Charrick Island
1:0::------------------------------------------------------------------------
1:0::#include 16344
1:0::
1:0::Forest~[cl44], forest, in Charrick Island
1:0::------------------------------------------------------------------------
1:0::#include 16444
1:0::
1:0::Mountain~[cm14], mountain, in Greater Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16514
1:0::
1:0::Forest~[co22], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16722
1:0::
1:0::Forest~[cp17], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16817
1:0::
1:0::Forest~[cp19], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16819
1:0::
1:0::Mountain~[cp24], mountain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16824
1:0::
1:0::EarthWound~[jn04], mine, in province Mountain~[cp24], depth~3
1:0::------------------------------------------------------------------------
1:0::#include 34804
1:0::
1:0::Forest~[cp27], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16827
1:0::
1:0::Forest~[cq16], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16916
1:0::
1:0::Mountain~[cq22], mountain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16922
1:0::
1:0::Mountain~[cq24], mountain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16924
1:0::
1:0::Well, Well, Well~[jx75], collapsed mine, in province Mountain~[cq24], depth~9
1:0::------------------------------------------------------------------------
1:0::#include 35875
1:0::
1:0::Plain~[cq27], plain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 16927
1:0::
1:0::Crossroads Inn~[ii64], inn, in province Plain~[cq27]
1:0::------------------------------------------------------------------------
1:0::#include 31764
1:0::
1:0::Ocean~[cq31], ocean, in Atnos Sea
1:0::------------------------------------------------------------------------
1:0::#include 16931
1:0::
1:0::Selkie's Delight~[ft32], roundship, in Ocean~[cq31]
1:0::------------------------------------------------------------------------
1:0::#include 25032
1:0::
1:0::Forest~[cr16], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 17016
1:0::
1:0::City~[ew13], port city, in province Forest~[cr16]
1:0::------------------------------------------------------------------------
1:0::#include 22713
1:0::
1:0::Mountain~[cr22], mountain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 17022
1:0::
1:0::Plain~[cr26], plain, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 17026
1:0::
1:0::Forest~[cs20], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 17120
1:0::
1:0::Forest~[cu26], forest, in Lesser Atnos
1:0::------------------------------------------------------------------------
1:0::#include 17326
1:0::
1:0::City~[ew66], port city, in province Forest~[cu26], safe haven
1:0::------------------------------------------------------------------------
1:0::#include 22766
1:0::
1:0::Forest~[cv36], forest, in Ossicus
1:0::------------------------------------------------------------------------
1:0::#include 17436
1:0::
1:0::Plain~[cw16], plain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17516
1:0::
1:0::Forest~[cw36], forest, in Ossicus
1:0::------------------------------------------------------------------------
1:0::#include 17536
1:0::
1:0::Plain~[cy20], plain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17720
1:0::
1:0::Plain~[cy22], plain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17722
1:0::
1:0::Orthanc~[gh92], tower, in province Plain~[cy22], 10,000~gold to enter
1:0::------------------------------------------------------------------------
1:0::#include 26492
1:0::
1:0::Plain~[cy26], plain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17726
1:0::
1:0::Mountain~[cy27], mountain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17727
1:0::
1:0::Forest~[cz19], forest, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17819
1:0::
1:0::Plain~[cz25], plain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 17825
1:0::
1:0::Forest~[db24], forest, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 18024
1:0::
1:0::Mountain~[de26], mountain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 18326
1:0::
1:0::Mountain~[df26], mountain, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 18426
1:0::
1:0::Forest~[df27], forest, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 18427
1:0::
1:0::Forest~[dg26], forest, in West Camaris
1:0::------------------------------------------------------------------------
1:0::#include 18526
1:0::
1:0::Order template
1:0::------------------------------------------------------------------------
1:0::#include 5
1:0::
@EOF

chmod 644 100

exit 0


Main Index  |  Olympia  |  Arena  |  PBM FAQ  |  Links