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/quests/eden/eden_common.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/quests/eden/eden_common.txt')
-rw-r--r-- | npc/re/quests/eden/eden_common.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/quests/eden/eden_common.txt b/npc/re/quests/eden/eden_common.txt index 14649eea6..9100e74bc 100644 --- a/npc/re/quests/eden/eden_common.txt +++ b/npc/re/quests/eden/eden_common.txt @@ -49,7 +49,7 @@ moc_para01,27,35,5 script Secretary Lime Evenor 4_F_EDEN_OFFICER,{ mes "Hello. Can I help you?"; next; while (1) { - switch (select("What is Eden group?:Join the Eden Group.:Register new mission.:Search for missions.:Cancel.")) { + switch (select("What is Eden group?", "Join the Eden Group.", "Register new mission.", "Search for missions.", "Cancel.")) { case 1: mes "[Lime Evenor]"; mes "Eden Group is a group that helps people who are suffering from distresses in Rune-Midgard."; @@ -72,7 +72,7 @@ moc_para01,27,35,5 script Secretary Lime Evenor 4_F_EDEN_OFFICER,{ mes "You can be a Eden's member by simply registering with me."; mes "Would you like to join Eden Group?"; next; - switch (select("Yes, I want to join.:No, I don't want to join.")) { + switch (select("Yes, I want to join.", "No, I don't want to join.")) { case 1: mes "[Lime Evenor]"; mes "Aright. Excellent! Please write down your name here."; @@ -125,7 +125,7 @@ moc_para01,27,35,5 script Secretary Lime Evenor 4_F_EDEN_OFFICER,{ mes "[Lime Evenor]"; mes "Do you want to register some missions that you want us to do?"; next; - if(select("Yes, I want to register.:No, I don't.") == 1) { + if(select("Yes, I want to register.", "No, I don't.") == 1) { mes "[Lime Evenor]"; mes "Alrigh. Please write down your name on it."; input .@input$; @@ -214,7 +214,7 @@ moc_para01,27,35,5 script Secretary Lime Evenor 4_F_EDEN_OFFICER,{ mes "Would you like to be a problem solver?"; mes "Eden group is here to solve your problem."; next; - switch (select("Move to Eden Group.:Don't want to talk anymore.")) { + switch (select("Move to Eden Group.", "Don't want to talk anymore.")) { case 1: mes "[Eden Teleport Officer]"; mes "Let's go to our secret base!"; @@ -311,7 +311,7 @@ moc_para01,47,39,3 script #warp_2_pass HIDDEN_NPC,{ mes "Oh, it is an exclusive place only for Eden's members."; mes "If you are a member, you can come whenever you want!"; next; - switch (select("Enter.:Don't Enter.")) { + switch (select("Enter.", "Don't Enter.")) { case 1: mes "This door is beautifully decorated but seems a little bit too heavy."; close2; |