diff options
author | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-15 23:54:48 +0000 |
---|---|---|
committer | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-15 23:54:48 +0000 |
commit | 5ba329bf4324747ef3afe9638c202a6de7512724 (patch) | |
tree | 93221e0c20ee1c6a1043285a8fbbbf4958d12b7e /npc/guides/guides_rachel.txt | |
parent | 08f4b386b2dae13aa837e4632ef197299846a7b1 (diff) | |
download | hercules-5ba329bf4324747ef3afe9638c202a6de7512724.tar.gz hercules-5ba329bf4324747ef3afe9638c202a6de7512724.tar.bz2 hercules-5ba329bf4324747ef3afe9638c202a6de7512724.tar.xz hercules-5ba329bf4324747ef3afe9638c202a6de7512724.zip |
* Fixed some loop errors in the guides.
-Thanks to $ephiroth.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11021 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guides/guides_rachel.txt')
-rw-r--r-- | npc/guides/guides_rachel.txt | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/npc/guides/guides_rachel.txt b/npc/guides/guides_rachel.txt index 3e450549c..116349689 100644 --- a/npc/guides/guides_rachel.txt +++ b/npc/guides/guides_rachel.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.2 +//= 1.2a //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -14,7 +14,10 @@ //= 1.1 Change the while loops a bit. [L0ne_W0lf] //= 1.2 Deleted an Unnecessary "next;" [Samuray22] // -Thanks to $ephiroth. +//= 1.2a Fixed some errors with the loop[Samuray22] +// -Thanks to $ephiroth. //============================================================ + rachel,138,146,5 script Rachel Guide 934,{ mes "[Rachel Guide]"; mes "Welcome to the capital of"; @@ -23,8 +26,8 @@ rachel,138,146,5 script Rachel Guide 934,{ mes "If this is the first time for you"; mes "to use the guide services, why"; mes "don't you check the \"Notice\" menu first?"; - set .@loop,1; - while(.@loop) { + set .@loop1,1; + while(.@loop1) { next; switch(select("Village Guide:Remove Marks from Mini-Map:Notice:Cancel")) { case 1: @@ -103,9 +106,11 @@ rachel,138,146,5 script Rachel Guide 934,{ mes "[Rachel Guide]"; mes "Hope you have a wonderfull journey"; mes "in Arunafeltz."; - set .@loop,0; + close2; + set .@loop1,0; break; } } close; + end; } |