summaryrefslogtreecommitdiff
path: root/world/map/npc/048-2/helperChief.txt
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2015-05-06 21:43:36 -0400
committermekolat <mekolat@users.noreply.github.com>2015-05-13 09:57:58 -0400
commit2605a9f17361f80304567f3a7cb5b9480f204221 (patch)
tree9028e2005b92999ccae846c535022498b586e513 /world/map/npc/048-2/helperChief.txt
parent159116ab059fe579ac42f75eb1bb288d90c01a67 (diff)
downloadserverdata-2605a9f17361f80304567f3a7cb5b9480f204221.tar.gz
serverdata-2605a9f17361f80304567f3a7cb5b9480f204221.tar.bz2
serverdata-2605a9f17361f80304567f3a7cb5b9480f204221.tar.xz
serverdata-2605a9f17361f80304567f3a7cb5b9480f204221.zip
convert blue sage quest
Diffstat (limited to 'world/map/npc/048-2/helperChief.txt')
-rw-r--r--world/map/npc/048-2/helperChief.txt20
1 files changed, 7 insertions, 13 deletions
diff --git a/world/map/npc/048-2/helperChief.txt b/world/map/npc/048-2/helperChief.txt
index 7eae6f63..ed5b6f94 100644
--- a/world/map/npc/048-2/helperChief.txt
+++ b/world/map/npc/048-2/helperChief.txt
@@ -4,17 +4,15 @@
// Chief of the Blue Sage helpers
// involved in investigation subquest
-048-2,146,26,0|script|Oskari|365
+048-2,146,26,0|script|Oskari|134
{
- set @investigate, ((QUEST_BlueSage & $@Q_BlueSageInvestigate_MASK) >> $@Q_BlueSageInvestigate_SHIFT);
-
- if (@investigate >= 11) goto L_Goodjob;
- if (@investigate > 1) goto L_Investigate;
+ if (QL_BSAGE_INVESTIGATE >= 11 && QL_BSAGE_INVESTIGATE < 13) goto L_Goodjob;
+ if (QL_BSAGE_INVESTIGATE > 1 && QL_BSAGE_INVESTIGATE < 13) goto L_Investigate;
mes "[Oskari]";
mes "\"Hello. Welcome to the residence of the Great Nikolai.";
mes "You have to excuse me, as you might have heard we're having some trouble at the moment and I, as Chief of Nikolai's helpers, have a lot to do.\"";
- if (@investigate == 0)
+ if (QL_BSAGE_INVESTIGATE == 0)
goto L_Close;
menu
"Peetu asked me to talk to you about his mishap.",L_Next,
@@ -37,14 +35,12 @@ L_Next:
mes "Oh, and please tell him that I'm not considering firing him in the current situation. You might need that to calm him down and get meaningful information.\"";
next;
mes "\"You should find out if someone observed anything unusual during the time before the accident happened.\"";
- set @investigate, 2;
- callfunc "updateBlueSageInvestigate";
- goto L_Close;
+ set QL_BSAGE_INVESTIGATE, 2;
L_Investigate:
mes "[Oskari]";
mes "\"Ah, hello. Did you get an overview over the happenings yet?\"";
- if (@investigate != 10)
+ if (QL_BSAGE_INVESTIGATE != 10)
menu
"I'm still collecting information.",L_Close;
next;
@@ -78,8 +74,7 @@ L_Continue:
mes "\"You were a great help! I'll inform Nikolai about your involvement in clarifying this matter.\"";
next;
mes "\"And you should also talk with Peetu, I'm sure he'll be relieved to hear about the clarification of this matter too.\"";
- set @investigate, 11;
- callfunc "updateBlueSageInvestigate";
+ set QL_BSAGE_INVESTIGATE, 11;
goto L_Close;
L_Goodjob:
@@ -123,6 +118,5 @@ L_Conflict:
goto L_Close;
L_Close:
- set @investigate, 0;
close;
}