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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// TMW2 Script
// Author:
// Jesusalva
006-6,53,36,0 script Sign#0066WR NPC_SWORDS_SIGN,{
mesc l("In a blood bath, survival is the epitaph.");
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
006-6,46,34,0 script Sign#0066CR NPC_SWORDS_SIGN,{
mesc l("*this sign is too blurred to read*");
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#0067W NPC_HIDDEN,0,0,{
end;
OnTouch:
if (!$@ICICLE_CHALLENGE || is_admin())
warp "006-7", 44, 49;
else
dispbottom l("Your strength is not enough to power on this portal.");
end;
}
// Effective warps
006-6,54,35,0 script Magic Barrier#0067E NPC_HIDDEN,0,0,{
end;
OnTouch:
if (!$@SURVIVAL_CANDOR || is_admin())
warp "006-9", 37, 22;
else
dispbottom l("Your strength is not enough to power on this portal.");
end;
}
// Effective warps
006-6,47,33,0 script Magic Barrier#0067C NPC_HIDDEN,0,0,{
end;
OnTouch:
if (!$@CAPTURE_FLAG || is_admin())
warp "006-8", 44, 67;
else
dispbottom l("Your strength is not enough to power on this portal.");
end;
}
|