diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:20:50 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:20:50 +0530 |
commit | aaf3ea6ecd4d28714b8e4028acc730d18366630e (patch) | |
tree | c0e77334de9c7f1aa75396281c4b539c9dd3dadc /npc/airports/izlude.txt | |
parent | 9e48e2aebd5777179bd2fc2f45a58f8ad17b1373 (diff) | |
download | hercules-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/izlude.txt')
-rw-r--r-- | npc/airports/izlude.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/airports/izlude.txt b/npc/airports/izlude.txt index 7f794de1f..9cae6a912 100644 --- a/npc/airports/izlude.txt +++ b/npc/airports/izlude.txt @@ -38,7 +38,7 @@ mes "departs on the flight wich stops"; mes "in Juno and Rachel?"; next; - if (select("Board the Airship to Juno/Rachel.:Cancel.") == 1) { + if (select("Board the Airship to Juno/Rachel.", "Cancel.") == 1) { mes "[Airship Staff]"; mes "The boarding fee is"; mes "1,200 zeny. However, this"; @@ -46,7 +46,7 @@ mes "a Free Ticket for Airship. Now,"; mes "would you still like to board?"; 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 "airplane_01",244,58; |