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/pre-re/quests/collection/quest_zhupolong.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/pre-re/quests/collection/quest_zhupolong.txt')
-rw-r--r-- | npc/pre-re/quests/collection/quest_zhupolong.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/pre-re/quests/collection/quest_zhupolong.txt b/npc/pre-re/quests/collection/quest_zhupolong.txt index 02a2366aa..87c1fc337 100644 --- a/npc/pre-re/quests/collection/quest_zhupolong.txt +++ b/npc/pre-re/quests/collection/quest_zhupolong.txt @@ -39,7 +39,7 @@ lou_dun02,161,264,4 script Dragon Hunter 4_M_JOB_HUNTER,{ mes "[Dragon Hunter]"; mes "Have you finished hunting the 50 Zhu Po Long?"; next; - switch(select("Yes:No:I want to quit")) { + switch(select("Yes", "No", "I want to quit")) { case 1: mes "[Dragon Hunter]"; mes "Hmm, I don't think you've hunted 50 yet."; @@ -53,7 +53,7 @@ lou_dun02,161,264,4 script Dragon Hunter 4_M_JOB_HUNTER,{ 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 "[Dragon Hunter]"; mes "Ok then, well come back here if you change your mind."; @@ -78,7 +78,7 @@ lou_dun02,161,264,4 script Dragon Hunter 4_M_JOB_HUNTER,{ mes "You are here to help me right?"; mes "If not, i don't know what to do with the Monsters in this Place!"; next; - switch(select("Sure:No")) { + switch(select("Sure", "No")) { case 1: mes "[Dragon Hunter]"; mes "Great! I knew the moment i saw you that i can count on you!"; @@ -88,7 +88,7 @@ lou_dun02,161,264,4 script Dragon Hunter 4_M_JOB_HUNTER,{ mes "[Dragon Hunter]"; mes "So, would you still like to help me?"; next; - switch(select("Sure:Cancel")) { + switch(select("Sure", "Cancel")) { case 1: if (BaseLevel > 90) { mes "[Dragon Hunter]"; |