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
|
// TMW2 Scripts.
// Author:
// Jesusalva
// Description:
// Magic School controlled warps
027-1,120,131,0 script #0271W01 NPC_HIDDEN,0,0,{
end;
OnTouch:
if (ACADEMIC_RANK || is_sponsor())
warp "027-5", 28, 23;
end;
}
027-1,82,118,0 script #0271W02 NPC_HIDDEN,0,0,{
end;
OnTouch:
if (ACADEMIC_RANK || is_sponsor())
warp "027-7", 60, 48;
end;
}
027-1,76,118,0 script #0271W03 NPC_HIDDEN,1,0,{
end;
OnTouch:
if (ACADEMIC_RANK || is_sponsor())
warp "027-7", 41, 48;
end;
}
027-1,72,118,0 script #0271W04 NPC_HIDDEN,0,0,{
end;
OnTouch:
if (ACADEMIC_RANK || is_sponsor())
warp "027-7", 24, 48;
end;
}
|