summaryrefslogtreecommitdiff
path: root/npc/airports/yuno.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/yuno.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/yuno.txt')
-rw-r--r--npc/airports/yuno.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/airports/yuno.txt b/npc/airports/yuno.txt
index dbda7d5e3..56e5bc97e 100644
--- a/npc/airports/yuno.txt
+++ b/npc/airports/yuno.txt
@@ -37,14 +37,14 @@ y_airport,143,43,5 script Airport Staff#y_air1a::y_airport1 4_F_01,{
mes "and international flights to Izlude and Rachel.";
mes "How may I be of service?";
next;
- if (select("Board the Airship.:Cancel.") == 1) {
+ if (select("Board the Airship.", "Cancel.") == 1) {
mes "[Airport Staff]";
mes "The boarding fee for all";
mes "flights is 1,200 zeny. If you";
mes "use a Free Ticket for Airship,";
mes "the boarding fee will be waived.So would you like to depart?";
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 "y_airport",148,51;
@@ -77,14 +77,14 @@ y_airport,143,49,3 script Arrival Staff#y_air2a::y_airport2 4_F_01,{
mes "flight, let me guide you to the main terminal. 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 "[Airport Staff]";
mes "Once you're in the main terminal, you must pay the fee once again";
mes "to board a departing Airship. You should only exit if your intended";
mes "destination is Juno. Proceed to";
mes "exit to the main terminal?";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
warp "y_airport",142,40;
end;
}
@@ -108,7 +108,7 @@ y_airport,145,63,5 script Domestic Boarding 4_F_02,{
mes "please let me guide you to that";
mes "Airship's boarding area.";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
warp "yuno",59,244;
end;
}
@@ -128,7 +128,7 @@ y_airport,140,63,5 script International Boarding 4_F_02,{
mes "If so, let me guide";
mes "you to the boarding area.";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
warp "yuno",47,244;
end;
}