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/instances/BakonawaLake.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/instances/BakonawaLake.txt')
-rw-r--r-- | npc/re/instances/BakonawaLake.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/re/instances/BakonawaLake.txt b/npc/re/instances/BakonawaLake.txt index e1937f572..8e1afe859 100644 --- a/npc/re/instances/BakonawaLake.txt +++ b/npc/re/instances/BakonawaLake.txt @@ -73,12 +73,12 @@ ma_scene01,174,179,4 script Taho 4_M_DEWZATIMAN,{ mes "[Taho]"; mes "Are you the leader of the Bakonawa slayers? The road is not well so we have to go down the cliff with a rope, is that OK?"; next; - .@i = select("Please weave a rope.:Now I will go down.:Cancel."); + .@i = select("Please weave a rope.", "Now I will go down.", "Cancel."); } else { mes "[Taho]"; mes "You came for slaying Bakonawa. The leader of your party has to help me weaving the rope for going down."; next; - .@i = select(":Now I will go down.:Cancel."); + .@i = select("", "Now I will go down.", "Cancel."); } switch(.@i) { case 1: @@ -148,7 +148,7 @@ sec_in02,26,26,4 script Bakonawa's Rage 4_M_DEWZATIMAN,{ mes "[Taho]"; mes "Now I will make Bakonawa spring out from the lake."; next; - switch(select("Hold on! I'm not ready yet!:Let's do it!")) { + switch(select("Hold on! I'm not ready yet!", "Let's do it!")) { case 1: mes "[Taho]"; mes "Oh... alright... tell me when you are ready."; @@ -532,7 +532,7 @@ OnTimer10000: mes "[Taho]"; mes "Are we going to try again?"; next; - switch(select("Hold on a sec!:Of course! We cannot stand back now!")) { + switch(select("Hold on a sec!", "Of course! We cannot stand back now!")) { case 1: mes "[Taho]"; mes "AWW... I almost brought him out."; |