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
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Miscellaneous utilities for the magic council
003-0-2,28,42,0 script Lloyd NPC_LLOYD,{
Banker(.name$, "Magic Guild", 1000000);
close;
OnInit:
.sex = G_MALE;
.distance = 4;
end;
}
// 003-0-3 witness list
// #003-0-3_34_37 (Public)
// #003-0-3_34_23 (Private)
003-0-3,34,32,0 script Sagratha#Witness NPC_SAGRATHA,{
end;
OnInit:
.sex = G_FEMALE; .distance = 1; disablenpc .name$;
end;
}
003-0-3,35,32,0 script Hasan#Witness NPC_ELVEN_MAN_RED,{
end;
OnInit:
.sex = G_FEMALE; .distance = 1; disablenpc .name$;
end;
}
003-0-3,34,32,0 script Elli#Witness NPC_ELLI,{
end;
OnInit:
.sex = G_FEMALE; .distance = 1; disablenpc .name$;
end;
}
003-0-3,36,34,0 script A Mirror Lake NPC_MANATREE,0,0,{
OnTouch:
if (!getvaultid()) { dispbottom l("WTF is this devilry?! Just... How?!"); end; }
mesc l("Do you want to move the ##BThe Crossroads##b?"), 1;
if (askyesno() == ASK_NO) close;
closeclientdialog;
MirrorLakeSendTo(MLP_CR, 0);
end;
OnInit:
.sex = G_OTHER; .distance = 2; disablenpc .name$;
end;
}
|