diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
commit | 31825ccc2dde034a218d9ad466dd721c40b5651d (patch) | |
tree | 961b976e45988f7f7158d33b3f11a18688f34b1f /npc/pre-re/airports/einbroch.txt | |
parent | 22c75b070526de8b103032f5bf13504af81e0095 (diff) | |
download | hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.gz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.bz2 hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.xz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.zip |
Okie ladies and gentleman if this commit breaks anything it's jman's and maki's fault, yes, blame them.
Fixing pre-re / re npc support, moving /config/ folder to src root so other servers may also make use of the #define renewal dir and other stuff.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16382 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/pre-re/airports/einbroch.txt')
-rw-r--r-- | npc/pre-re/airports/einbroch.txt | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/npc/pre-re/airports/einbroch.txt b/npc/pre-re/airports/einbroch.txt new file mode 100644 index 000000000..25418daf7 --- /dev/null +++ b/npc/pre-re/airports/einbroch.txt @@ -0,0 +1,108 @@ +//===== rAthena Script ======================================= +//= Einbroch Airport Staff +//===== By: ================================================== +//= L0ne_W0lf, Muad_Dib +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= Einbroch Airport Staff +//===== Additional Comments: ================================= +//= Official NPCs. +//============================================================ + +airport,143,43,5 script Airport Staff#airport1a::airport1 90,{ + mes "[Airport Staff]"; + mes "Welcome to the"; + mes "Einbroch Airport,"; + mes "where we offer nonstop"; + mes "flights to the cities of"; + mes "Juno, Lighthalzen and Hugel."; + next; + if (select("Board the Airship:Cancel") == 1) { + mes "[Airport Staff]"; + mes "The Airship boarding fee"; + mes "is 1,200 zeny, but if you've"; + mes "got a Free Ticket for Airship,"; + mes "the fee will be waived. Will"; + mes "you board the Airship?"; + next; + if (select("Yes:No") == 1) { + if (countitem(7311) > 0) { + delitem 7311,1; //Free_Flying_Ship_Ticket + warp "airport",148,51; + end; + } + if (Zeny >= 1200) { + set Zeny, Zeny - 1200; + warp "airport",148,51; + end; + } + mes "[Airport Staff]"; + mes "I'm sorry, but you don't"; + mes "have a Free Ticket for"; + mes "Airship and you don't have"; + mes "enough zeny for boarding"; + mes "the Airship. Remember, the"; + mes "boarding fee is 1,200 zeny."; + close; + } + } + mes "[Airport Staff]"; + mes "Thank you and"; + mes "have a nice day."; + close; +} + +airport,158,43,5 duplicate(airport1) Airport Staff#airport1b 90 +airport,126,43,5 duplicate(airport1) Airport Staff#airport1c 90 + +airport,143,49,3 script Arrival Staff#airport2a::airport2 90,{ + mes "[Arrival Staff]"; + mes "Welcome to Einbroch Airport."; + mes "If you are arriving from your"; + mes "flight, let me guide you to the"; + mes "main terminal. Otherwise, please board the Airship to depart to"; + mes "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"; + mes "to board an Airship. You should"; + mes "only exit if the city of Einbroch"; + mes "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"; + mes "for your patronage"; + mes "and I hope you have"; + mes "a pleasant flight~"; + close; +} + +airport,126,51,3 duplicate(airport2) Arrival Staff#airport2b 90 +airport,158,50,3 duplicate(airport2) Arrival Staff#airport2c 90 + +einbroch,94,267,3 script Airship Staff#ein01 91,{ + mes "[Airship Staff]"; + mes "Welcome to the"; + mes "Einbroch Airport."; + mes "Please use this door to"; + mes "board the Airship which stops"; + mes "over Juno, Lighthalzen and"; + mes "Hugel in the Schwaltzvalt Republic."; + next; + mes "[Airship Staff]"; + mes "Otherwise, if Einbroch is"; + mes "your intended destination,"; + mes "please head down the stairs"; + mes "and ask the Arrival Staff to lead"; + mes "you to the main terminal. Thank"; + mes "you, and enjoy your travels."; + close; +} |