summaryrefslogtreecommitdiff
path: root/npc/025-4/julia.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/025-4/julia.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/025-4/julia.txt')
-rwxr-xr-xnpc/025-4/julia.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt
new file mode 100755
index 00000000..1b64edeb
--- /dev/null
+++ b/npc/025-4/julia.txt
@@ -0,0 +1,44 @@
+
+025-4,89,21,0 script Julia NPC114,{
+ @Reward_Exp = 5000;
+
+ 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;
+ goto L_Done;
+
+L_Done:
+ mes "[Julia]";
+ mes "\"I heard some battle noises a few minutes ago. Are you here to save me?\"";
+ next;
+ menu
+ "Of course I'm here to save you, Rossy sent me here!", L_Next;
+
+L_Next:
+ mes "\"Rossy? My twin sister? I knew she was going to look for me. Thank you so much, here is a present for you.\"";
+ getinventorylist;
+ if (@inventorylist_count == 100)
+ goto L_TooMany;
+ getitem "BlackBoots", 1;
+ getexp @Reward_Exp, 0;
+ Rossy_Quest = 17;
+ mes "\"I'm out of here now, lets get out of this horrible cave.\"";
+ close;
+
+L_End:
+ mes "[Julia]";
+ mes "\"Lets 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 isn't full.\"";
+ next;
+ mes "\"I'll wait here until I can give your present to you!\"";
+ close;
+}