blob: 7cf4fcdd59cb8e5b60cf41482ef4c3210c004c04 (
plain) (
tree)
|
|
// 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;
}
|