summaryrefslogblamecommitdiff
path: root/npc/017-0/wizard.txt
blob: 966ca0a215228d31779fd8a5f45f0380dd1ca089 (plain) (tree)
1
2
3
4
5
6




                                    
                                      
























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