From 7fc5c0df16c91ab7b8ee5c785445bc9ee118247d Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 20 Jul 2018 15:25:37 -0300 Subject: Sheila the Clockmaker (currently makes Time Flasks and mention The Doctor) --- npc/017-6/sheila.txt | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 npc/017-6/sheila.txt (limited to 'npc/017-6/sheila.txt') diff --git a/npc/017-6/sheila.txt b/npc/017-6/sheila.txt new file mode 100644 index 000000000..70118312b --- /dev/null +++ b/npc/017-6/sheila.txt @@ -0,0 +1,46 @@ +// TMW2/LoF scripts. +// Authors: +// Jesusalva +// Description: +// Makes the Time Potion Of Ozthokk + +017-6,27,48,0 script Sheila the Clockmaker NPC_SHEILA,{ + mesn; + mesq l("Ah, hello... is it @@? Nice to meet you!", strcharinfo(0)); + next; + mesn; + mesq l("I am @@, student from the ancient secrets of the Mage of Time, Ozthokk.", .name$); + next; + mesn; + mesq l("My greatest realization thus far, besides some time rewinding clocks, is the @@!", getitemlink(TimeFlask)); + next; + mesn; + mesq l("I'm not sure what it needs to move on time, but I managed to make it move in space, back to this village, in no time!"); + mesq l("Well, maybe it takes a few hours or days of your life, but who cares! It is instant teleport!"); + next; + mesn; + mesq l("If you bring me a @@ and 1,000 GP I can make one for you!", getitemlink(DragonScales)); + if (!countitem(DragonScales) || Zeny < 1000) + close; + select + l("Nice, but no, thanks."), + l("Pretty cool! I am interested!"); + mes ""; + if (@menu == 1) + close; + inventoryplace TimeFlask, 1; + delitem DragonScales, 1; + Zeny=Zeny-1000; + getitem TimeFlask, 1; + mesn; + mesq l("Neat, neat! Thanks! Here you go, this amazing bottle! It is life-bond, so having multiple won't reduce the time you need to wait..."); + next; + mesn; + mesq l("Do not open. Do not attempt to eat. Be careful with it, to don't cause any time paradoxes. I also heard a NPC may be interested on that, by the way!"); + close; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; +} -- cgit v1.2.3-60-g2f50