diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-07 23:13:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-07 23:13:26 -0300 |
commit | 72cd7f1d9340db3dd52b2b52c4a69e40d6ef9f04 (patch) | |
tree | 224ae507466bb776fe1cf0d3acc6dc8769fa22b0 /npc/017-0/wizard.txt | |
parent | cbacea393049774c1ec1002881f8cdc86ed11b63 (diff) | |
download | serverdata-72cd7f1d9340db3dd52b2b52c4a69e40d6ef9f04.tar.gz serverdata-72cd7f1d9340db3dd52b2b52c4a69e40d6ef9f04.tar.bz2 serverdata-72cd7f1d9340db3dd52b2b52c4a69e40d6ef9f04.tar.xz serverdata-72cd7f1d9340db3dd52b2b52c4a69e40d6ef9f04.zip |
Add the Red Wizard, responsible for the ranged magic training.
Diffstat (limited to 'npc/017-0/wizard.txt')
-rw-r--r-- | npc/017-0/wizard.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/017-0/wizard.txt b/npc/017-0/wizard.txt new file mode 100644 index 000000000..d2d4f6dc3 --- /dev/null +++ b/npc/017-0/wizard.txt @@ -0,0 +1,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; +} + |