summaryrefslogtreecommitdiff
path: root/world/map/npc/048-2/helperResting1.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
commit9877fd4ad81120af8e63e96d5d429092014dc017 (patch)
treeec045a0535109a2e0d82e0e8155eb01ed9776452 /world/map/npc/048-2/helperResting1.txt
parentaedbeb335a5ec5f55d22eace389076a18241ac9a (diff)
downloadserverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.gz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.bz2
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.xz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.zip
Remove all Legacy files
Diffstat (limited to 'world/map/npc/048-2/helperResting1.txt')
-rw-r--r--world/map/npc/048-2/helperResting1.txt69
1 files changed, 0 insertions, 69 deletions
diff --git a/world/map/npc/048-2/helperResting1.txt b/world/map/npc/048-2/helperResting1.txt
deleted file mode 100644
index 76e62fe2..00000000
--- a/world/map/npc/048-2/helperResting1.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-// Part of Blue Sage quests
-// author: Jenalya
-// see bluesageConfig for detailed quest description
-// Lenita is one of the helpers working on sorting the bookpages, but is currently having a break
-// can give second hint about the visitor in investigation subquest
-
-048-2,36,26,0|script|Lenita|363
-{
- set @bookpages, ((QUEST_BlueSage & $@Q_BlueSageBookPages_MASK) >> $@Q_BlueSageBookPages_SHIFT);
-
- if (@bookpages == 254) goto L_Thank;
- if (@bookpages > 0) goto L_Progress;
-
- mes "[Lenita]";
- mes "\"Oh, hello. You didn't choose a good time to visit. The library is a total mess. The slimes got out of control and ate most of the books.\"";
- next;
- mes "\"We're trying to repair some of the valuable and important books. It's so much work!";
- mes "I was up until late last night, and woke up so early today... I'm having a break right now.\"";
- goto L_Investigate;
-
-L_Progress:
- mes "[Lenita]";
- mes "\"Teuvo said you're helping to collect some of the missing bookpages to repair the books. That's very kind of you! It's so much work to do, so every bit of help is welcome.\"";
- goto L_Investigate;
-
-L_Thank:
- mes "[Lenita]";
- mes "\"Wow, Ensio told me you collected so many of the lost book pages.\"";
- goto L_Investigate;
-
-L_Investigate:
- if ((QL_BSAGE_INVESTIGATE == 3) || (QL_BSAGE_INVESTIGATE == 4)) goto L_Ask_Visitor;
- if ((QL_BSAGE_INVESTIGATE == 5) || (QL_BSAGE_INVESTIGATE == 8)) goto L_Ask_Helper;
- if ((QL_BSAGE_INVESTIGATE == 6) || (QL_BSAGE_INVESTIGATE == 7) || (QL_BSAGE_INVESTIGATE == 9) || (QL_BSAGE_INVESTIGATE == 10)) goto L_Ask_Both;
- goto L_Close;
-
-L_Ask_Visitor:
- menu
- "Can you tell me anything about the visitor with the mask?",L_Visitor,
- "I need to leave.",L_Close;
-
-L_Ask_Helper:
- menu
- "What's your opinion of Peetu and how he does his work?",L_Helper,
- "See you later.",L_Close;
-
-L_Ask_Both:
- menu
- "Can you tell me anything about the visitor with the mask?",L_Visitor,
- "What's your opinion of Peetu and how he does his work?",L_Helper,
- "Bye.",L_Close;
-
-L_Visitor:
- mes "[Lenita]";
- mes "\"With a mask? Yeah, I remember. That was a strange guy. He came to visit the library, but he lurked around at the workshop area and they had to send him back to the books.\"";
- if ((QL_BSAGE_INVESTIGATE != 3) && (QL_BSAGE_INVESTIGATE != 6) && (QL_BSAGE_INVESTIGATE != 9))
- goto L_Close;
- set QL_BSAGE_INVESTIGATE, QL_BSAGE_INVESTIGATE + 1;
- goto L_Close;
-
-L_Helper:
- mes "[Lenita]";
- mes "\"Mh, I can't really tell since I usually work in the library while he works at the workshop. Maybe you should ask around among the people who work there.\"";
- goto L_Close;
-
-L_Close:
- set @bookpages, 0;
- close;
-}