diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-10 01:33:26 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-10 01:33:26 +0000 |
commit | 622537266bb785847dd5eb7439bdbe2203a1b75e (patch) | |
tree | 4fdcc3272691843b55119d24d233b570070c4481 /npc/guides | |
parent | 1f77c598f27b2ba41fe006d7c868e1e2e31f8727 (diff) | |
download | hercules-622537266bb785847dd5eb7439bdbe2203a1b75e.tar.gz hercules-622537266bb785847dd5eb7439bdbe2203a1b75e.tar.bz2 hercules-622537266bb785847dd5eb7439bdbe2203a1b75e.tar.xz hercules-622537266bb785847dd5eb7439bdbe2203a1b75e.zip |
* Updated (and added) item_trade entries. (Converted from Aegis.)
* Updated several Prontera NPCs.
- Updated Prontera town NPCs, and Prontera Library.
- Updated the Prontera Milk Merchant.
- Updated the inn dialogs slightly, and corrected information for Prontera.
- Added Gaebolg Family Curse quest.
- Commented out old Clothes_dyer npc.
* Updated Rachel's guide's while loop to be a bit nicer looking.
* Added the ability to redeem lottery tickets before max donation is met.
* Changed conflicting warps to the "Adoption" room in the church.
* Fixed a bug in Kiel Hyre warps and quest.
* Updated Dandelion Request quest for Gaebolg compatibility.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10736 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guides')
-rw-r--r-- | npc/guides/guides_rachel.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/guides/guides_rachel.txt b/npc/guides/guides_rachel.txt index f72428675..38a5f783d 100644 --- a/npc/guides/guides_rachel.txt +++ b/npc/guides/guides_rachel.txt @@ -11,6 +11,7 @@ //= Rachel City guide
//===== Additional Comments: =================================
//= 1.0 First version. [L0ne_W0lf]
+//= 1.1 Change the while loops a bit. [L0ne_W0lf]
//============================================================
rachel,138,146,5 script Rachel Guide 934,{
mes "[Rachel Guide]";
@@ -20,7 +21,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?";
- while(1) {
+ set .@loop,1;
+ while(.@loop) {
next;
switch(select("Village Guide:Remove Marks from Mini-Map:Notice:Cancel")) {
case 1:
@@ -34,9 +36,9 @@ rachel,138,146,5 script Rachel Guide 934,{ next;
if (select("Yes:No") == 1) set .@compass_check,1;
next;
-
}
- while(1) {
+ set .@loop2,1;
+ while(.@loop2) {
if (.@wait_button_chk == 0) set .@wait_button_chk,1;
else next;
@@ -74,10 +76,9 @@ rachel,138,146,5 script Rachel Guide 934,{ mes "[Rachel Guide]";
mes "If you like to get rid of all the location marks on your Mini-Map,";
mes "just ask me again, and choose \"Remove Marks from Mini-Map\" menu.";
- set .@Exitloop,1;
+ set .@loop2,0;
break;
}
- if (.@Exitloop) break;
}
break;
@@ -101,10 +102,9 @@ rachel,138,146,5 script Rachel Guide 934,{ mes "[Rachel Guide]";
mes "Hope you have a wonderfull journey";
mes "in Arunafeltz.";
- set .@Exitloop2,1;
+ set .@loop,0;
break;
}
- if (.@Exitloop2) break;
}
close;
}
\ No newline at end of file |