summaryrefslogtreecommitdiff
path: root/npc/000-2-1/peter.txt
diff options
context:
space:
mode:
authorHal9OOO <miglietta.francesco@gmail.com>2012-11-02 23:13:44 +0100
committerHal9OOO <miglietta.francesco@gmail.com>2012-11-02 23:13:44 +0100
commit236f041bbe27f0a1f46c72b5804c61340e0225a8 (patch)
tree645498291fee30db954086752b381d9dab2c8474 /npc/000-2-1/peter.txt
parentaa275da8e2c3bf75cc64d2c359d804128c114cfe (diff)
downloadserverdata-236f041bbe27f0a1f46c72b5804c61340e0225a8.tar.gz
serverdata-236f041bbe27f0a1f46c72b5804c61340e0225a8.tar.bz2
serverdata-236f041bbe27f0a1f46c72b5804c61340e0225a8.tar.xz
serverdata-236f041bbe27f0a1f46c72b5804c61340e0225a8.zip
Peter barrier-check removed. Julia Quest cleaned up.
Diffstat (limited to 'npc/000-2-1/peter.txt')
-rw-r--r--npc/000-2-1/peter.txt57
1 files changed, 8 insertions, 49 deletions
diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt
index eaa7b942..9f3e4f94 100644
--- a/npc/000-2-1/peter.txt
+++ b/npc/000-2-1/peter.txt
@@ -10,19 +10,15 @@
// 4+2 bits array:
// ShipQuests
// Variable:
-// 0 ShipQuests_Peter
-// 1 ShipQuests_Julia
+// ShipQuests_Peter
// Values:
-// 00 Doesn't know the quest.
-// 01 Task given.
-// 02 Task given and reward expected.
-// 03 Task completed without reward.
-// 04 Asked for reward after completion of the task.
-// 05 Task done and reward given.
-// 06 Did not start the quest.
-// 10 Doesnt' know Julia.
-// 11 Registred to Julia.
-// 12 Need to see Julia.
+// 0 Doesn't know the quest.
+// 1 Task given.
+// 2 Task given and reward expected.
+// 3 Task completed without reward.
+// 4 Asked for reward after completion of the task.
+// 5 Task done and reward given.
+// 6 Did not start the quest.
// "000-2-2.gat" - map with mobs.
// "$@RAT_SAILOR_HELPER$" - Name of the participant.
// "$@RAT_SAILOR_DEATHS - Number of deaths when the paticipant starts the fight.
@@ -40,8 +36,6 @@
000-2-1.gat,61,34,0,1 script AreaNPC 0,0,1,{
OnTouch:
- set @q_julia, getq(ShipQuests_Julia);
- if (@q_julia == 0) goto OnTalkToJulia;
if (BaseLevel < 5) goto L_Stop;
if ($@RAT_SAILOR_HELPER$ != "") goto L_Occupied;
set @q, getq(ShipQuests_Peter);
@@ -75,16 +69,10 @@ L_Rfail:
L_Rwin:
doevent "Peter::OnReturnWin";
- close;
-L_TalkToJulia:
- doevent "Peter::OnTalkToJulia";
-
}
000-2-1.gat,60,35,0,1 script Peter 303;3,{
- set @q_julia, getq(ShipQuests_Julia);
- if (@q_julia == 0) goto OnTalkToJulia;
if (BaseLevel < 5) goto OnTooWeak;
set @q, getq(ShipQuests_Peter);
@@ -112,18 +100,6 @@ OnGiveTask:
goto L_Close;
-OnTalkToJulia:
- setq ShipQuests_Julia, 2;
-
- mesn;
- mesq l("Hey, you should go see Julia to be registered on the ship board.");
- next;
-
- mesn "Narrator";
- mes col(l("Julia is on the upper level of the ship, use the arrow keys to walk to the stairs or click on the stairs at the top right of your screen."), 9);
-
- goto L_Close;
-
OnTooWeak:
mesn;
mesq lg("I need help for clean the edge of the ship, but you aren't strong enough to help.");
@@ -311,24 +287,7 @@ L_Thanks:
L_Close:
set @q, 0;
- set @q_julia, 0;
close;
}
-
-000-2-1.gat,54,32,0,1 script PeterBarrierCheck 0,0,2,{
- set @q, getq(ShipQuests_Julia);
- if (@q > 0) close;
- setq ShipQuests_Julia, 2;
-
- mesn;
- mesq l("Hey, you should go see Julia to get registered on the ship.");
- next;
-
- mesn "Narrator";
- mes col(l("Julia is on the upper level of the ship. Use the arrow keys to walk to the stairs or just click on the stairs with your mouse to walk to them."), 9);
-
- close;
-
-} \ No newline at end of file