blob: 03a168b7738b746f52ee2b60281600b2b2b82b3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Evol scripts.
// Author:
// Travolta
// Description:
// Treasure on Artis shore.
// Variables:
// none
001-1,67,134,0 script #ArtisShoreTreasure NPC_NO_SPRITE,{
playertalk
l("There is a red cross on the ground."),
l("Does it mean there is a hidden treasure?"),
l("If only I had a shovel...");
close;
OnInit:
.sex = G_OTHER;
.distance = 1;
end;
}
|