diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-10-02 23:43:08 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-10-02 23:43:08 +0000 |
commit | 00cd3323420435f2c3b186352492ebf42ed452ca (patch) | |
tree | 745c810891197aff1a8894cbd4d5311c4cb28f9d /npc | |
parent | 9538be54e472e7880429c6cf008125df5d4b04b5 (diff) | |
download | hercules-00cd3323420435f2c3b186352492ebf42ed452ca.tar.gz hercules-00cd3323420435f2c3b186352492ebf42ed452ca.tar.bz2 hercules-00cd3323420435f2c3b186352492ebf42ed452ca.tar.xz hercules-00cd3323420435f2c3b186352492ebf42ed452ca.zip |
* Fixed an endless loop and other typos in Wanderer job quest, bugreport:6748 (re\jobs\3-2\wanderer.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16810 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/re/jobs/3-2/wanderer.txt | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/npc/re/jobs/3-2/wanderer.txt b/npc/re/jobs/3-2/wanderer.txt index f8eccb327..e550a51de 100644 --- a/npc/re/jobs/3-2/wanderer.txt +++ b/npc/re/jobs/3-2/wanderer.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Muad_Dib, Meyraw //===== Current Version: ===================================== -//= 1.1 +//= 1.2 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -12,6 +12,7 @@ //===== Additional Comments: ================================= //= 1.0 First Version. //= 1.1 Updated dialogue to be more official / accurate. Huge thanks to Muad_Dib! [Masao] +//= 1.2 Fixed an endless loop in dialogue. //============================================================ xmas,162,209,5 script Aspiring Wanderer, Soy 714,{ @@ -198,6 +199,7 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "But I'm so overwhelmed that I might go crazy. Ahhhh~~!"; next; while (1) { + set .@loop,0; switch (select("Sorry, I don't care.:What's the matter?:Why are you telling me this?")) { case 1: mes "[Performance Manager]"; @@ -211,7 +213,7 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "Those people don't feel any responsibility.."; mes "We're all expecting them and I've promoted them a lot."; next; - break; + set .@loop,1; break; case 3: emotion e_ag; @@ -221,8 +223,10 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ next; break; } + if (.@loop) break; } while (1) { + set .@loop,0; switch (select("Is there a problem?:Who do you mean?:It has nothing to do with me.")) { case 1: mes "[Performance Manager]"; @@ -236,7 +240,7 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "Swing swing, dangling dangling!!"; mes "This is awful."; next; - break; + set .@loop,1; break; case 2: mes "[Performance Manager]"; @@ -251,8 +255,10 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "This is too much!"; close; } + if (.@loop) break; } while (1) { + set .@loop,0; switch (select("Are you afraid of people?:The performers caused trouble?:Ignore him.")) { case 1: mes "[Performance Manager]"; @@ -272,13 +278,14 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "Besides the money I spent for promoting and setting up the stage.."; mes "How can I handle all the angry people?"; next; - break; + set .@loop,1; break; case 3: mes "[Performance Manager]"; mes "Hey, where are you going!"; close; } + if (.@loop) break; } mes "[" + strcharinfo(0) + "]"; mes "I see that you are worried that the performance is going down the drain."; @@ -296,7 +303,7 @@ xmas,132,143,5 script Performance Manager#wnd 713,{ mes "[" + strcharinfo(0) + "]"; mes "It's because..."; input .@inputstr$; - mes "^3131FaF" + .@inputstr$ + "^000000"; + mes "^3131FF" + .@inputstr$ + "^000000"; mes "......"; next; emotion e_ag; @@ -569,7 +576,7 @@ comodo,140,86,5 script Cheerless Maestro 479,{ mes "Is there no way for my dream to be true now? Sob sob..."; next; mes "[Guitar Song]"; - mes "Huh huh! No, that is not.."; + mes "Huh huh! No, that is not..."; next; emotion e_sob,1; mes "[" + strcharinfo(0) + "]"; |