diff options
Diffstat (limited to 'npc/airports/rachel.txt')
-rw-r--r-- | npc/airports/rachel.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/airports/rachel.txt b/npc/airports/rachel.txt index e3a1f7067..91db25d7e 100644 --- a/npc/airports/rachel.txt +++ b/npc/airports/rachel.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 //= @@ -34,8 +34,8 @@ ra_fild12,295,208,0 script toairplane#rachel WARPNPC,1,1,{ end; OnTouch: - mes "To use the airship, you are required to pay 1,200 zeny or a Free Airship Ticket."; - mes "Would you like to use the service?"; + mes("To use the airship, you are required to pay 1,200 zeny or a Free Airship Ticket."); + mes("Would you like to use the service?"); next; if (select("Yes", "No") == 1) { if (countitem(Free_Flying_Ship_Ticket) > 0) { @@ -48,10 +48,10 @@ OnTouch: warp "airplane_01",245,60; end; } - mes "I am sorry, but you do not have enough money."; - mes "Please remember, you are required to pay 1,200 zeny to use the service."; + mes("I am sorry, but you do not have enough money."); + mes("Please remember, you are required to pay 1,200 zeny to use the service."); close; } - mes "Thank you, please come again."; + mes("Thank you, please come again."); close; } |