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/BuwayaCave.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/BuwayaCave.txt')
-rw-r--r-- | npc/re/instances/BuwayaCave.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/instances/BuwayaCave.txt b/npc/re/instances/BuwayaCave.txt index 139d3acc3..03de64375 100644 --- a/npc/re/instances/BuwayaCave.txt +++ b/npc/re/instances/BuwayaCave.txt @@ -60,7 +60,7 @@ ma_fild02,312,317,5 script Guard#buwaya_cave 4_MAL_SOLDIER,{ mes "If you dont have any business here, please go back."; next; while(1) { - switch(select("Why is it so dangerous?:I'm here to hunt down Buwaya.:End conversation.")) { + switch(select("Why is it so dangerous?", "I'm here to hunt down Buwaya.", "End conversation.")) { case 1: mes "[Guard]"; mes "Recently, there has been a case"; @@ -152,7 +152,7 @@ OnTouch: erasequest 4229; // fall through } - switch(select("Enter.:Turn back.")) { + switch(select("Enter.", "Turn back.")) { case 1: if( has_instance("1@ma_c") == "" ) { mes "The memorial dungeon Buwaya Cave does not exist."; @@ -200,7 +200,7 @@ OnTouch: mes "and new people got caught."; mes "We will be stuck in here for the rest of our lives."; next; - switch(select("Get me outta here!!:Ca...can't escape?")) { + switch(select("Get me outta here!!", "Ca...can't escape?")) { case 1: mes "[Kidnapped Residents]"; mes "We don't have enough power to destroy it but Buwaya has a weakness."; @@ -231,7 +231,7 @@ OnEnable: mes "Ahaa! I wish I had a little more power..."; mes "I know its weakness..."; next; - switch(select("Tell me.:Do you really know?")) { + switch(select("Tell me.", "Do you really know?")) { case 1: mes "[Kidnapped Residents]"; mes "Are you sure you can do it...?"; @@ -454,7 +454,7 @@ OnEnable: OnTouch: mes "Would like to go out?"; next; - if(select("Yes!:No, I will stay.") == 1) + if(select("Yes!", "No, I will stay.") == 1) warp "ma_fild02",315,315; close; } |