summaryrefslogtreecommitdiff
path: root/npc/024-1/david.txt
diff options
context:
space:
mode:
authorAli-G <gauvain.dauchy@free.fr>2011-06-04 14:56:46 +0200
committerBen Longbons <b.r.longbons@gmail.com>2011-06-12 14:43:31 -0700
commitaa7b030995264b775bc3793aa2260b07e2275ede (patch)
tree5ad1ceed40035b19c99ae17999b774ee38632e82 /npc/024-1/david.txt
parent630b394abb4940068f4939857a9558aee756ec11 (diff)
downloadserverdata-aa7b030995264b775bc3793aa2260b07e2275ede.tar.gz
serverdata-aa7b030995264b775bc3793aa2260b07e2275ede.tar.bz2
serverdata-aa7b030995264b775bc3793aa2260b07e2275ede.tar.xz
serverdata-aa7b030995264b775bc3793aa2260b07e2275ede.zip
Serarated the script into each NPC. Also changed the outline story and changed the location of Rossy and her first quest.
Diffstat (limited to 'npc/024-1/david.txt')
-rw-r--r--npc/024-1/david.txt43
1 files changed, 43 insertions, 0 deletions
diff --git a/npc/024-1/david.txt b/npc/024-1/david.txt
new file mode 100644
index 00000000..3128392b
--- /dev/null
+++ b/npc/024-1/david.txt
@@ -0,0 +1,43 @@
+024-1.gat,70,70,0 script David 120,{
+
+ if (Rossy_Quest == 14) goto L_Julia;
+ if (Rossy_Quest >= 8) goto L_Done;
+
+ mes "[David]";
+ mes "\"Learning magic is hard...\"";
+ if (Rossy_Quest == 7) goto L_Help;
+ close;
+
+L_Help:
+ menu
+ "Do you know Rossy?", L_Set,
+ "I can tell, it is hard.", L_No;
+
+L_Set:
+ mes "[David]";
+ set Rossy_Quest, 8;
+ mes "\"Yes, I do. I am her teacher. That makes me remember she didn't hand me her potion yet. Time is running out.\"";
+ menu
+ "A potion? Oh, uhm... never heard about it.", L_No,
+ "Right, I have her potion. She asked me to bring it to you for her.", -;
+ mes "[David]";
+ mes "\"Oh, that's great! Let me look at it...\"";
+ mes "\"Great! This potion is perfect, tell Rossy that she passed her exam! And here is a small reward for your help.\"";
+ getexp 2000, 0;
+ set zeny, zeny + 500;
+ close;
+
+L_Done:
+ mes "[David]";
+ mes "\"I am really happy that my best student succesfully passed her exam! Thank you "+ strcharinfo(0) +"!\"";
+ close;
+
+L_No:
+ close;
+
+L_Julia:
+ mes "[David]";
+ mes "\"I heard Rossy's sister got kidnapped. We count on you to find her!\"";
+ close;
+
+}