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
72
73
74
75
76
77
78
79
80
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Protect LoF
// Handle Guard's logic
function script LofGuard {
mesn;
mesq l("I am stationed here to protect Land Of Fire from monsters.");
next;
mesn;
mesq l("I mean, there even an Monster King? What sort of world is this?!");
close;
return;
}
017-1,79,43,0 script Guard#lof-1 NPC_GUARD2,{
LofGuard();
end;
OnInit:
.sex = G_FEMALE;
.distance = 5;
end;
}
017-1,220,44,0 script Guard#lof-2 NPC_GUARD1,{
LofGuard();
end;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
017-1,193,69,0 script Guard#lof-3 NPC_GUARD2,{
LofGuard();
end;
OnInit:
.sex = G_FEMALE;
.distance = 5;
end;
}
017-1,69,108,0 script Guard#lof-4 NPC_GUARD1,{
LofGuard();
end;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
017-1,90,149,0 script Guard#lof-5 NPC_GUARD1,{
LofGuard();
end;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
017-1,85,223,0 script Guard#lof-6 NPC_GUARD2,{
LofGuard();
end;
OnInit:
.sex = G_FEMALE;
.distance = 5;
end;
}
|