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/hugel.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/hugel.txt')
-rw-r--r-- | npc/airports/hugel.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/airports/hugel.txt b/npc/airports/hugel.txt index 238bfb8a6..9be356836 100644 --- a/npc/airports/hugel.txt +++ b/npc/airports/hugel.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 //= //= Hercules is free software: you can redistribute it and/or modify //= it under the terms of the GNU General Public License as published by @@ -32,8 +32,8 @@ hugel,178,142,0 script toairplane#hugel 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) { @@ -46,10 +46,10 @@ OnTouch: warp "airplane",244,58; 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; } |