diff options
Diffstat (limited to 'npc/pre-re/guides/guides_einbroch.txt')
-rw-r--r-- | npc/pre-re/guides/guides_einbroch.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/npc/pre-re/guides/guides_einbroch.txt b/npc/pre-re/guides/guides_einbroch.txt index 9eefe2535..4fe9d1947 100644 --- a/npc/pre-re/guides/guides_einbroch.txt +++ b/npc/pre-re/guides/guides_einbroch.txt @@ -24,7 +24,7 @@ einbroch,72,202,4 script Guide#ein::EinGuide 4_M_EIN_SOLDIER,{ mes "the City of Steel."; mes "Please ask me if you"; mes "have any questions."; - set .@loop1,1; + .@loop1 = 1; while (.@loop1) { next; switch(select("City Guide.:Remove Marks from Mini-Map.:Notice.:Cancel.")) { @@ -38,11 +38,11 @@ einbroch,72,202,4 script Guide#ein::EinGuide 4_M_EIN_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("^FF0000Airport^000000:Train Station:Factory:Plaza:Hotel:Weapon Shop:Laboratory:Blacksmith Guild:Einbroch Tower:Cancel")) { case 1: @@ -139,7 +139,7 @@ einbroch,72,202,4 script Guide#ein::EinGuide 4_M_EIN_SOLDIER,{ mes "no longer wish to have the"; mes "location marks displayed"; mes "on your Mini-Map."; - set .@loop2,0; + .@loop2 = 0; } } break; @@ -153,7 +153,7 @@ einbroch,72,202,4 script Guide#ein::EinGuide 4_M_EIN_SOLDIER,{ viewpoint 2,36,49,8,0x00FF00; viewpoint 2,244,90,9,0x00FF00; viewpoint 2,174,195,10,0xFFFF00; - set .@compass_check,0; + .@compass_check = 0; mes "[Einbroch Guide]"; mes "Okay, the marks from"; mes "your Mini-Map have been"; @@ -194,7 +194,7 @@ einbroch,72,202,4 script Guide#ein::EinGuide 4_M_EIN_SOLDIER,{ mes "Oh, and please be"; mes "aware of the Smog Alerts."; close2; - set .@loop1,0; + .@loop1 = 0; } } cutin "ein_soldier",255; @@ -212,7 +212,7 @@ einbech,67,37,4 script Guide#4ein::EinGuide2 4_M_EIN_SOLDIER,{ mes "here to assist tourists,"; mes "so if you have any questions,"; mes "please feel free to ask us."; - set .@loop1,1; + .@loop1 = 1; while (.@loop1) { next; switch(select("City Guide.:Remove Marks from Mini-Map.:Notice.:Cancel.")) { @@ -226,11 +226,11 @@ einbech,67,37,4 script Guide#4ein::EinGuide2 4_M_EIN_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("Train Station:Tavern:Tool Shop:Swordman Guild:Mine:Cancel")) { case 1: @@ -290,7 +290,7 @@ einbech,67,37,4 script Guide#4ein::EinGuide2 4_M_EIN_SOLDIER,{ mes "no longer wish to have the"; mes "location marks displayed"; mes "on your Mini-Map."; - set .@loop2,0; + .@loop2 = 0; } } break; @@ -300,7 +300,7 @@ einbech,67,37,4 script Guide#4ein::EinGuide2 4_M_EIN_SOLDIER,{ viewpoint 2,176,136,4,0xFF00FF; viewpoint 2,250,110,5,0xFF00FF; viewpoint 2,138,251,6,0x00FF00; - set .@compass_check,0; + .@compass_check = 0; mes "[Einbech Guide]"; mes "Okay, the marks from"; mes "your Mini-Map have been"; @@ -339,7 +339,7 @@ einbech,67,37,4 script Guide#4ein::EinGuide2 4_M_EIN_SOLDIER,{ mes "enjoy your travels"; mes "here in Einbech."; close2; - set .@loop1,0; + .@loop1 = 0; } } cutin "ein_soldier",255; |