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/quests/okolnir.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/quests/okolnir.txt')
-rw-r--r-- | npc/quests/okolnir.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/quests/okolnir.txt b/npc/quests/okolnir.txt index 67582267e..920c8b8ce 100644 --- a/npc/quests/okolnir.txt +++ b/npc/quests/okolnir.txt @@ -50,7 +50,7 @@ function script F_Okolnir { mes "This castle has a hidden secret."; mes "That is the ^4d4dff'Okolnir'^000000."; next; - switch(select("About Okolnir.:Go to Okolnir.:Cancel.")) { + switch(select("About Okolnir.", "Go to Okolnir.", "Cancel.")) { case 1: mes "[Guide]"; mes "Okolnir is a kind of virtual realm..."; @@ -88,7 +88,7 @@ function script F_Okolnir { mes "You can enter Okolnir now...."; mes "Do you want to go there?"; next; - switch(select("Sure let's go there.:No.")) { + switch(select("Sure let's go there.", "No.")) { case 1: if (countitem(Crystal_Key)) delitem Crystal_Key,countitem(Crystal_Key); mes "[Guide]"; @@ -119,7 +119,7 @@ function script F_Okolnir { mes "... OK..."; mes "Good luck."; next; - switch(select("Enter now.:No.")) { + switch(select("Enter now.", "No.")) { case 1: if (countitem(Crystal_Key) > 0) { delitem Crystal_Key,countitem(Crystal_Key); @@ -214,7 +214,7 @@ que_qsch05,345,23,0 warp Gate02#gq_sch05 1,1,schg_cas05,369,306 mes "[Wish Maiden]"; mes "Are you ready to endure the trials to get the Goddess' glory?"; next; - switch(select("Yes, I am:Sorry, I'll try later")) { + switch(select("Yes, I am", "Sorry, I'll try later")) { case 1: cutin "wish_maiden12",1; mes "[Wish Maiden]"; @@ -239,7 +239,7 @@ que_qsch05,345,23,0 warp Gate02#gq_sch05 1,1,schg_cas05,369,306 mes "[Wish Maiden]"; mes "I will open the gate of Okolnir if your members are ready."; next; - switch(select("We are ready.:We need more time.")) { + switch(select("We are ready.", "We need more time.")) { case 1: .@saram = getmapusers("que_q"+.@sub$); if (((.@saram > 15) && (.@saram < 21))) { |