summaryrefslogtreecommitdiff
path: root/npc/024-1/tondar.txt
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-06-18 21:58:47 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-06-19 14:19:55 -0700
commitbae4b92e560c2694eaaf0e8b4d9e95e56204471b (patch)
tree4acc120f6a94cfbf9694bf344658493de5aaa67b /npc/024-1/tondar.txt
parent319f80526f8585ecadaec986e37c9bd326f4d363 (diff)
downloadserverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.gz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.bz2
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.xz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.zip
Move to a subdirectory
Diffstat (limited to 'npc/024-1/tondar.txt')
-rw-r--r--npc/024-1/tondar.txt61
1 files changed, 0 insertions, 61 deletions
diff --git a/npc/024-1/tondar.txt b/npc/024-1/tondar.txt
deleted file mode 100644
index 585806df..00000000
--- a/npc/024-1/tondar.txt
+++ /dev/null
@@ -1,61 +0,0 @@
-// A professor at Tulimshar's magic academy
-
-024-1.gat,83,51,0 script Tondar 168,{
- mes "[Tondar]";
- mes "\"We're not accepting any new students right now.\"";
- if (getskilllv(SKILL_MAGIC) > 0)
- goto L_may_ask;
-
- close;
-
-L_may_ask:
- next;
- menu
- "Can you teach me a spell?", L_askspell,
- "Do you have a magic library?", L_library,
- "Are you sure? I can pay well...", L_nopay,
- "That's unfortunate.", -,
- "Goodbye, then.", -;
-
- close;
-
-L_library:
- mes "[Tondar]";
- mes "\"Of course we do. It is only for graduate students, alumni, and faculty.\"";
- next;
- menu
- "Thank you, and goodbye.", L_end,
- "Nobody else is allowed inside?", -;
-
-
- mes "[Tondar]";
- mes "\"Well, it is possible to get a special permit from the headmaster. But he is currently on sabbatical.\"";
- close;
-
-
-L_askspell:
- mes "[Tondar]";
- mes "\"We only teach spells to students.\"";
- next;
-
- menu
- "Oh, come on... just one little spell!", L_nopay,
- "Pretty please?", L_spell,
- "I can pay you, too...", L_nopay;
-
-
-L_spell:
- mes "[Tondar]";
- mes "\"Well, all right; this one can't do much harm. Press your hands together and say `" + getspellinvocation("ask-magic-exp") + "'.\"";
- mes "\"This will release a steady flow of magic within you. Focus and try to control it; it is a good meditative practice.\"";
- close;
-
-
-L_nopay:
- mes "[Tondar]";
- mes "The wizard frowns angrily.";
- mes "\"Do not tempt me to teach you a different kind of lesson, young one! Begone!\"";
-
-L_end:
- close;
-}