diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/re/cities/dicastes.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-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/re/cities/dicastes.txt')
-rw-r--r-- | npc/re/cities/dicastes.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/cities/dicastes.txt b/npc/re/cities/dicastes.txt index 91b1f249b..6975e599a 100644 --- a/npc/re/cities/dicastes.txt +++ b/npc/re/cities/dicastes.txt @@ -268,7 +268,7 @@ dic_in01,91,113,5 script Suspicious Piom#a 4_MAN_PIOM6,{ mes "Have you heard of the"; mes "rumor about Ahat?"; next; - if(select("Nope!:You first.") == 1) { + if(select("Nope!", "You first.") == 1) { mes "[Suspicious Piom]"; mes "Never mind."; close; @@ -279,7 +279,7 @@ dic_in01,91,113,5 script Suspicious Piom#a 4_MAN_PIOM6,{ mes "You first."; mes "You heard of the rumor, right?"; next; - if(select("Something is fishy?:If you're not going to spill it, me neither!") == 1) { + if(select("Something is fishy?", "If you're not going to spill it, me neither!") == 1) { mes "[Suspicious Piom]"; mes "I'm only a very curious"; mes "ordinary Piom."; @@ -292,7 +292,7 @@ dic_in01,91,113,5 script Suspicious Piom#a 4_MAN_PIOM6,{ mes "¡ó¢³¡ó ¡ó ¡ó¡þ¡ö"; mes "¡õ ¢³¢²¡÷ ¡ó¡ó"; next; - if(select("Can't tell what it means:Is it a curse??") == 2) { + if(select("Can't tell what it means", "Is it a curse??") == 2) { mes "[Suspicious Piom]"; mes "Too bad."; close; @@ -631,7 +631,7 @@ dicastes01,191,202,4 script Complaining Galten#fihs 4_MAN_GALTUN,{ mes "Have you ever talked"; mes "to him?"; next; - if(select("No:Yes") == 1) { + if(select("No", "Yes") == 1) { mes "[Complaining Galten]"; mes "Then you don't know about the legend behind the statue?"; mes "Then, I don't know what to talk about with you."; @@ -667,7 +667,7 @@ dicastes01,202,197,4 script Crazy Venknick#fihsing1 4_MAN_BENKUNI,{ mes "At only 5000 Zeny"; mes "I will tell you the sad legend behind that statue."; next; - if(select("Give 5000 Zeny.:Don't give 5000 Zeny.") == 2) { + if(select("Give 5000 Zeny.", "Don't give 5000 Zeny.") == 2) { mes "[Crazy Venknick]"; mes "Don't come back with regrets."; close; |