diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:59:05 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 18:23:15 +0530 |
commit | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (patch) | |
tree | 58a74fe4351a6b1c95756bed7473d0fcecf0c9ed /npc/re/merchants/card_separation.txt | |
parent | 563d0c59e2afa7d63f8fab5faeb79c80d63a34a9 (diff) | |
download | hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.gz hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.bz2 hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.xz hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.zip |
Script Standardization: changed select format in RE folder
Diffstat (limited to 'npc/re/merchants/card_separation.txt')
-rw-r--r-- | npc/re/merchants/card_separation.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/merchants/card_separation.txt b/npc/re/merchants/card_separation.txt index 0bf72f884..8c62b3e80 100644 --- a/npc/re/merchants/card_separation.txt +++ b/npc/re/merchants/card_separation.txt @@ -176,7 +176,7 @@ else .@menu$ += "^777777Socket "+(.@i+1)+" - No card^000000:"; } - .@i = select("Stop the work:"+.@menu$); + .@i = select("Stop the work:"+ .@menu$); switch(.@i) { case 1: mes .@n$; @@ -221,7 +221,7 @@ mes .@n$; mes "This is pretty old equipment. There is a high rate of destroying the cards or equipment during the work. Are you sure you want to continue?"; next; - if(select("Next time...:Continue") == 1) { + if(select("Next time...", "Continue") == 1) { mes .@n$; mes "Whenever you need the work, visit me here."; close; @@ -240,7 +240,7 @@ mes .@n$; mes "If you use the Premium Lubricant, the rate of destruction will be decreased highly, but I can't give you a 100% guarantee. Are you sure you want to continue?"; next; - if(select("Next time...:Continue") == 1) { + if(select("Next time...", "Continue") == 1) { mes .@n$; mes "Whenever you need the work, visit me here."; close; @@ -259,7 +259,7 @@ mes .@n$; mes "If you use the Ordinary Lubricant, the rate of destruction will be decreased highly, but I can't give you a 100% guarantee. Are you sure you want to continue?"; next; - if(select("Next time...:Continue") == 1) { + if(select("Next time...", "Continue") == 1) { mes .@n$; mes "Whenever you need the work, visit me here."; close; @@ -274,7 +274,7 @@ mes .@n$; mes "This equipment contains a precious MVP card. This card can't be separated with lubricant. If you bring the super surfactant ^0000ffSillit Pong^000000, I will be able to work."; next; - switch(select("Next time...:I have a Sillit Pong.")) { + switch(select("Next time...", "I have a Sillit Pong.")) { case 1: mes .@n$; mes "Whenever you need the work, visit me here."; @@ -296,7 +296,7 @@ .@menu$ = "I got it. Just do it quickly!"; } next; - switch(select("Next time...:"+.@menu$)) { + switch(select("Next time...:"+ .@menu$)) { case 1: mes .@n$; mes "Whenever you need the work, visit me here."; |