diff options
author | Haru <haru@dotalux.com> | 2016-07-09 22:51:13 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-10 16:12:36 +0200 |
commit | 84d645aa668b0e284c20c325269a3b018bcd6039 (patch) | |
tree | f8323a3f5b20cbe447da15b9fc71f0bffcf0dc74 /npc/airports/lighthalzen.txt | |
parent | c9692424ae003dea7bbdeeaa73a86e58ce53822d (diff) | |
download | hercules-84d645aa668b0e284c20c325269a3b018bcd6039.tar.gz hercules-84d645aa668b0e284c20c325269a3b018bcd6039.tar.bz2 hercules-84d645aa668b0e284c20c325269a3b018bcd6039.tar.xz hercules-84d645aa668b0e284c20c325269a3b018bcd6039.zip |
HULD-compliance: updated npc/airports/
- Simplifies translations by reducing 376 strings (2200 lines)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/airports/lighthalzen.txt')
-rw-r--r-- | npc/airports/lighthalzen.txt | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/npc/airports/lighthalzen.txt b/npc/airports/lighthalzen.txt index 89935a24a..80842aa9d 100644 --- a/npc/airports/lighthalzen.txt +++ b/npc/airports/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2015 Hercules Dev Team +//= Copyright (C) 2012-2016 Hercules Dev Team //= Copyright (C) Muad_Dib //= Copyright (C) L0ne_W0lf //= @@ -32,18 +32,18 @@ //========================================================================= lhz_airport,143,43,5 script Airport Staff#lhz_air1a::lhz_airport1 4_F_01,{ - mes "[Airport Staff]"; - mes "Welcome to the"; - mes "Lighthalzen Airport,"; - mes "where we offer nonstop"; - mes "flights to Einbroch, Juno and Hugel."; + mes("[Airport Staff]"); + mes("Welcome to the\r" + "Lighthalzen Airport,\r" + "where we offer nonstop\r" + "flights to Einbroch, Juno and Hugel."); next; 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."; + mes("[Airport Staff]"); + mes("The boarding fee is\r" + "1,200 zeny, but you can\r" + "waive the fee if you redeem\r" + "a Free Ticket for Airship."); next; if (select("Yes", "No") == 1) { if (countitem(Free_Flying_Ship_Ticket) > 0) { @@ -56,17 +56,17 @@ lhz_airport,143,43,5 script Airport Staff#lhz_air1a::lhz_airport1 4_F_01,{ warp "lhz_airport",148,51; end; } - mes "[Airship Staff]"; - mes "I'm sorry, but you don't"; - mes "have 1,200 zeny to pay"; - mes "for the boarding fee."; + mes("[Airship Staff]"); + mes("I'm sorry, but you don't\r" + "have 1,200 zeny to pay\r" + "for the boarding fee."); close; } } - mes "[Airport Staff]"; - mes "Thank you and"; - mes "please come again."; - mes "Have a good day~"; + mes("[Airport Staff]"); + mes("Thank you and\r" + "please come again."); + mes("Have a good day~"); close; } @@ -74,29 +74,29 @@ lhz_airport,158,43,5 duplicate(lhz_airport1) Airship Staff#lhz_air1b 4_F_01 lhz_airport,126,43,5 duplicate(lhz_airport1) Airship Staff#lhz_air1c 4_F_01 lhz_airport,143,49,3 script Arrival Staff#lhz_air2a::lhz_airport2 4_F_01,{ - mes "[Arrival Staff]"; - mes "Welcome to Lighthalzen Airport."; - mes "Please let me guide you to the"; - mes "main terminal if you are arriving from your flight. Otherwise, please"; - mes "board the departing Airship to reach your intended destination."; + mes("[Arrival Staff]"); + mes("Welcome to Lighthalzen Airport."); + mes("Please let me guide you to the\r" + "main terminal if you are arriving from your flight. Otherwise, please\r" + "board the departing Airship to reach your intended destination."); 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 Lighthalzen is your intended destination. Shall we"; - mes "proceed to the main terminal?"; + 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 Lighthalzen is your intended destination. Shall we\r" + "proceed to the main terminal?"); next; if (select("Yes", "No") == 1) { warp "lhz_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~"; + mes("[Arrival Staff]"); + mes("Alright, thank you\r" + "for your patronage\r" + "and I hope you have\r" + "a pleasant flight~"); close; } |