diff options
author | Haru <haru@dotalux.com> | 2014-10-26 02:29:12 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:50 +0100 |
commit | eb5a3ece8568bae80d2d6912cd172f4cce029e68 (patch) | |
tree | 59ad4ef160c69bf9be6574e56ded3c54acb13526 /npc/pre-re/guides/guides_izlude.txt | |
parent | bf4b0a281207e46a9b21a9c9f779aeafaa739b62 (diff) | |
download | hercules-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_izlude.txt')
-rw-r--r-- | npc/pre-re/guides/guides_izlude.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/pre-re/guides/guides_izlude.txt b/npc/pre-re/guides/guides_izlude.txt index ef84be488..7961f46da 100644 --- a/npc/pre-re/guides/guides_izlude.txt +++ b/npc/pre-re/guides/guides_izlude.txt @@ -25,7 +25,7 @@ izlude,121,87,6 script Guide#iz 8W_SOLDIER,{ mes "If you need any guidance"; mes "around Izlude, feel free"; mes "to ask me at anytime."; - set .@loop1,1; + .@loop1 = 1; while(.@loop1) { next; switch(select("City Guide:Remove Marks from Mini-Map:Notice.:Cancel")) { @@ -39,11 +39,11 @@ izlude,121,87,6 script Guide#iz 8W_SOLDIER,{ 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("^FF0000Swordman Association^000000:Swordman Hall:Arena:Izlude Marina:Weapon Shop:Tool Shop:Cancel")) { @@ -105,7 +105,7 @@ izlude,121,87,6 script Guide#iz 8W_SOLDIER,{ mes "no longer wish to have the"; mes "location marks displayed"; mes "on your Mini-Map."; - set .@loop2,0; + .@loop2 = 0; break; } } @@ -117,7 +117,7 @@ izlude,121,87,6 script Guide#iz 8W_SOLDIER,{ viewpoint 2,175,220,3,0xFF0000; viewpoint 2,134,221,4,0xFF0000; viewpoint 2,204,214,5,0xFF0000; - set .@compass_check,0; + .@compass_check = 0; break; case 3: mes "[Izlude Guide]"; @@ -150,7 +150,7 @@ izlude,121,87,6 script Guide#iz 8W_SOLDIER,{ mes "if you ever feel lost"; mes "around Izlude, alright?"; close2; - set .@loop1,0; + .@loop1 = 0; break; } } |