From eb5a3ece8568bae80d2d6912cd172f4cce029e68 Mon Sep 17 00:00:00 2001 From: Haru Date: Sun, 26 Oct 2014 02:29:12 +0100 Subject: Replaced 'set' with direct assignment where applicable (pre-re folder) Signed-off-by: Haru --- npc/pre-re/guides/guides_izlude.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'npc/pre-re/guides/guides_izlude.txt') 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; } } -- cgit v1.2.3-70-g09d2