diff options
author | Ali-G <gauvain.dauchy@free.fr> | 2011-06-04 21:39:18 +0200 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-12 14:45:23 -0700 |
commit | 2ccd072f6d2ab8b4d3612dc653d84c400af2abc6 (patch) | |
tree | cae1c7f9c14e97c5bfb726bbf89321b2aeb0a8d9 /npc/009-2/olana.txt | |
parent | aa7b030995264b775bc3793aa2260b07e2275ede (diff) | |
download | serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.gz serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.bz2 serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.xz serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.zip |
Improved the script in all ways. Also improved some maps.
Diffstat (limited to 'npc/009-2/olana.txt')
-rw-r--r-- | npc/009-2/olana.txt | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/npc/009-2/olana.txt b/npc/009-2/olana.txt index 729ffb93..23606069 100644 --- a/npc/009-2/olana.txt +++ b/npc/009-2/olana.txt @@ -1,5 +1,7 @@ 009-2.gat,123,45,0 script Olana 140,{ + if (Rossy_Quest == 18) goto L_FinalEnd; + if (Rossy_Quest == 17) goto L_End; if (Rossy_Quest == 14) goto L_Julia; if (Rossy_Quest == 13) goto L_Best; if (Rossy_Quest == 12) goto L_Give; @@ -28,7 +30,7 @@ L_Daughter: mes "*Olana begins to sobb...*"; next; menu - "Wait, I saw Rossy I think and I helped her get back some fruits she lost in the forest. I didn't saw Julia though.", L_Help, + "Wait, I saw Rossy, she is fine.", L_Help, "Wait a bit, I'm sure they'll get back soon.", L_No; L_No: @@ -162,5 +164,25 @@ L_Julia: mes "[Olana]"; mes "\"Where is Julia? I want to know where she is! Go and find her please "+ strcharinfo(0) +".\""; close; + +L_End: + mes "[Olana]"; + mes "\"Where is Julia? I want to know where she is! Go and find her please "+ strcharinfo(0) +".\""; + menu + "She'll be back soon, trust me, I saved her.", L_Found, + "I didn't saw her yet, sorry.", L_No; + +L_Found: + mes "[Olana]"; + set Rossy_Quest, 18; + mes "\"Thank you "+ strcharinfo(0) +", thank you! Here is a reward for you.\""; + getexp 5000, 0; + set zeny, zeny + 5000; + close; + +L_FinalEnd: + mes "[Olana]"; + mes "*The mother is calmly waiting her daughters to come back for diner.*"; + close; } |