diff options
Diffstat (limited to 'npc/pre-re/quests/collection/quest_creamy.txt')
-rw-r--r-- | npc/pre-re/quests/collection/quest_creamy.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/pre-re/quests/collection/quest_creamy.txt b/npc/pre-re/quests/collection/quest_creamy.txt index e768e1c2c..41c9f26ca 100644 --- a/npc/pre-re/quests/collection/quest_creamy.txt +++ b/npc/pre-re/quests/collection/quest_creamy.txt @@ -38,7 +38,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "[Laertes]"; mes "Have you finished hunting the 50 Creamys?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Laertes]"; mes "Hmm, I don't think you've hunted 50 yet..."; @@ -52,7 +52,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "Are you sure that you want to stop hunting?"; mes "Any progress that you've made will be erased"; next; - switch(select("Yes:No")) { + switch(select("Yes", "No")) { case 1: mes "[Laertes]"; mes "Ok then, well come back here if you change your mind."; @@ -78,7 +78,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "[Laertes]"; mes "Have you finished hunting the 50 Creamys?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Laertes]"; mes "Hmm, I don't think you've hunted 100 yet..."; @@ -92,7 +92,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "Are you sure that you want to stop hunting?"; mes "Any progress that you've made will be erased"; next; - switch(select("Yes:No")) { + switch(select("Yes", "No")) { case 1: mes "[Laertes]"; mes "Ok then, well come back here if you change your mind."; @@ -119,7 +119,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "[Laertes]"; mes "Have you finished hunting the 150 Creamys?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Laertes]"; mes "Hmm, I don't think you've hunted 150 yet..."; @@ -133,7 +133,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "Are you sure that you want to stop hunting?"; mes "Any progress that you've made will be erased"; next; - switch(select("Yes:No")) { + switch(select("Yes", "No")) { case 1: mes "[Laertes]"; mes "Ok then, well come back here if you change your mind."; @@ -164,19 +164,19 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "Good Morning!"; mes "Perhaps you could help me?"; next; - switch(select("Sure:No")) { + switch(select("Sure", "No")) { case 1: mes "[Laertes]"; mes "I work for an apothecary in Prontera."; mes "I come here to collect materials for medicine."; next; - switch(select("Gather Items:Hunt Creamys:Cancel")) { + switch(select("Gather Items", "Hunt Creamys", "Cancel")) { case 1: // Item turn in mes "[Laertes]"; mes "I need to have a good supply of ^FF0000Powder of Butterfly^000000"; next; - switch(select("I have Powder of Butterfly:What did you need?")) { + switch(select("I have Powder of Butterfly", "What did you need?")) { case 1: /* if (checkweight(Orange_Potion,5) == 0) { @@ -217,7 +217,7 @@ prt_fild04,356,148,3 script Laertes#Creamy_Hunt 4_M_NFMAN,{ mes "Ah, ok I think you can help me out by hunting some Creamys."; mes "How many would you like to hunt?"; next; - switch(select("50 Creamys:100 Creamys:150 Creamys")) { + switch(select("50 Creamys", "100 Creamys", "150 Creamys")) { case 1: mes "[Laertes]"; mes "Come back when you've finished your task and I will give you a small reward."; |