diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:59:05 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 18:23:15 +0530 |
commit | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (patch) | |
tree | 58a74fe4351a6b1c95756bed7473d0fcecf0c9ed /npc/re/instances/OctopusCave.txt | |
parent | 563d0c59e2afa7d63f8fab5faeb79c80d63a34a9 (diff) | |
download | hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.gz hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.bz2 hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.xz hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.zip |
Script Standardization: changed select format in RE folder
Diffstat (limited to 'npc/re/instances/OctopusCave.txt')
-rw-r--r-- | npc/re/instances/OctopusCave.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/re/instances/OctopusCave.txt b/npc/re/instances/OctopusCave.txt index da0df4ac6..9e62c9b3c 100644 --- a/npc/re/instances/OctopusCave.txt +++ b/npc/re/instances/OctopusCave.txt @@ -61,7 +61,7 @@ mal_dun01,151,235,5 script Starfish 4_ASTER,{ mes "But someday this cave must be sealed forever, hehe!"; next; while(1) { - switch(select("Ask what's going on.:Ask to open the gate.:Go to other location.")) { + switch(select("Ask what's going on.", "Ask to open the gate.", "Go to other location.")) { case 1: mes "[Starfish]"; mes "Lately, our Starfish lady is"; @@ -145,7 +145,7 @@ mal_dun01,153,237,5 script Weird Entrance CLEAR_NPC,{ mes "There is a strange entrance"; mes "blocked roughly with some boards."; next; - switch(select("Go in.:Stop.")) { + switch(select("Go in.", "Stop.")) { case 1: if (countitem(Octopus_Hunt_Stick)) { if (has_instance("1@cash") == "") { @@ -710,7 +710,7 @@ OnInstanceInit: OnTouch: mes "Do you want to go out from the octopus dungeon?"; next; - if(select("No!:Yes!") == 2) + if(select("No!", "Yes!") == 2) warp "mal_dun01",153,233; close; } |