diff options
author | Coffee <coffee@coffee-EP45-UD3L.(none)> | 2011-06-12 12:46:54 -0300 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-12 14:51:03 -0700 |
commit | 4c8d2a9e25f3525c62aaf703ee2c35fa5da90dab (patch) | |
tree | 287a6b9b77b473cc66d1c8430a434664a4c7ff56 /npc/025-4/julia.txt | |
parent | 7db5813c87d4b964d7a9caa14bef582935481920 (diff) | |
download | serverdata-4c8d2a9e25f3525c62aaf703ee2c35fa5da90dab.tar.gz serverdata-4c8d2a9e25f3525c62aaf703ee2c35fa5da90dab.tar.bz2 serverdata-4c8d2a9e25f3525c62aaf703ee2c35fa5da90dab.tar.xz serverdata-4c8d2a9e25f3525c62aaf703ee2c35fa5da90dab.zip |
Add fixes and cave fights
Diffstat (limited to 'npc/025-4/julia.txt')
-rw-r--r-- | npc/025-4/julia.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt index 941e9841..01dc044d 100644 --- a/npc/025-4/julia.txt +++ b/npc/025-4/julia.txt @@ -1,8 +1,8 @@ 025-4.gat,89,21,0 script Julia 114,{ - if (Rossy_Quest >= 16) goto L_End; - if (Rossy_Quest == 15) goto L_Done; - if (Rossy_Quest <= 14) goto L_Hmmm; + if (Rossy_Quest > 16 || FLAGS & FLAG_ROSSI_COMPLETED) goto L_End; + if (Rossy_Quest == 16) goto L_Done; + if (Rossy_Quest <= 16) goto L_Hmmm; L_Done: mes "[Julia]"; @@ -11,7 +11,7 @@ L_Done: mes "Here is a present for you."; getitem "BunchOfParsley", 1; getexp 5000, 0; - set Rossy_Quest, 16; + set Rossy_Quest, 17; mes "I'm out of here now, come out from this horrible cave."; close; |