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