diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/airports/lighthalzen.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2 hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip |
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
Diffstat (limited to 'npc/airports/lighthalzen.txt')
-rw-r--r-- | npc/airports/lighthalzen.txt | 8 |
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; } |