summaryrefslogtreecommitdiff
path: root/npc/airports/lighthalzen.txt
diff options
context:
space:
mode:
authorDastgir <dastgirpojee@rocketmail.com>2016-01-16 20:20:50 +0530
committerDastgir <dastgirpojee@rocketmail.com>2016-01-16 20:20:50 +0530
commitaaf3ea6ecd4d28714b8e4028acc730d18366630e (patch)
treec0e77334de9c7f1aa75396281c4b539c9dd3dadc /npc/airports/lighthalzen.txt
parent9e48e2aebd5777179bd2fc2f45a58f8ad17b1373 (diff)
downloadhercules-aaf3ea6ecd4d28714b8e4028acc730d18366630e.tar.gz
hercules-aaf3ea6ecd4d28714b8e4028acc730d18366630e.tar.bz2
hercules-aaf3ea6ecd4d28714b8e4028acc730d18366630e.tar.xz
hercules-aaf3ea6ecd4d28714b8e4028acc730d18366630e.zip
Script Standardization: changed select format in airports folder
Diffstat (limited to 'npc/airports/lighthalzen.txt')
-rw-r--r--npc/airports/lighthalzen.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/airports/lighthalzen.txt b/npc/airports/lighthalzen.txt
index 959da9c96..89935a24a 100644
--- a/npc/airports/lighthalzen.txt
+++ b/npc/airports/lighthalzen.txt
@@ -38,14 +38,14 @@ lhz_airport,143,43,5 script Airport Staff#lhz_air1a::lhz_airport1 4_F_01,{
mes "where we offer nonstop";
mes "flights to Einbroch, Juno and Hugel.";
next;
- if (select("Board the Airship.:Cancel.") == 1) {
+ if (select("Board the Airship.", "Cancel.") == 1) {
mes "[Airport Staff]";
mes "The boarding fee is";
mes "1,200 zeny, but you can";
mes "waive the fee if you redeem";
mes "a Free Ticket for Airship.";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
if (countitem(Free_Flying_Ship_Ticket) > 0) {
delitem Free_Flying_Ship_Ticket,1;
warp "lhz_airport",148,51;
@@ -80,14 +80,14 @@ lhz_airport,143,49,3 script Arrival Staff#lhz_air2a::lhz_airport2 4_F_01,{
mes "main terminal if you are arriving from your flight. Otherwise, please";
mes "board the departing Airship to reach your intended destination.";
next;
- if (select("Exit to main terminal.:Cancel.") == 1) {
+ if (select("Exit to main terminal.", "Cancel.") == 1) {
mes "[Arrival Staff]";
mes "Once you're in the main terminal, you will need to pay the fee again";
mes "to board an Airship. You should";
mes "only exit if Lighthalzen is your intended destination. Shall we";
mes "proceed to the main terminal?";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
warp "lhz_airport",142,40;
end;
}