summaryrefslogtreecommitdiff
path: root/npc/025-4/julia.txt
diff options
context:
space:
mode:
authorAli-G <gauvain.dauchy@free.fr>2011-06-05 16:18:45 +0200
committerBen Longbons <b.r.longbons@gmail.com>2011-06-12 14:45:23 -0700
commita962576520df2e291b51549eeb920dc0289f0452 (patch)
tree5f961fdee99b85f2127f54db69014d596f0ae6d2 /npc/025-4/julia.txt
parent2ccd072f6d2ab8b4d3612dc653d84c400af2abc6 (diff)
downloadserverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.gz
serverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.bz2
serverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.xz
serverdata-a962576520df2e291b51549eeb920dc0289f0452.zip
Made some fixes and improved some scripts.
Diffstat (limited to 'npc/025-4/julia.txt')
-rw-r--r--npc/025-4/julia.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt
index f4a053f0..c8efacb2 100644
--- a/npc/025-4/julia.txt
+++ b/npc/025-4/julia.txt
@@ -1,13 +1,17 @@
025-4.gat,89,21,0 script Julia 114,{
- if (Rossy_Quest >= 17) goto L_End;
+ if (Rossy_Quest >= 16) goto L_End;
+ if (Rossy_Quest == 15) goto L_Done;
+ if (Rossy_Quest <= 14) goto L_Hmmm;
+
+L_Done:
mes "[Julia]";
mes "Oh, you saved me, thank you!";
next;
mes "Here is a present for you.";
getitem "BunchOfParsley", 1;
getexp 5000, 0;
- set Rossy_Quest, 17;
+ set Rossy_Quest, 16;
mes "I'm out of here now, come out from this horrible cave.";
close;
@@ -16,4 +20,9 @@ L_End:
mes "Come out from this horrible cave.";
close;
+L_Hmmm
+ mes "[Julia]";
+ mes "Don't hurt me!";
+ close;
+
}