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_veins.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_veins.txt')
-rw-r--r-- | npc/pre-re/guides/guides_veins.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/pre-re/guides/guides_veins.txt b/npc/pre-re/guides/guides_veins.txt index 99df4106e..ca42a05e2 100644 --- a/npc/pre-re/guides/guides_veins.txt +++ b/npc/pre-re/guides/guides_veins.txt @@ -17,7 +17,7 @@ veins,210,345,5 script Veins Guide#1::ve_guide 4_M_RASWORD,{ mes "[Veins Guide]"; mes "Desert City Veins welcomes adventurers seeking shelter from harsh sandstorms."; mes "If this is the first time for you to use the guide services, why don't you check the..."; - set .@loop1,1; + .@loop1 = 1; while(.@loop1) { next; switch(select("Village Guide:Remove Marks from Mini-Map:Notice:Cancel")) { @@ -30,11 +30,11 @@ veins,210,345,5 script Veins Guide#1::ve_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("Temple:Inn:Weapon Shop:Tool Shop:Airship:Tavern:Geological Research Institute:Cancel")) { @@ -88,7 +88,7 @@ veins,210,345,5 script Veins Guide#1::ve_guide 4_M_RASWORD,{ mes "[Veins 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; } } @@ -117,7 +117,7 @@ veins,210,345,5 script Veins Guide#1::ve_guide 4_M_RASWORD,{ mes "[Veins Guide]"; mes "Enjoy your stay in Veins."; close2; - set .@loop1,0; + .@loop1 = 0; break; } } |