blob: 71c458d89f280c4b91765be107baddd60e61900e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Access to Eternal Swamps
014-2,41,56,0 script Guard Jennifer NPC_GUARD2,{
mesn;
mesq l("Halt! Beyond this gate, is the Great River and the Eternal Swamps.");
next;
mesn;
mesq l("Was not it only flooded constantly, the graveyard is not too far. If you stray away from the path, you'll get lost.");
next;
mesn;
mesq l("Various people already went missing, including GMs. This is why if you plan to cross, @@.", b(l("You won't be allowed to walk sideways, except to avoid a monster or two.")));
mesc l("If you try to walk west or east too much, you'll hit an \"invisible wall\" to prevent you from getting lost.");
close;
OnInit:
.sex = G_OTHER;
.distance = 5;
end;
}
|