1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Evol scripts.
// Authors:
// Micksha
// Description:
// Sign pillars in Hurnscald.
008-1,142,105,0 script Sign#008-1-central NPC_NO_SPRITE,{
npctalkonce l("Right: Hurnscald | Down: Dimond's Cove | Left: West Woodland | Up: Nivalis (under construction)");
close;
OnInit:
.distance = 2;
.sex = G_OTHER;
end;
}
008-1,126,160,0 script Sign#008-1-south NPC_NO_SPRITE,{
npctalkonce l("Down: Dimond's Cove | Left: Swamp");
close;
OnInit:
.distance = 2;
.sex = G_OTHER;
end;
}
008-1,246,177,0 script Sign#008-1-southeast NPC_NO_SPRITE,{
npctalkonce l("Left: Dimond's Cove | Up: Hurnscald | Right: Forsaken Inn");
close;
OnInit:
.distance = 2;
.sex = G_OTHER;
end;
}
008-1,251,104,0 script Sign#008-1-hurns NPC_NO_SPRITE,{
npctalkonce l("Left: West Woodland | Up: North Mine | Right: Harbor | Down: other directions");
close;
OnInit:
.distance = 2;
.sex = G_OTHER;
end;
}
008-1,247,105,0 script Sign#008-1-4144 NPC_NO_SPRITE,{
npctalkonce l("This place is dedicated to 4144, the alltime Hero.");
close;
OnInit:
.distance = 1;
.sex = G_OTHER;
end;
}
|