summaryrefslogtreecommitdiff
path: root/npc/017-0/wizard.txt
blob: d2d4f6dc3e0a824d7a72a9c14fee90efe1446094 (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
// TMW2 Script
// Author:
//  Jesusalva
// Description:
//  Wizard at Magic Academy Entrance

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;
    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;
}