diff options
Diffstat (limited to 'npc/027-1')
-rw-r--r-- | npc/027-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/027-1/wizard.txt | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/npc/027-1/_import.txt b/npc/027-1/_import.txt index 70475910d..c9802865e 100644 --- a/npc/027-1/_import.txt +++ b/npc/027-1/_import.txt @@ -10,3 +10,4 @@ "npc/027-1/statue.txt", "npc/027-1/students.txt", "npc/027-1/students2.txt", +"npc/027-1/wizard.txt", diff --git a/npc/027-1/wizard.txt b/npc/027-1/wizard.txt new file mode 100644 index 000000000..dae56a4d6 --- /dev/null +++ b/npc/027-1/wizard.txt @@ -0,0 +1,33 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// Wizard at Magic Academy Entrance + +027-0,44,91,0 script Purple Wizard NPC_PURPLE_WIZARD_F,{ + mesn; + mesq l("Hello. I was assigned to guard the ranged training grounds of the mystic forest."); + next; + mesn; + mesq l("It is a dangerous area, so we only allow students enrolled at the academy to participate."); + if (!ACADEMIC_RANK && !is_sponsor()) + close; + next; + mesn; + mesq l("Do you want to go there? The Red Wizard may be able to offer you training."); + next; + select + l("Not yet."), + l("Yes please."); + mes ""; + closeclientdialog; + if (@menu == 2) + warp "017-0", 249, 228; + close; + +OnInit: + .distance = 3; + .sex = G_FEMALE; + end; +} + |