summaryrefslogtreecommitdiff
path: root/npc/merchants/dye_maker.txt
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-02-07 01:23:46 +0100
committerHaru <haru@dotalux.com>2016-02-07 01:23:46 +0100
commit1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch)
tree4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/merchants/dye_maker.txt
parente68aa1f74d315f7bf24d7c8829002d0031b23539 (diff)
parent0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff)
downloadhercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz
hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2
hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz
hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
Diffstat (limited to 'npc/merchants/dye_maker.txt')
-rw-r--r--npc/merchants/dye_maker.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/merchants/dye_maker.txt b/npc/merchants/dye_maker.txt
index a99fbd9e0..260a7c852 100644
--- a/npc/merchants/dye_maker.txt
+++ b/npc/merchants/dye_maker.txt
@@ -50,12 +50,12 @@ morocc_in,146,99,3 script Java Dullihan 1_M_MERCHANT,{
mes "Wow...";
mes "Such a nice day. Days like this are perfect to make dyes.";
next;
- switch(select("Talk:Make Dyestuffs:Cancel")) {
+ switch(select("Talk", "Make Dyestuffs", "Cancel")) {
case 1:
mes "[Dye Maker Java Dullihan]";
mes "Erm, I don't really have much to say to you. But, if you would like me to tell you about my life, I can do that. It's a little long and boring, but would you like to listen?";
next;
- if (select("Listen:Don't Listen") == 1) {
+ if (select("Listen", "Don't Listen") == 1) {
mes "[Dye Maker Java Dullihan]";
mes "As long as I can remember, my father has been making dyes. He used to spend countless hours making dyes of different colors. Even when my mother passed away, he never stopped.";
next;
@@ -97,7 +97,7 @@ morocc_in,146,99,3 script Java Dullihan 1_M_MERCHANT,{
mes "[Dye Maker Java Dullihan]";
mes "The color of the dye is special, made with all my heart and soul.";
next;
- switch(select("Scarlet Dyestuffs:Lemon Dyestuffs:Cobaltblue Dyestuffs:Darkgreen Dyestuffs:Orange Dyestuffs:Violet Dyestuffs:White Dyestuffs:Black Dyestuffs:Cancel")) {
+ switch(select("Scarlet Dyestuffs", "Lemon Dyestuffs", "Cobaltblue Dyestuffs", "Darkgreen Dyestuffs", "Orange Dyestuffs", "Violet Dyestuffs", "White Dyestuffs", "Black Dyestuffs", "Cancel")) {
case 1: callsub S_MakeDye,1,1; break;
case 2: callsub S_MakeDye,2,1; break;
case 3: callsub S_MakeDye,3,2; break;
@@ -187,7 +187,7 @@ S_MakeDye:
case 4: mes "Okay! I believe you would have everything prepared. Would you like to start the process?"; break;
}
next;
- if (select("Make Dyestuffs:Cancel") == 1) {
+ if (select("Make Dyestuffs", "Cancel") == 1) {
.@size = getarraysize(.@item);
// check requirements
for (.@i = 0; .@i < .@size; ++.@i)