summaryrefslogtreecommitdiff
path: root/npc/025-4/julia.txt
diff options
context:
space:
mode:
authorAli-G <gauvain.dauchy@free.fr>2011-06-12 19:42:34 +0200
committerBen Longbons <b.r.longbons@gmail.com>2011-06-12 14:51:03 -0700
commit1f1681acb88608a84588201d49739eb731905764 (patch)
tree37723d307d83b4d0f0330ed9f0f87fff3aa11f57 /npc/025-4/julia.txt
parent7eb654127e5ed31e5f9aa1ef17613d6d66cf992d (diff)
downloadserverdata-1f1681acb88608a84588201d49739eb731905764.tar.gz
serverdata-1f1681acb88608a84588201d49739eb731905764.tar.bz2
serverdata-1f1681acb88608a84588201d49739eb731905764.tar.xz
serverdata-1f1681acb88608a84588201d49739eb731905764.zip
Fixed numerous issues and added some improvements.
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;
+
}