diff options
author | Ali-G <gauvain.dauchy@free.fr> | 2011-06-05 16:18:45 +0200 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-12 14:45:23 -0700 |
commit | a962576520df2e291b51549eeb920dc0289f0452 (patch) | |
tree | 5f961fdee99b85f2127f54db69014d596f0ae6d2 /npc/025-1/rossy.txt | |
parent | 2ccd072f6d2ab8b4d3612dc653d84c400af2abc6 (diff) | |
download | serverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.gz serverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.bz2 serverdata-a962576520df2e291b51549eeb920dc0289f0452.tar.xz serverdata-a962576520df2e291b51549eeb920dc0289f0452.zip |
Made some fixes and improved some scripts.
Diffstat (limited to 'npc/025-1/rossy.txt')
-rw-r--r-- | npc/025-1/rossy.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/025-1/rossy.txt b/npc/025-1/rossy.txt index 45403dd6..bb7c01ec 100644 --- a/npc/025-1/rossy.txt +++ b/npc/025-1/rossy.txt @@ -1,7 +1,7 @@ 025-1.gat,80,88,0 script Rossy 114,{ - if (Rossy_Quest == 18) goto L_FinalEnd; - if (Rossy_Quest == 17) goto L_End; + if (Rossy_Quest >= 17) goto L_FinalEnd; + if (Rossy_Quest == 16) goto L_End; if (Rossy_Quest == 14) goto L_Julia; if (Rossy_Quest >= 13) goto L_Best; if (Rossy_Quest >= 11) goto L_Allergic; @@ -163,23 +163,25 @@ L_Best: mes "[Rossy]"; set Rossy_Quest, 14; mes "\"Thank you "+ strcharinfo(0) +", you helped me so much! I now need to find my sister before my mum gets worried...\""; + next; + mes "\"Please find her.\""; close; L_Julia: mes "[Rossy]"; - mes "\"I saw my twin, Julia! She was forced to enter a cave not far from here. I heard her scream. Please find her now!\""; + mes "\"I saw my twin, Julia! She was forced to enter a cave not far from here. I heard her scream. Please save her now!\""; close; L_End: mes "[Rossy]"; - mes "\"I saw my twin, Julia! She was forced to enter a cave not far from here. I heard her scream. Please find her now!\""; + mes "\"I saw my twin, Julia! She was forced to enter a cave not far from here. I heard her scream. Did you saved her yet?\""; 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 "[Rossy]"; - set Rossy_Quest, 18; + set Rossy_Quest, 17; mes "\"Thank you "+ strcharinfo(0) +", thank you! Here is a reward for you.\""; getexp 5000, 0; set zeny, zeny + 5000; |