blob: c83db2570b36e3c8435f3f989a0dd3e95949a1aa (
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:
setnpcdistance 2;
end;
}
|