diff options
author | Fate <fate-tmw@googlemail.com> | 2009-01-09 16:01:13 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-01-09 16:01:13 -0700 |
commit | 072189e7036fa29d9849b992ce2f4a55c63cc066 (patch) | |
tree | b7cc451f90cbdc85694783d4a9e28d9aeb9fc49d /npc/009-2_Hurnscald/misc.txt | |
parent | b2ec357e68a1b2e692f1c1081c4cc4f11682576a (diff) | |
download | serverdata-072189e7036fa29d9849b992ce2f4a55c63cc066.tar.gz serverdata-072189e7036fa29d9849b992ce2f4a55c63cc066.tar.bz2 serverdata-072189e7036fa29d9849b992ce2f4a55c63cc066.tar.xz serverdata-072189e7036fa29d9849b992ce2f4a55c63cc066.zip |
Finished first pass of magic quest scripting
Diffstat (limited to 'npc/009-2_Hurnscald/misc.txt')
-rw-r--r-- | npc/009-2_Hurnscald/misc.txt | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/npc/009-2_Hurnscald/misc.txt b/npc/009-2_Hurnscald/misc.txt index 56d02bf9..f3bbe545 100644 --- a/npc/009-2_Hurnscald/misc.txt +++ b/npc/009-2_Hurnscald/misc.txt @@ -9,3 +9,52 @@ close; // In case you don't get the joke - it's a parody on Illutia. } + +//Bookshelf +009-2.gat,109,44,0 script #Book 127, { + if (getskilllv(SKILL_MAGIC)) + goto L_magic; + mes "[Bookshelf]"; + mes "This bookshelf seems to have a selection of diaries and manuscripts, though you can't make out anything that strikes you as being particularly interesting."; + close; + +L_magic: + mes "[Bookshelf]"; + mes "Browsing through the books, you come across a manuscript entitled 'Notes of Potaffe, On Transmutation'."; + next; + + if (getskilllv(SKILL_MAGIC_TRANSMUTE) < 2) + goto L_magic_boring; + + mes "[Bookshelf]"; + mes "Leafing through the manuscript, you find that you can read little of the tiny handwriting, and understand only a fraction of what is said."; + next; + + mes "[Bookshelf]"; + mes "After a while, you stumble across a section that appears to be in more careful handwriting. The author notes that he (or she?) is describing a completely new transmutation there."; + next; + + mes "[Bookshelf]"; + mes "Excitedly, you turn the page-- only to find that it is stuck to the next, and won't get unstuck!"; + next; + + mes "[Bookshelf]"; + mes "The page after that is more scribbly again, with many crossed-out words and sections, and side remarks such as 'It almost worked' or 'Worked fine yesterday.'"; + next; + + mes "[Bookshelf]"; + mes "The last word on that page is '" + getspellinvocation("make-iron-powder") + "', underlined twice, with a comment saying 'finally got it right'."; + next; + + mes "[Bookshelf]"; + mes "Unfortunately, you can't make out from the text what the transmutation is for or whether it requires any material components..."; + next; + + mes "[Bookshelf]"; + mes "You can't make out anything else of value, so you place the manuscript back in the bookshelf."; + next; + +L_magic_boring: + mes "[Bookshelf]"; + mes "Leafing through the manuscript, you find that you understand too little of what is said there to make any sense of it."; +} |