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_izl.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_izl.txt')
-rw-r--r-- | npc/guides/guides_izl.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/npc/guides/guides_izl.txt b/npc/guides/guides_izl.txt index bf3c6c925..2bbd6f8c3 100644 --- a/npc/guides/guides_izl.txt +++ b/npc/guides/guides_izl.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88; L0ne_W0lf //===== Current Version: ===================================== -//= 1.5 +//= 1.5a //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -16,6 +16,8 @@ //= to Muad_Dib //= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA] //= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] +//= 1.5a Fixed some errors with the loop[Samuray22] +// -Thanks to $ephiroth. //============================================================ izlude,121,87,6 script Guide#iz 105,{ @@ -44,7 +46,9 @@ izlude,121,87,6 script Guide#iz 105,{ } set .@loop2,1; while(.@loop2) { - next; + if (.@wait_button_chk == 0) set .@wait_button_chk,1; + else next; + switch(select("^FF0000Swordman Association^000000:Swordman Hall:Arena:Izlude Marina:Weapon Shop:Tool Shop:Cancel")) { case 1: mes "[Izlude Guide]"; @@ -105,6 +109,7 @@ izlude,121,87,6 script Guide#iz 105,{ mes "location marks displayed"; mes "on your Mini-Map."; set .@loop2,0; + break; } } break; @@ -147,10 +152,11 @@ izlude,121,87,6 script Guide#iz 105,{ mes "free to come to me"; mes "if you ever feel lost"; mes "around Izlude, alright?"; + close2; set .@loop1,0; + break; } } - close2; cutin "prt_soldier",255; end; } |