summaryrefslogtreecommitdiff
path: root/npc/00000SAVE
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-02-09 15:16:59 -0200
committerJesusaves <cpntb1@ymail.com>2019-02-09 15:16:59 -0200
commit80f0c39b57faf2c1f3f669459912c7962adff6b1 (patch)
tree011c23b946f776eaf895e6b58525ff9f3293e14b /npc/00000SAVE
parent869bc57bfab26ed2cdacd6eb7643da5f9f318b86 (diff)
downloadserverdata-80f0c39b57faf2c1f3f669459912c7962adff6b1.tar.gz
serverdata-80f0c39b57faf2c1f3f669459912c7962adff6b1.tar.bz2
serverdata-80f0c39b57faf2c1f3f669459912c7962adff6b1.tar.xz
serverdata-80f0c39b57faf2c1f3f669459912c7962adff6b1.zip
File dispatched (but lost original purpose)
Diffstat (limited to 'npc/00000SAVE')
-rw-r--r--npc/00000SAVE/fairy/009-2_fairyquest2.txt75
1 files changed, 0 insertions, 75 deletions
diff --git a/npc/00000SAVE/fairy/009-2_fairyquest2.txt b/npc/00000SAVE/fairy/009-2_fairyquest2.txt
deleted file mode 100644
index fac3d9153..000000000
--- a/npc/00000SAVE/fairy/009-2_fairyquest2.txt
+++ /dev/null
@@ -1,75 +0,0 @@
-
-009-2,63,26,0 script Royal Fairy NPC108,{
- if(FAIRY_Quest == 1) goto L_tellagain;
- if(FAIRY_Quest == 3) goto L_thanks;
- if(FAIRY_Quest == 4) goto L_thanks2;
-
- mes "[Fairy Princess]";
- mes "\"Hi, I'm too busy to talk right now, please go away. Very pressing matters at hand.\"";
- goto L_close;
-
-L_tellagain:
- mes "[Fairy Princess]";
- mes "\"Hello, I noticed my dear friend, Susanne, asked you to help us save my sisters; do not forget to ask Susanne where the Fafi Dragon was last seen.\"";
- goto L_close;
-
-L_thanks:
- mes "[Fairy Princess]";
- mes "\"Thank you so much for saving my sisters!\"";
- next;
- mes "\"As a reward to a Noble Warrior as yourself, I want you to have one. They will serve you during your travels, please choose one.\"";
- mes "\"Or If you don't want one you can keep the Monster Skull Mask that Susanne gave you.\"";
- if (countitem("MonsterSkullHelmet") == 0) goto L_Nomask;
- goto L_fairymenu;
-
-L_fairymenu:
- menu
- "I'd like to take the Blue Fairy with me!", L_blue,
- "I love the Red Fairy, she'd be a good friend", L_Red,
- "Can I take the Green Fairy with me?", L_Green,
- "Right now I don't really feel like having someone with me..", L_No;
-
-L_blue:
- delitem "MonsterSkullHelmet", 1;
- getexp 100000, 0;
- getitem "BlueFairy", 1;
- FAIRY_Quest = 4;
- goto L_close;
-
-L_Red:
- delitem "MonsterSkullHelmet", 1;
- getexp 100000, 0;
- getitem "RedFairy", 1;
- FAIRY_Quest = 4;
- goto L_close;
-
-L_Green:
- delitem "MonsterSkullHelmet", 1;
- getexp 100000, 0;
- getitem "GreenFairy", 1;
- FAIRY_Quest = 4;
- goto L_close;
-
-L_No:
- mes "[Fairy Princess]";
- mes "\"Ok...if you ever feel like having one of my sisters there with you, come back!\"";
- goto L_close;
-
-L_thanks2:
- mes "[Fairy Princess]";
- mes "\"Thank you so much for saving my sisters!\"";
- next;
- mes "\"They can now enjoy life and see their younger friend.\"";
- goto L_close;
-
-L_Nomask:
- mes "[Fairy Princess]";
- mes "\"Seems like you don't have the Monster Skull Helmet with you.\"";
- mes "\"For a Fairy to obey your every command, the Helmet must be used as part of the spell.\"";
- mes "\"Please come back when you have it with you.\"";
- goto L_close;
-
-
-L_close:
- close;
-}