diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:35:36 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:44:45 +0530 |
commit | 4d139eb924e63f88065071de722ddc39465cd5e3 (patch) | |
tree | f25d5322e19e1ebd060064786e5d9c6e1a5ef572 /npc/quests/guildrelay.txt | |
parent | 57ed698dc135be8222e127fe8e1d02c456e7f8b5 (diff) | |
download | hercules-4d139eb924e63f88065071de722ddc39465cd5e3.tar.gz hercules-4d139eb924e63f88065071de722ddc39465cd5e3.tar.bz2 hercules-4d139eb924e63f88065071de722ddc39465cd5e3.tar.xz hercules-4d139eb924e63f88065071de722ddc39465cd5e3.zip |
Script Standardization: changed select format in quests folder
Diffstat (limited to 'npc/quests/guildrelay.txt')
-rw-r--r-- | npc/quests/guildrelay.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/guildrelay.txt b/npc/quests/guildrelay.txt index 0968c9ae0..3d3358005 100644 --- a/npc/quests/guildrelay.txt +++ b/npc/quests/guildrelay.txt @@ -371,7 +371,7 @@ mes "You look as though"; mes "something is on your mind."; next; - switch(select("N-no, nothing.:I want to take a lesson.")) { + switch(select("N-no, nothing.", "I want to take a lesson.")) { case 1: mes "[" + .@name$ + "]"; mes "Hm? That's strange."; @@ -675,7 +675,7 @@ mes "so that you will be better"; mes "able to protect the weak."; next; - switch(select("I want to take the test.:Let me think about it.")) { + switch(select("I want to take the test.", "Let me think about it.")) { case 1: mes "[" + .@name$ + "]"; mes "Is that so? In this test,"; @@ -1214,7 +1214,7 @@ mes "Have you come here"; mes "as an invited guest?"; next; - switch(select("No, not really...:I was invited by the guild master.")) { + switch(select("No, not really...", "I was invited by the guild master.")) { case 1: mes "[" + .@name$ + "]"; mes "Oh, really?"; @@ -1604,7 +1604,7 @@ mes "your Falcon for the"; mes "sake of your guild."; next; - switch(select("Donate Falcon:No way!")) { + switch(select("Donate Falcon", "No way!")) { case 1: if (checkfalcon()) { mes "[" + .@name$ + "]"; |