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
|
// TMW2 Script
// Author:
// Jesusalva
006-6,53,36,0 script Sign#0066WR NPC_SWORDS_SIGN,{
mesc l("West Room closed for repairs");
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
006-6,46,34,0 script Sign#0066CR NPC_SWORDS_SIGN,{
mesc l("Central Room closed for repairs");
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
006-6,39,36,0 script Sign#0066ER NPC_SWORDS_SIGN,{
mesc l("With Magic and Blades, The Icicle shall break.");
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
// Effective warps
006-6,40,35,0 script Magic Barrier#0067 NPC_HIDDEN,0,0,{
end;
OnTouch:
if (BaseLevel > 50)
warp "006-7", 44, 49;
else
dispbottom l("Your strength is not enough to power on this portal.");
end;
}
|