diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-15 21:35:32 +0300 |
commit | da4f06f8ad9fd82d08446ecb7682a349fa50b1d3 (patch) | |
tree | 4b4419e0bf11cbf6f32a46a7ea85eccea690b514 /npc/airports/einbroch.txt | |
parent | b2d2aa4bb0d994565958e7bd9f36a8610ea6a75e (diff) | |
download | hercules-da4f06f8ad9fd82d08446ecb7682a349fa50b1d3.tar.gz hercules-da4f06f8ad9fd82d08446ecb7682a349fa50b1d3.tar.bz2 hercules-da4f06f8ad9fd82d08446ecb7682a349fa50b1d3.tar.xz hercules-da4f06f8ad9fd82d08446ecb7682a349fa50b1d3.zip |
Remove conf dir.
Diffstat (limited to 'npc/airports/einbroch.txt')
-rw-r--r-- | npc/airports/einbroch.txt | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/npc/airports/einbroch.txt b/npc/airports/einbroch.txt deleted file mode 100644 index 62ba62b8e..000000000 --- a/npc/airports/einbroch.txt +++ /dev/null @@ -1,127 +0,0 @@ -//================= Hercules Script ======================================= -//= _ _ _ -//= | | | | | | -//= | |_| | ___ _ __ ___ _ _| | ___ ___ -//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| -//= | | | | __/ | | (__| |_| | | __/\__ \ -//= \_| |_/\___|_| \___|\__,_|_|\___||___/ -//================= License =============================================== -//= This file is part of Hercules. -//= http://herc.ws - http://github.com/HerculesWS/Hercules -//= -//= Copyright (C) 2012-2016 Hercules Dev Team -//= Copyright (C) Muad_Dib -//= Copyright (C) L0ne_W0lf -//= -//= Hercules is free software: you can redistribute it and/or modify -//= it under the terms of the GNU General Public License as published by -//= the Free Software Foundation, either version 3 of the License, or -//= (at your option) any later version. -//= -//= This program is distributed in the hope that it will be useful, -//= but WITHOUT ANY WARRANTY; without even the implied warranty of -//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -//= GNU General Public License for more details. -//= -//= You should have received a copy of the GNU General Public License -//= along with this program. If not, see <http://www.gnu.org/licenses/>. -//========================================================================= -//= Einbroch Airport Staff -//========================================================================= - -airport,143,43,5 script Airport Staff#airport1a::airport1 4_F_01,{ - mes("[Airport Staff]"); - mes("Welcome to the\r" - "Einbroch Airport,\r" - "where we offer nonstop\r" - "flights to the cities of\r" - "Juno, Lighthalzen and Hugel."); - next; - if (select("Board the Airship", "Cancel") == 1) { - mes("[Airport Staff]"); - mes("The Airship boarding fee\r" - "is 1,200 zeny, but if you've\r" - "got a Free Ticket for Airship,\r" - "the fee will be waived. Will\r" - "you board the Airship?"); - next; - if (select("Yes", "No") == 1) { - if (countitem(Free_Flying_Ship_Ticket) > 0) { - delitem Free_Flying_Ship_Ticket,1; - warp "airport",148,51; - end; - } - if (Zeny >= 1200) { - Zeny -= 1200; - warp "airport",148,51; - end; - } - mes("[Airport Staff]"); - mes("I'm sorry, but you don't\r" - "have a Free Ticket for\r" - "Airship and you don't have\r" - "enough zeny for boarding\r" - "the Airship. Remember, the\r" - "boarding fee is 1,200 zeny."); - close; - } - } - mes("[Airport Staff]"); - mes("Thank you and\r" - "have a nice day."); - close; -} - -airport,158,43,5 duplicate(airport1) Airport Staff#airport1b 4_F_01 -airport,126,43,5 duplicate(airport1) Airport Staff#airport1c 4_F_01 - -airport,143,49,3 script Arrival Staff#airport2a::airport2 4_F_01,{ - mes("[Arrival Staff]"); - mes("Welcome to Einbroch Airport."); - mes("If you are arriving from your\r" - "flight, let me guide you to the\r" - "main terminal. Otherwise, please board the Airship to depart to\r" - "Juno, Lighthalzen and Hugel."); - next; - 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\r" - "to board an Airship. You should\r" - "only exit if the city of Einbroch\r" - "is your intended destination."); - mes("Proceed to the main terminal?"); - next; - if (select("Yes", "No") == 1) { - warp "airport",142,40; - end; - } - } - mes("[Arrival Staff]"); - mes("Alright, thank you\r" - "for your patronage\r" - "and I hope you have\r" - "a pleasant flight~"); - close; -} - -airport,126,51,3 duplicate(airport2) Arrival Staff#airport2b 4_F_01 -airport,158,50,3 duplicate(airport2) Arrival Staff#airport2c 4_F_01 - -einbroch,94,267,3 script Airship Staff#ein01 4_F_02,{ - mes("[Airship Staff]"); - mes("Welcome to the\r" - "Einbroch Airport."); - mes("Please use this door to\r" - "board the Airship which stops\r" - "over Juno, Lighthalzen and\r" - "Hugel in the Schwaltzvalt Republic."); - next; - mes("[Airship Staff]"); - mes("Otherwise, if Einbroch is\r" - "your intended destination,\r" - "please head down the stairs\r" - "and ask the Arrival Staff to lead\r" - "you to the main terminal. Thank\r" - "you, and enjoy your travels."); - close; -} |