diff options
Diffstat (limited to 'npc/airports/izlude.txt')
-rw-r--r-- | npc/airports/izlude.txt | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/npc/airports/izlude.txt b/npc/airports/izlude.txt index 9cae6a912..ddcc4541c 100644 --- a/npc/airports/izlude.txt +++ b/npc/airports/izlude.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) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= @@ -32,19 +32,19 @@ //========================================================================= - script ::Airship_Staff_izlude FAKE_NPC,{ - mes "[Airship Staff]"; - mes "Welcome! Would you like"; - mes "to board the Airship that"; - mes "departs on the flight wich stops"; - mes "in Juno and Rachel?"; + mes("[Airship Staff]"); + mes("Welcome! Would you like\r" + "to board the Airship that\r" + "departs on the flight wich stops\r" + "in Juno and Rachel?"); next; if (select("Board the Airship to Juno/Rachel.", "Cancel.") == 1) { - mes "[Airship Staff]"; - mes "The boarding fee is"; - mes "1,200 zeny. However, this"; - mes "charged is waived if you use"; - mes "a Free Ticket for Airship. Now,"; - mes "would you still like to board?"; + mes("[Airship Staff]"); + mes("The boarding fee is\r" + "1,200 zeny. However, this\r" + "charged is waived if you use\r" + "a Free Ticket for Airship. Now,\r" + "would you still like to board?"); next; if (select("Yes", "No") == 1) { if (countitem(Free_Flying_Ship_Ticket) > 0) { @@ -57,16 +57,16 @@ warp "airplane_01",244,58; 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 "[Airship Staff]"; - mes "Thank you and"; - mes "please come again."; - mes "Have a good day~"; + mes("[Airship Staff]"); + mes("Thank you and\r" + "please come again."); + mes("Have a good day~"); close; } |