summaryrefslogtreecommitdiff
path: root/npc/017-6/sheila.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/017-6/sheila.txt')
-rw-r--r--npc/017-6/sheila.txt46
1 files changed, 46 insertions, 0 deletions
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;
+}