diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-10 18:07:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-10 18:07:13 +0300 |
commit | 0b867049234130075538e77193aa45bc36a73590 (patch) | |
tree | ddba93b22d4107780ae90b9853d82df126f7130c /npc/airports/rachel.txt | |
parent | 60def8c6941c988248aa0f47f49c78b0d141b7e5 (diff) | |
parent | c0981a1b7966302311c4194bbfbcc9a3c07f65aa (diff) | |
download | hercules-0b867049234130075538e77193aa45bc36a73590.tar.gz hercules-0b867049234130075538e77193aa45bc36a73590.tar.bz2 hercules-0b867049234130075538e77193aa45bc36a73590.tar.xz hercules-0b867049234130075538e77193aa45bc36a73590.zip |
Merge pull request #1351 from HerculesWS/huld-improvements2
Huld improvements (2)
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; } |