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/jobs/3-1/mechanic.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/jobs/3-1/mechanic.txt')
-rw-r--r-- | npc/re/jobs/3-1/mechanic.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/jobs/3-1/mechanic.txt b/npc/re/jobs/3-1/mechanic.txt index 4f74cb051..10495572e 100644 --- a/npc/re/jobs/3-1/mechanic.txt +++ b/npc/re/jobs/3-1/mechanic.txt @@ -131,7 +131,7 @@ yuno,129,156,3 script Chainheart 4_M_DOCTOR,{ } else if (job__mechanic == 2) { mes "I think I've done all the explanations, is there anything else you want to know?"; next; - switch(select("I want to know more.:Nothing.")) { + switch(select("I want to know more.", "Nothing.")) { case 1: mes "[Chainheart]"; mes "Um..? You want to know more about magic machinery. Is that it?"; @@ -342,7 +342,7 @@ jupe_cave,37,55,5 script Scholar#Mechanic 4_M_ALCHE_D,{ mes "to go to the midway point"; mes "at Juperos?"; next; - switch(select("I am ready!:Not yet")) { + switch(select("I am ready!", "Not yet")) { case 1: mes "[Scholar]"; mes "Uh... you are acting so firmly that I regret a little that I haven't gone there."; @@ -454,7 +454,7 @@ jupe_core2,149,273,3 script Ghostfire#1 4_NFWISP,{ mes "If you focus on me,"; mes "you might get attacked."; next; - if(select("Well then, later.:Focus.") == 1) close; + if(select("Well then, later.", "Focus.") == 1) close; mes "[?]"; mes "I was once a human scholar."; mes "I wanted to know the limitation of science that humankind didn't know of, so I learned a lot of things, studied,"; @@ -507,7 +507,7 @@ jupe_core2,53,75,3 script Ghostfire#2 4_NFWISP,{ mes "If you focus on me,"; mes "you might get attacked."; next; - if(select("Well then, later:Focus") == 1) close; + if(select("Well then, later", "Focus") == 1) close; mes "[?]"; mes "When I had a body"; mes "I wanted to prove the"; @@ -569,7 +569,7 @@ jupe_core2,242,62,3 script Ghostfire#3 4_NFWISP,{ mes "If you focus on me,"; mes "you might get attacked."; next; - if(select("Well then, later:Focus") == 1) close; + if(select("Well then, later", "Focus") == 1) close; mes "[?]"; mes "I wasn't satisfied with my success so I came back here time and time again."; next; |