blob: e185e2c4795379438f017905d97633d9dbd9d6bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Evol scripts.
// Authors:
// Reid
// Description:
// Panels to give advice and some random information to players.
001-1,180,25,0 script #ArtisPanel1 NPC_NO_SPRITE,{
mesn "Narrator";
mes col(l("A weeds covered panel draws your attention, a message is visible concealed behind the leaves..."), 9);
next;
mesq l("Don't fall!");
next;
mesq l("You've reached the highest natural place of Artis, enjoy the view.");
close;
OnInit:
.distance = 2;
end;
}
|