summaryrefslogtreecommitdiff
path: root/world/map/npc/easter/2012/easterbunny.txt
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2012-03-17 16:55:17 +0100
committerJessica Tölke <jtoelke@mail.upb.de>2012-03-23 16:08:04 +0100
commit4d6ed2e31624362422bcfbc6a7084f81cee0cf98 (patch)
tree559657031461abbee1980ad4c0bec7f136b10984 /world/map/npc/easter/2012/easterbunny.txt
parent3c5c9a539f95d71bd8c59580304e2949f13f8572 (diff)
downloadserverdata-4d6ed2e31624362422bcfbc6a7084f81cee0cf98.tar.gz
serverdata-4d6ed2e31624362422bcfbc6a7084f81cee0cf98.tar.bz2
serverdata-4d6ed2e31624362422bcfbc6a7084f81cee0cf98.tar.xz
serverdata-4d6ed2e31624362422bcfbc6a7084f81cee0cf98.zip
Easter 2012
Story: prsm, TheKandiman Scripting: alastrim Prepare for release and testing: Jenalya
Diffstat (limited to 'world/map/npc/easter/2012/easterbunny.txt')
-rw-r--r--world/map/npc/easter/2012/easterbunny.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/world/map/npc/easter/2012/easterbunny.txt b/world/map/npc/easter/2012/easterbunny.txt
new file mode 100644
index 00000000..7cf4fcdd
--- /dev/null
+++ b/world/map/npc/easter/2012/easterbunny.txt
@@ -0,0 +1,30 @@
+// easter bunny
+
+021-2.gat,69,55,0|script|Easter Bunny|173,{
+
+ if (QUEST_Easter12 >= 6) goto L_Easterbunny_Thanks;
+ if (QUEST_Easter12 < 5) goto L_Easterbunny_Notyet;
+
+ mes "[Easter Bunny]";
+ mes "\"Hi " + strcharinfo(0) + "! I was waiting for you. My uncle told me all about the pirates and how you were working really hard to save me. So I decided to give you a gift. You know, such generous and brave actions must be rewarded somehow.\"";
+ next;
+ mes "\"Here is what I have for you. I used it to break the lock of door in that basement. It seems to be a very resistent pan, but it can also be used as a hat. Enjoy!\"";
+ getitem "PanHat", 1;
+ set QUEST_Easter12, 6;
+ next;
+ mes "\"Oh, I forgot to mention. The Chef in Dimond's cove was really interested in this pan when he saw it. I told him it was yours, so you are the one who can decide about this.\"";
+ next;
+ mes "\"If I were you I would see what he wants with this pan, maybe you can even get something good out of it.\"";
+ close;
+
+L_Easterbunny_Notyet:
+ mes "[Easter Bunny]";
+ mes "\"Hello!\"";
+ close;
+
+L_Easterbunny_Thanks:
+ mes "[Easter Bunny]";
+ mes "\"Hello " + strcharinfo(0) + "! Thanks again for all your help.";
+ mes "I don't remember... did I tell you about the Chef from Dimond's cove? He wanted to ask you something about the pan.\"";
+ close;
+}