summaryrefslogtreecommitdiff
path: root/npc/pre-re/guides/guides_rachel.txt
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2014-10-26 02:29:12 +0100
committerHaru <haru@dotalux.com>2014-11-02 01:36:50 +0100
commiteb5a3ece8568bae80d2d6912cd172f4cce029e68 (patch)
tree59ad4ef160c69bf9be6574e56ded3c54acb13526 /npc/pre-re/guides/guides_rachel.txt
parentbf4b0a281207e46a9b21a9c9f779aeafaa739b62 (diff)
downloadhercules-eb5a3ece8568bae80d2d6912cd172f4cce029e68.tar.gz
hercules-eb5a3ece8568bae80d2d6912cd172f4cce029e68.tar.bz2
hercules-eb5a3ece8568bae80d2d6912cd172f4cce029e68.tar.xz
hercules-eb5a3ece8568bae80d2d6912cd172f4cce029e68.zip
Replaced 'set' with direct assignment where applicable (pre-re folder)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/pre-re/guides/guides_rachel.txt')
-rw-r--r--npc/pre-re/guides/guides_rachel.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/pre-re/guides/guides_rachel.txt b/npc/pre-re/guides/guides_rachel.txt
index 2380a465a..0d94e963b 100644
--- a/npc/pre-re/guides/guides_rachel.txt
+++ b/npc/pre-re/guides/guides_rachel.txt
@@ -25,7 +25,7 @@ rachel,138,146,5 script Rachel Guide 4_M_RASWORD,{
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 .@loop1,1;
+ .@loop1 = 1;
while(.@loop1) {
next;
switch(select("Village Guide:Remove Marks from Mini-Map:Notice:Cancel")) {
@@ -38,11 +38,11 @@ rachel,138,146,5 script Rachel Guide 4_M_RASWORD,{
mes "to mark locations";
mes "on your Mini-Map?";
next;
- if (select("Yes:No") == 1) set .@compass_check,1;
+ if (select("Yes:No") == 1) .@compass_check = 1;
}
- set .@loop2,1;
+ .@loop2 = 1;
while(.@loop2) {
- if (.@wait_button_chk == 0) set .@wait_button_chk,1;
+ if (.@wait_button_chk == 0) .@wait_button_chk = 1;
else next;
switch(select("Cheshrumnir:Inn:Weapon Shop:Tool Shop:Airport:Cancel")) {
@@ -79,7 +79,7 @@ rachel,138,146,5 script Rachel Guide 4_M_RASWORD,{
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 .@loop2,0;
+ .@loop2 = 0;
break;
}
}
@@ -106,7 +106,7 @@ rachel,138,146,5 script Rachel Guide 4_M_RASWORD,{
mes "Hope you have a wonderfull journey";
mes "in Arunafeltz.";
close2;
- set .@loop1,0;
+ .@loop1 = 0;
break;
}
}