diff options
Diffstat (limited to 'npc/pre-re/quests/collection/quest_pecopeco.txt')
-rw-r--r-- | npc/pre-re/quests/collection/quest_pecopeco.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/pre-re/quests/collection/quest_pecopeco.txt b/npc/pre-re/quests/collection/quest_pecopeco.txt index 32c595c92..feebff009 100644 --- a/npc/pre-re/quests/collection/quest_pecopeco.txt +++ b/npc/pre-re/quests/collection/quest_pecopeco.txt @@ -38,7 +38,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "[Gregor]"; mes "Have you finished hunting the 50 Peco Pecos?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Gregor]"; mes "Hmm, I don't think you've hunted 50 yet..."; @@ -52,7 +52,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ 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 "[Gregor]"; mes "Ok then, well come back here if you change your mind."; @@ -79,7 +79,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "[Gregor]"; mes "Have you finished hunting the 50 Peco Pecos?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Gregor]"; mes "Hmm, I don't think you've hunted 100 yet..."; @@ -93,7 +93,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ 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 "[Gregor]"; mes "Ok then, well come back here if you change your mind."; @@ -121,7 +121,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "[Gregor]"; mes "Have you finished hunting the 150 Peco Pecos?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Gregor]"; mes "Hmm, I don't think you've hunted 150 yet..."; @@ -135,7 +135,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ 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 "[Gregor]"; mes "Ok then, well come back here if you change your mind."; @@ -177,7 +177,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "[Gregor]"; mes "Can you do me a favor please?"; next; - switch(select("What kind of favor?:No")) { + switch(select("What kind of favor?", "No")) { case 1: mes "[Gregor]"; mes "I am so afraid that these Peco Pecos will hurt me for my, uh, researching activities."; @@ -187,13 +187,13 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "I think I'll feel safer..."; mes "Please..."; next; - switch(select("Gather Items:Hunt Peco Pecos:Cancel")) { + switch(select("Gather Items", "Hunt Peco Pecos", "Cancel")) { case 1: // Item turn in mes "[Gregor]"; mes "I need some ^FF0000Bill of Birds^000000 for my, uh, research..."; next; - switch(select("I have some Bill of Birds:What did you need?")) { + switch(select("I have some Bill of Birds", "What did you need?")) { case 1: if (countitem(Bill_Of_Birds) > 24) { mes "[Gregor]"; @@ -224,7 +224,7 @@ moc_fild02,74,329,3 script Gregor#PecoPeco_Hunt 4W_M_01,{ mes "Ah, ok I think you can help me out by hunting some Peco Pecos."; mes "How many would you like to hunt?"; next; - switch(select("50 Peco Pecos:100 Peco Pecos:150 Peco Pecos")) { + switch(select("50 Peco Pecos", "100 Peco Pecos", "150 Peco Pecos")) { case 1: mes "[Gregor]"; mes "Come back when you've finished your task and I will give you a small reward."; |