diff options
Diffstat (limited to 'npc/025-4/julia.txt')
-rw-r--r-- | npc/025-4/julia.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt new file mode 100644 index 00000000..51bcc296 --- /dev/null +++ b/npc/025-4/julia.txt @@ -0,0 +1,35 @@ +025-4.gat,89,21,0 script Julia 114,{ + + if (Rossy_Quest > 16 || FLAGS & FLAG_ROSSI_COMPLETED) goto L_End; + if (Rossy_Quest == 16) goto L_Done; + 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 "BlackBoots", 1; + getexp 5000, 0; + set Rossy_Quest, 17; + mes "I'm out of here now, come out from this horrible cave."; + close; + +L_End: + mes "[Julia]"; + mes "Come out from this horrible cave."; + close; + +L_Hmmm: + mes "[Julia]"; + 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; + +} |