blob: ec7f23ddd3286bad3a106a2851ccebdbdfd6291d (
plain) (
blame)
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
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Wizard at Magic Academy Entrance
// TODO: Training for Academy Students
017-0,245,223,0 script Red Wizard NPC_RED_WIZARD_F,{
mesn;
mesq l("Hello. I am the instructor assigned to the magic range training field.");
if (!MAGIC_LVL)
close;
// TODO: At some point mid-act2, LoF should show up
// Maybe mkbot.py causes shakes on everyone and announce LoF sudden appearance
if ($GAME_STORYLINE < 2 && !is_sponsor()) {
mesc l("However, the Monster King has been seen with huge armies nearby, so no one may go there with the High Council approval.");
close;
}
next;
mesn;
mesq l("Do you wish to return to the Academy?");
next;
select
l("Not yet."),
l("Yes please.");
mes "";
closeclientdialog;
if (@menu == 2)
warp "027-1", 46, 91;
close;
OnInit:
.distance = 4;
.sex = G_FEMALE;
end;
}
|