diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-18 21:58:47 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-19 14:19:55 -0700 |
commit | bae4b92e560c2694eaaf0e8b4d9e95e56204471b (patch) | |
tree | 4acc120f6a94cfbf9694bf344658493de5aaa67b /world/map/npc/025-4/julia.txt | |
parent | 319f80526f8585ecadaec986e37c9bd326f4d363 (diff) | |
download | serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.gz serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.bz2 serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.xz serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.zip |
Move to a subdirectory
Diffstat (limited to 'world/map/npc/025-4/julia.txt')
-rw-r--r-- | world/map/npc/025-4/julia.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/world/map/npc/025-4/julia.txt b/world/map/npc/025-4/julia.txt new file mode 100644 index 00000000..8c7b3ce4 --- /dev/null +++ b/world/map/npc/025-4/julia.txt @@ -0,0 +1,39 @@ +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 "I heard some battle noises a few minutes ago and I presume you are here to save me!"; + next; + menu + "Of course I'm here to save you, Rossy sent me here!", -; + mes "Rossy? My twin sister? I knew she was going to look for me. Well, 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, let's get out of this horrible cave."; + close; + +L_End: + mes "[Julia]"; + mes "Let's get out of this horrible cave."; + close; + +L_Hmmm: + mes "[Julia]"; + mes "Don't hurt me!"; + close; + +L_TooMany: + mes "[Julia]"; + mes "\"Oh, you don't have room for it. Come back when your backpack will not be full.\""; + next; + mes "I'll wait here until you get your present!"; + close; + +} |