summaryrefslogtreecommitdiff
path: root/npc/airports/izlude.txt
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-07-09 22:51:13 +0200
committerHaru <haru@dotalux.com>2016-07-10 16:12:36 +0200
commit84d645aa668b0e284c20c325269a3b018bcd6039 (patch)
treef8323a3f5b20cbe447da15b9fc71f0bffcf0dc74 /npc/airports/izlude.txt
parentc9692424ae003dea7bbdeeaa73a86e58ce53822d (diff)
downloadhercules-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/izlude.txt')
-rw-r--r--npc/airports/izlude.txt40
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;
}