diff options
Diffstat (limited to 'npc/quests/munak.txt')
-rw-r--r-- | npc/quests/munak.txt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/npc/quests/munak.txt b/npc/quests/munak.txt new file mode 100644 index 000000000..92a26da0b --- /dev/null +++ b/npc/quests/munak.txt @@ -0,0 +1,54 @@ +izlude_in.gat,115,76,5 script Evan 47,{
+mes "[Evan]";
+mes " ";
+mes "*sighs*";
+next;
+mes "[Evan]";
+mes "Oh? Whats the matter? ...Well, I have finally managed to encase the soul of a pretty girl ...";
+next;
+mes "[Evan]";
+mes "...so why am I sad?";
+mes " ";
+mes "It's because I don't even know how she looks like...say, if you can find me and 'Old Portrait' of her, I'll give you her lover's lost letter!";
+next;
+mes "[Evan]";
+mes "Whaddaya say? ..pal?";
+
+ menu "What do I need again?",ExItems,"Here! I got what you need!",ExCreate,"Sorry, I can't help you.",ExEnd;
+
+ ExItems:
+ mes "[Evan]";
+ mes "A picture of her lovely face...";
+ mes " ";
+ mes "An 'Old Portrait' preferrably...";
+ close;
+
+ ExCreate:
+ mes "[Evan]";
+ mes "Really!! You'll help me!";
+ next;
+ if(countitem(7014)<1) goto NoItem;
+ goto ExGive;
+
+ NoItem:
+ mes "[Evan]";
+ mes "Waahhhh, stop playing with my feelings!";
+ mes " ";
+ mes "Go away!";
+ close;
+ + ExGive:
+ mes "[Evan]";
+ mes "YES! I am forever in your debt!";
+ delitem 7014,1;
+ getitem 636,1;
+ mes " ";
+ mes "Here is lover's lost letter as promised! Again - Thank you!";
+ close;
+
+ ExEnd:
+ mes "[Evan]"; + mes "*sighs*";
+ close;
+close; +}
|