diff options
Diffstat (limited to 'npc/other/powernpc.txt')
-rw-r--r-- | npc/other/powernpc.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/other/powernpc.txt b/npc/other/powernpc.txt index b1bdc8345..b784507e6 100644 --- a/npc/other/powernpc.txt +++ b/npc/other/powernpc.txt @@ -56,7 +56,7 @@ gonryun,180,118,4 script Iron man#gnp 4_M_03,{ mes "Oh~ you look strong!"; mes "Wanna try?"; next; - switch(select("Why not?:?????:No thanks.")){ + switch(select("Why not?", "?????", "No thanks.")){ case 1: mes "[Songmoodoo]"; mes "Haha~ I knew you would try."; @@ -88,7 +88,7 @@ gonryun,180,118,4 script Iron man#gnp 4_M_03,{ mes "Good to see you again!"; mes "Wanna go??"; next; - if (select("Sure:Maybe next time") == 1) { + if (select("Sure", "Maybe next time") == 1) { mes "[Songmoodoo]"; mes "Good! Haha."; mes "I like your confidence."; @@ -151,7 +151,7 @@ gon_test,50,14,4 script Administrator#gnp 8_M_TWSOLDIER,{ mes "Remember, you have to pay"; mes "500z to fight."; next; - if (select("Yes, let me fight!:One moment, please.") == 2) { + if (select("Yes, let me fight!", "One moment, please.") == 2) { mes "[Administrator]"; mes "Ok, see you later."; close; @@ -185,7 +185,7 @@ gon_test,42,89,4 script Summoner#gnp 4_M_TWBOY,{ mes "Welcome."; mes "Which monster will you recall?"; next; - .@gnpGroup = select("Group 1:Group 2:Group 3:Group 4:Group 5:Group 6:Group 7:Group 8:Group 9:Group 10:Group 11"); + .@gnpGroup = select("Group 1", "Group 2", "Group 3", "Group 4", "Group 5", "Group 6", "Group 7", "Group 8", "Group 9", "Group 10", "Group 11"); .@gnpGroupMob$ = .gnpMobsName$[(.@gnpGroup-1)*6]; for (.@i = 1; .@i < 6; ++.@i) .@gnpGroupMob$ += ":" + .gnpMobsName$[(.@gnpGroup-1)*6 + .@i]; @@ -254,7 +254,7 @@ gon_test,46,14,3 script Guide of field of fight 4_F_TWGIRL,{ mes "This is a field of fight."; mes "Got any questions?"; next; - switch(select("A field of fight?:You got a minute lady?:Get in.:Out.:Nope.")){ + switch(select("A field of fight?", "You got a minute lady?", "Get in.", "Out.", "Nope.")){ case 1: mes "[SongHeeYeon]"; mes "Just like the name of this place,"; @@ -300,7 +300,7 @@ gon_test,70,103,3 script ChowAnAn#gnp 4_F_TWMIDWOMAN,{ mes "[ChowAnAn]"; mes "Want to go back?"; next; - if (select("Yes.:No.") == 1) { + if (select("Yes.", "No.") == 1) { mes "[ChowAnAn]"; mes "Thank you."; mes "Please come again."; |