summaryrefslogtreecommitdiff
path: root/npc/025-4/julia.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/025-4/julia.txt')
-rw-r--r--npc/025-4/julia.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt
index 01dc044d..4004d77c 100644
--- a/npc/025-4/julia.txt
+++ b/npc/025-4/julia.txt
@@ -2,13 +2,15 @@
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;
+ if (Rossy_Quest <= 15) goto L_Hmmm;
L_Done:
mes "[Julia]";
mes "Oh, you saved me, thank you!";
next;
mes "Here is a present for you.";
+ getinventorylist;
+ if (@inventorylist_count == 100) goto L_TooMany;
getitem "BunchOfParsley", 1;
getexp 5000, 0;
set Rossy_Quest, 17;
@@ -25,4 +27,9 @@ L_Hmmm:
mes "Don't hurt me!";
close;
+L_TooMany:
+ mes "[Julia]";
+ mes "\"Oh, I wanted to give you a present, but you don't have room for it. Come back when your backpack will not be full.\"";
+ close;
+
}