diff options
author | Reid <reidyaro@gmail.com> | 2016-12-02 00:19:34 +0100 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2016-12-03 23:02:19 -0500 |
commit | 3e66a8fd9ee24f5e36487c757b07abb06ae7dbb5 (patch) | |
tree | 726ce5a709e12b8a189a88843b0123cc120e0176 | |
parent | c1610c2395490d4b71b7b84da89fa60e146c3db6 (diff) | |
download | clientdata-3e66a8fd9ee24f5e36487c757b07abb06ae7dbb5.tar.gz clientdata-3e66a8fd9ee24f5e36487c757b07abb06ae7dbb5.tar.bz2 clientdata-3e66a8fd9ee24f5e36487c757b07abb06ae7dbb5.tar.xz clientdata-3e66a8fd9ee24f5e36487c757b07abb06ae7dbb5.zip |
Add various map fixes reported by articuno.
-rw-r--r-- | npc/001-2-26/ivan.txt | 2 | ||||
-rw-r--r-- | npc/001-2-9/janus.txt | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/npc/001-2-26/ivan.txt b/npc/001-2-26/ivan.txt index 4cfb170d..1f1dcc85 100644 --- a/npc/001-2-26/ivan.txt +++ b/npc/001-2-26/ivan.txt @@ -18,7 +18,7 @@ function enora_quest { speech 5, l("How many? What kind? I can produce two dozen boxes per day."); - select (l("5 @@s.", getitemlink(PiberriesInfusion))); + select (l("5 Piberries Infusions")); speech 5, l("5 boxes... Alright, @@ are my speciality!", getitemlink (PiberriesInfusion)), diff --git a/npc/001-2-9/janus.txt b/npc/001-2-9/janus.txt index 78bc84db..56033fbe 100644 --- a/npc/001-2-9/janus.txt +++ b/npc/001-2-9/janus.txt @@ -20,7 +20,8 @@ l("Creating a party has some advantages, it's a pretty good choice!"), l("I remember when I created my first party, we were amazed to share some experience with a small group of adventurer..."), l("Oh! And our party chat was really entertaining, I do highly recommend you to share this fun as well."), - lg("The cost to create a party is of @@ E, are you interested?", .@party_price); + lg("The cost to create a party is @@ E, are you interested?", + "The cost to create a party is @@ E, are you interested?", .@party_price); if (askyesno () == 1) { @@ -48,7 +49,8 @@ l("Anyway, the guild creation is perfect for both!"), l("You can keep your current party as it is, while leading or being part of a guild in order to talk and share different items with all of its members!"), l("The @@ is a one time item, you can use it as many times as you want, but you can only have one!", getitemlink (GuildCertification)), - l("The cost to create a guild is of @@ E, are you interested?", .@guild_price); + lg("The cost to create a guild is @@ E, are you interested?", + "The cost to create a guild is @@ E, are you interested?", .@guild_price); if (askyesno () == 1) { |